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
When running Lab 3 commands from the readme that use ctc loss, this error it thrown
preds = torch.nn.functional.softmax(preds, dim=-1)
File "/home/xxx/anaconda3/envs/fsdl/lib/python3.6/site-packages/torch/nn/functional.py", line 1512, in softmax
ret = input.softmax(dim)
RuntimeError: "host_softmax" not implemented for 'Int'
This is due to the previous fix of the accuracy problem. The decoded content cannot be passed to the Accuracy-Metric Hack, the original Accuracy from pl.metrics should be used instead.
The text was updated successfully, but these errors were encountered:
When running Lab 3 commands from the readme that use ctc loss, this error it thrown
This is due to the previous fix of the accuracy problem. The decoded content cannot be passed to the Accuracy-Metric Hack, the original Accuracy from pl.metrics should be used instead.
The text was updated successfully, but these errors were encountered: