Na célula que calcula as predições:
pred = net(Xtns)
print(Xtns.shape)
print(pred.shape)
Dá o seguinte erro:
---------------------------------------------------------------------------
NotImplementedError Traceback (most recent call last)
<ipython-input-16-97757cdbfe3a> in <module>()
----> 1 pred = net(Xtns)
2
3 print(Xtns.shape)
4 print(pred.shape)
1 frames
/usr/local/lib/python3.6/dist-packages/torch/nn/modules/module.py in forward(self, *input)
96 registered hooks while the latter silently ignores them.
97 """
---> 98 raise NotImplementedError
99
100 def register_buffer(self, name, tensor):
NotImplementedError: