-
Notifications
You must be signed in to change notification settings - Fork 420
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
Some Quickfixes on W&B #772
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/torchtune/772
Note: Links to docs will display an error until the docs builds have been completed. ✅ No FailuresAs of commit f19d4d6 with merge base dde16be (): This comment was automatically generated by Dr. CI and updates every 15 minutes. |
project=project, | ||
entity=entity, | ||
group=group, | ||
reinit=True, | ||
resume="allow", | ||
**kwargs, | ||
) | ||
run._label(repo="torchtune") |
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.
Can you explain this a little more? What does the repo
kwarg enable?
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.
We get telemetry on the repo usage. We already do this by grabbing the git repo used to train but if people rename it or fork it can mess up the identification. We can share this data with you guys to see adoption.
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.
In practice, it is just one extra key in: https://wandb.ai/capecape/torchtune/runs/ynahtfyw/files/config.yaml
the key 9
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.
Makes sense, thanks for the explanation! (We would love to see adoption numbers soon :) )
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.
LGTM, thanks for the quickfixes
OmegaConf
saving on the try block, to avoid crashing at any cost.