We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Model I am using : T5-11B
Language I am using the model on: English
The problem arises when using: when I try downloading the T5-11B model
The tasks I am working on is: Evaluating ROGUE score on CNN dataset
Steps to reproduce the behavior: Just try instantiating the T5-11B model using the AutoModel Class
Error Message: OSError: Can't load weights for 't5-11b'. Make sure that:
't5-11b' is a correct model identifier listed on 'https://huggingface.co/models'
or 't5-11b' is the correct path to a directory containing a file named one of pytorch_model.bin, tf_model.h5, model.ckpt.
Would instatntiate the
transformers
The text was updated successfully, but these errors were encountered:
same result. I can't download
Sorry, something went wrong.
Please see #5986 (comment)
Works when I use:
import transformers t5 = transformers.AutoModel.from_pretrained('t5-11b', use_cdn = False)
Thank You!
No branches or pull requests
🐛 Bug
Information
Model I am using : T5-11B
Language I am using the model on: English
The problem arises when using:
when I try downloading the T5-11B model
The tasks I am working on is:
Evaluating ROGUE score on CNN dataset
To reproduce
Steps to reproduce the behavior:
Just try instantiating the T5-11B model using the AutoModel Class
Error Message:
OSError: Can't load weights for 't5-11b'. Make sure that:
't5-11b' is a correct model identifier listed on 'https://huggingface.co/models'
or 't5-11b' is the correct path to a directory containing a file named one of pytorch_model.bin, tf_model.h5, model.ckpt.
Expected behavior
Would instatntiate the
Environment info
transformers
version: 2.11.0The text was updated successfully, but these errors were encountered: