You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for implementing the FSLSTM code in Pytorch.
I'm pretty new to Pytorch and I encountered a problem when running your code. (log is provided below)
Do you have a newer version of this code?
Here is the log:
C:\Users\User\Anaconda3\envs\ml1\python.exe D:/git/pytorch-fast-slow-lstm/main.py
Vocabulary size: 51
########## Training ##########################
torch.Size([128, 256]) shape of x
torch.Size([128, 700]) shape of h
Traceback (most recent call last):
File "D:/git/pytorch-fast-slow-lstm/main.py", line 126, in
train_p = run_epoch(model, train_data, True, lr)
File "D:/git/pytorch-fast-slow-lstm/main.py", line 89, in run_epoch
outputs, hidden = model(inputs)
File "C:\Users\User\Anaconda3\envs\ml1\lib\site-packages\torch\nn\modules\module.py", line 489, in call
result = self.forward(*input, **kwargs)
File "D:/git/pytorch-fast-slow-lstm/main.py", line 57, in forward
out , state = self.FS_cell(inputs[:,time_step,:],state)
File "D:\git\pytorch-fast-slow-lstm\FSRNN.py", line 28, in call
F_output, F_state = self.fast_cells[0](inputs, F_state)
File "D:\git\pytorch-fast-slow-lstm\LNLSTM.py", line 45, in call
concat = np.concatenate((x,h), axis = 1)
File "C:\Users\User\Anaconda3\envs\ml1\lib\site-packages\torch\tensor.py", line 450, in array
return self.numpy()
RuntimeError: Can't call numpy() on Variable that requires grad. Use var.detach().numpy() instead.
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for implementing the FSLSTM code in Pytorch.
I'm pretty new to Pytorch and I encountered a problem when running your code. (log is provided below)
Do you have a newer version of this code?
Here is the log:
C:\Users\User\Anaconda3\envs\ml1\python.exe D:/git/pytorch-fast-slow-lstm/main.py
Vocabulary size: 51
########## Training ##########################
torch.Size([128, 256]) shape of x
torch.Size([128, 700]) shape of h
Traceback (most recent call last):
File "D:/git/pytorch-fast-slow-lstm/main.py", line 126, in
train_p = run_epoch(model, train_data, True, lr)
File "D:/git/pytorch-fast-slow-lstm/main.py", line 89, in run_epoch
outputs, hidden = model(inputs)
File "C:\Users\User\Anaconda3\envs\ml1\lib\site-packages\torch\nn\modules\module.py", line 489, in call
result = self.forward(*input, **kwargs)
File "D:/git/pytorch-fast-slow-lstm/main.py", line 57, in forward
out , state = self.FS_cell(inputs[:,time_step,:],state)
File "D:\git\pytorch-fast-slow-lstm\FSRNN.py", line 28, in call
F_output, F_state = self.fast_cells[0](inputs, F_state)
File "D:\git\pytorch-fast-slow-lstm\LNLSTM.py", line 45, in call
concat = np.concatenate((x,h), axis = 1)
File "C:\Users\User\Anaconda3\envs\ml1\lib\site-packages\torch\tensor.py", line 450, in array
return self.numpy()
RuntimeError: Can't call numpy() on Variable that requires grad. Use var.detach().numpy() instead.
The text was updated successfully, but these errors were encountered: