-
Notifications
You must be signed in to change notification settings - Fork 5
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
love2code (3B) recipe #7
base: main
Are you sure you want to change the base?
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.
Lot's of default hyperparameters that seem to map back to what you had in your OLMo-core branch except LR. One typo in the config filename :) train-1b-5xC-love2code.yaml
1b -> 3b
@@ -81,6 +81,23 @@ def olmo_1b(cls) -> "ModelConfig": | |||
max_sequence_length=4096, | |||
) | |||
|
|||
@classmethod | |||
def love2code_3b(cls) -> "ModelConfig": |
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.
Technically, this is a generic OLMo-3b config right? Or are there code specific HP's here?
First stab at this. Compare to change made in this OLMo-Core PR:
allenai/OLMo-core#164