对于 pytorch RNN 模型,我们可以通过它的输出结果来推断输入吗?
pytorch 259
原文标题 :For pytorch RNN model, can we inference the input by its output results?
全部,
我想知道,torch.nn.rnn(~)。如果我知道最终的输出,是否有可能,我可以推断出它的输入值?例如:
myrnn = nn.RNN(4, 2, 1, batch_first=True)
expected_out, hidden = myrnn(input)
expected_out: tensor([[[-0.7773, -0.2031]],
[[-0.4129, -0.1802]],
[[ 0.0599, -0.0151]],
[[-0.9273, 0.2683]],
[[ 0.6161, 0.5412]]])
谢谢你!