Pytorch 学习(8):Recurrent layers (循环层)实现之GRUCell

Pytorch 学习(8):Recurrent layers (循环层)实现之GRUCellapp GRU是Gated Recurrent Unit,GRU是LSTM的一个变化形式。先看一个GRUCell的小例子学习 rnn = nn.GRUCell(10, 20) input = Variable(torch.randn(6, 3, 10)) hx = Variable(torch.randn(
相关文章
相关标签/搜索