Skip to content
Advertisement

Python Error RuntimeError: expected scalar type Long but found Double

Firstly, I am fairly new to python/ML in general. I am attempting to utilize the model depicted at stackabuse over my own data set.

Everything flows smoothly until I get ready to run the epochs.

In debugging I see that it is failing on CrossEntropyLoss function and I get the error expected long found double. The data set it appears to fail on is the my tdiff column that I calculated but I can’t seem to figure out how to convert it to a long.

Is there something that I’m missing in trying to figure this out?

To be clear, this is what I THINK it is based on my extremely limited knowledge on the function:

JavaScript

output:

JavaScript

Advertisement

Answer

nn.CrossEntropyLoss() expects target tensors of type Long, but what you’re passing is of type Double.

Try to change this line

from: single_loss = loss_function(y_pred, train_op)

to: single_loss = loss_function(y_pred, train_op.long())

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement