-
Notifications
You must be signed in to change notification settings - Fork 12
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
Small question about eval dataset #2
Comments
Thanks for your detailed reply! |
Hi. I read your paper with interest. Because of the notorious failure of LLMs to accurately compute, I have been designing and training (on gaming PC with one NVIDIA GPU) very small GPT-2 models from scratch in pytorch to do arithmetic on fixed operand sizes. (and not using any special positional embedding) including included_operations=["+", "-", "*", "∧", "~", "∨", "¬∨", "⊕", "≡", "="]. And then I came upon your paper https://huggingface.co/papers/2405.17399 serendiptously via https://huggingface.co/collections/The-Great-Genius/skynet-66366061cc7af105efb7e0ca (I was looking for terminators) Speaking for myself, I am dissatisfied if my model makes any errors in the domain of the training set. |
Great work!
A small question here. I was wondering if your eval script test on train data as well?
For pretrain, you split the dataset to test and train. You use the test data to get validation loss.
Then you generate another dataset with different numebr length and use arithmetic_eval_quicker.py to evaluate the accuracy.
Isn't there an overlap between your test and train for arithmetic_eval_quicker.py?
The text was updated successfully, but these errors were encountered: