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
Done!
Traceback (most recent call last):
File "train.py", line 112, in
train(epoch)
File "train.py", line 25, in train
data = (data - data.min().data[0]) / (data.max().data[0] - data.min().data[0])
IndexError: invalid index of a 0-dim tensor. Use tensor.item() to convert a 0-dim tensor to a Python number
so , I changed the code (as below)
data.min().data[0] -> data.min()
*.data[0] -> *.item() ( * Denotes all variables that use data [0].)
Does this deviate from your intention in your code? @emited
The text was updated successfully, but these errors were encountered:
ghost
changed the title
i have some questions
i have some question
Oct 21, 2019
Error message :
Done!
Traceback (most recent call last):
File "train.py", line 112, in
train(epoch)
File "train.py", line 25, in train
data = (data - data.min().data[0]) / (data.max().data[0] - data.min().data[0])
IndexError: invalid index of a 0-dim tensor. Use tensor.item() to convert a 0-dim tensor to a Python number
so , I changed the code (as below)
data.min().data[0] -> data.min()
*.data[0] -> *.item() ( * Denotes all variables that use data [0].)
Does this deviate from your intention in your code? @emited
The text was updated successfully, but these errors were encountered: