-
Notifications
You must be signed in to change notification settings - Fork 27.5k
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
fix(dvclive): pass fake dataset to avoid exception in trainer init #34455
fix(dvclive): pass fake dataset to avoid exception in trainer init #34455
Conversation
56fa988
to
303873c
Compare
303873c
to
8e9d512
Compare
cc @SunMarc @jackyjinjing for the original PR! |
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 fixing ! To fix the CI, please rebase the PR on main
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
8e9d512
to
b16bf54
Compare
@SunMarc done, rebased |
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.
Thank you!
…uggingface#34455) fix(dvclive): pass fake dataset to avoid exception in trainer
…uggingface#34455) fix(dvclive): pass fake dataset to avoid exception in trainer
…uggingface#34455) fix(dvclive): pass fake dataset to avoid exception in trainer
…uggingface#34455) fix(dvclive): pass fake dataset to avoid exception in trainer
Fixes these failing tests https://github.com/iterative/dvclive/actions/runs/11545815176/job/32134865977?pr=846 downstream.
The cause is this change: #33743 which made
trainer
ctr a bit more strict.I see that
WandbCallback
is also using the same technique (initializing fake trainer). @parambharat could you check if we need to add a similar fix there.