x, _ = self.lstm(_x) # _x is input, size (seq_len, batch, input_size) 这行代码是在LSTMRegression类的forward函数中,将输入x送入LSTM层中进行计算,并将输出赋值给变量x。其中x的形状为(seqlen, batch, inputsize),表示输入的序列长度为seqlen,batchsize为batch,每个时间步的特征维度为inputsize。...