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
In Juptyer Notebook I preformed the following Python Syntax:
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Meta-Llama-3.1-70B-Instruct")
model = AutoModelForCausalLM.from_pretrained("Meta-Llama-3.1-70B-Instruct")
resulting in an error:
OSError: Meta-Llama-3.1-70B-Instruct does not appear to have a file named config.json. Checkout 'https://huggingface.co/Meta-Llama-3.1-70B-Instruct/tree/None' for available files.
I inspected the download.sh and it does not call for a config.json for the Llama-3.1-70B-Instruct? Maybe this is the cause of the error, I am do not know the file structure so i did not want to modify. It also appears that the config file exists on the hugging face site, however i am unsure how to gain access to the model their vs GitHub?
Regardless primary issues is the model wants a config.json.
The text was updated successfully, but these errors were encountered:
I submitted a request for access and obtained a key from the following URL: https://llama.meta.com/llama-downloads/
Instructions refer to download refer to this link : https://github.com/meta-llama/llama-models/blob/main/README.md
I replicated the download.sh on my system.
i ran
./download.sh
It asked the questions of which model i wanted, i selected the Meta-Llama-3.1-70B-Instruct which resulted in:
In Juptyer Notebook I preformed the following Python Syntax:
resulting in an error:
OSError: Meta-Llama-3.1-70B-Instruct does not appear to have a file named config.json. Checkout 'https://huggingface.co/Meta-Llama-3.1-70B-Instruct/tree/None' for available files.
I inspected the download.sh and it does not call for a config.json for the Llama-3.1-70B-Instruct? Maybe this is the cause of the error, I am do not know the file structure so i did not want to modify. It also appears that the config file exists on the hugging face site, however i am unsure how to gain access to the model their vs GitHub?
Regardless primary issues is the model wants a config.json.
The text was updated successfully, but these errors were encountered: