粗心睫毛膏

文章
4
资源
0
加入时间
2年10月17天

Pytorch学习第五讲:LSTM网络实现

这里主要记录一下lstm网络的pytorch实现:import torchimport torch.nn as nnfrom torch.autograd import Variableimport torch.nn.functional as Fclass my_lstm(nn.Module): def __init__(self): super(my_lst...