-
Notifications
You must be signed in to change notification settings - Fork 970
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
Adds dvclive tracker #2139
Adds dvclive tracker #2139
Conversation
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. |
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.
Excellent! Very beautiful PR, thanks for this! One last little thing, can you add this to the test_trackers
section of the setup.py
so the tests can be ran?
f5d67f1
to
a13d0be
Compare
Thanks for catching that! Added it in the latest commit. |
Will take a look at the test failures |
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.
Very clean implementation, thanks for that. I have only some small comments about usage and setting the step, the rest looks good.
src/accelerate/tracking.py
Outdated
A `Tracker` class that supports `dvclive`. Should be initialized at the start of your script. | ||
|
||
Args: | ||
run_name (`str`): |
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.
It's type should mention that it's optional
. Also, I don't quite understand what I should do with kwargs
here. I think an example would be useful to have.
src/accelerate/tracking.py
Outdated
kwargs: | ||
Additional key word arguments passed along to `dvclive.Live.log_metric()`. | ||
""" | ||
if step: |
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 if step == 0
. Should it not still be set? I.e., would it be safer to check if step is not None
?
a13d0be
to
47c54c9
Compare
@BenjaminBossan Thanks for the catching those issues and the quick review! All should be resolved now. |
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.
Thanks a lot for addressing my comments, LGTM.
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.
Thanks for all your hard work and iterating with us over this!
|
||
|
||
@require_dvclive | ||
@mock.patch("dvclive.live.get_dvc_repo", return_value=None) |
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.
@dberenbaum FYI we're seeing failures on the transformers side in the example scripts because of this. Is there a better way to ignore the git repo than patching for cases where we're running a full training script? (Like via an env variable or something). Otherwise I'll have to disable dvc for all of the example script tests in transformers
which wouldn't be ideal. https://github.com/huggingface/accelerate/actions/runs/7023901505/job/19111477258
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.
I need to take a closer look when I have a minute, but you can use DVCLIVE_TEST = true
to disable the git-related functionality. For example:
accelerate/tests/test_examples.py
Line 208 in 31c723f
@mock.patch.dict(os.environ, {"WANDB_MODE": "offline", "DVCLIVE_TEST": "true"}) |
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.
Ah I missed that one, fantastic! That should do the job just fine I think. I’ll get to that tommorow and cc you. Thanks!
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.
Is #2196 related?
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.
It’s not, we saw dependency errors in an isolated env related to the release
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.
Thanks. Added a comment there since it should be fixed now. Let me know if it would be helpful to submit a PR for either or if it's quicker to take care of it yourself.
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.
@dberenbaum a PR would be most welcome!
What does this PR do?
Adds a DVCLive tracker. DVCLive is a logger for DVC, which version data, models, metrics, etc. and keeps them connected to your Git repo. They can then be visualized in several different interfaces.
A PR was recently merged to add a logger to
transformers
, and this PR adds support foraccelerate
.Before submitting
Pull Request section?
to it if that's the case.
documentation guidelines, and
here are tips on formatting docstrings.
Who can review?
@muellerzr From what I can tell, it looks like you would be the relevant reviewer. Please feel free to redirect me otherwise.