Was trying to implement a simple paraphrasing tool
but unable to import / download the library Vamsi/T5_Paraphrase_Paws due to this error:
Symbol Zeros is already exposed as ().
Was working fine on google colab / anaconda but not on vs code
All required libraries and dependencies installed
Boiler code:
from transformers import AutoModelForSeq2SeqLM
model = AutoModelForSeq2SeqLM.from_pretrained(
"Vamsi/T5_Paraphrase_Paws").to('cuda')
Was trying to implement a simple paraphrasing tool but unable to import / download the library Vamsi/T5_Paraphrase_Paws due to this error: Symbol Zeros is already exposed as (). Was working fine on google colab / anaconda but not on vs code All required libraries and dependencies installed
Boiler code: from transformers import AutoModelForSeq2SeqLM
model = AutoModelForSeq2SeqLM.from_pretrained( "Vamsi/T5_Paraphrase_Paws").to('cuda')