-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
Llama 3 #1324
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! Cannwe start with the llama 2 config for the config_hub for the time being?
@lantiga I'll add a finetuning config today |
llama_3 = [ | ||
# https://huggingface.co/meta-llama/Meta-Llama-3-8B/blob/main/config.json | ||
dict( | ||
name="Llama-3-8B{}", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do brackets {}
refer to?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They are there for string formatting in L883. It gets replaced either with the empty string or with "-Instruct".
Nice work @awaelchli !!! |
Adds the Llama3 config for the HF models.
Example prompts:
A follow-up PR can add the finetuning configs.