Restricted access
#10
by
Elynth
- opened
Hello, can you help me? I am having this problem Cannot access gated repo for url https://huggingface.co/CohereForAI/aya-23-8B/resolve/main/config.json.
Access to model CohereForAI/aya-23-8B is restricted. You must be authenticated to access it. It's been several days now, I'm an amateur, I've already imported the hugging face API KEY and I still get that problem, do I need to request special permission for the Aya-23-8b repository?
I was also having this problem. Here's how to get around it:
- Download the notebook onto your machine, and upload it to colab.
- Add this cell somewhere towards the top, and execute it before trying to load the
moodel()
:
from huggingface_hub import notebook_login
notebook_login()
- You'll be prompted for your HuggingFace token. Paste it and you'll be good to go.