Open arjsingh opened 3 years ago
I am also getting the same error while trying to predict the summaries. Have you found any solution yet?
same , i have the same issue.
try torch 1.5.0
Adding a rounding_mode='trunc'
parameter to get topk_beam_index
would work.
topk_beam_index = topk_ids.div(vocab_size, rounding_mode='trunc')
try torch 1.5.0
I was using 1.9 and when I downgraded it to 1.5
this error disappear. Thanks!
is cuda11.1 compatible with torch1.5.0? because i am using rtx3090 which is only compatible with 11.1 or higher.
在尝试预测摘要时,我也遇到了同样的错误。您找到任何解决方案了吗?
Have you solved this problem now?
same , i have the same issue.
have you solve it now?
Description
Tried using the abstractive_summarization_bertsumabs_cnndm notebook after installing the env based on the instructions, but the part where the predictions on the test data is performed returns an error
RuntimeError: "index_select_out_cuda_impl" not implemented for 'Float'
How do we replicate the bug?
Followed the instructions here to create the environment on an Azure DS VM GPU https://github.com/microsoft/nlp-recipes/blob/master/SETUP.md#dependencies-setup
Followed the instructions here to open JupyterHub and access this notebook from the repo. https://github.com/microsoft/nlp-recipes/blob/master/SETUP.md#register-conda-environment-in-dsvm-jupyterhub
Get the following stack trace when executing the block for running predictions on the test data:
Expected behavior (i.e. solution)
The notebook should run smoothly
Other Comments