-
Notifications
You must be signed in to change notification settings - Fork 29
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
Live plots without checkpoints #1256
Comments
|
@daavoo we are already taking the output of I.e are the plots provided in |
The DVCLive plots are provided by DVCLive will be updating the content of the plots data while the stage is being run so, without checkpoints, there won't be new revisions being generated. |
Unless I'm misunderstanding something we should be able to call If that's the case I'll just need to put in some rules to differentiate between checkpoint and non-checkpoint projects... I think. |
Sorry I was the one misunderstanding 🙏
Yes, the new data would be available in the |
For the record: For queued experiments that are being run inside a temporary directory, we will need to watch files in those temporary directories as opposed to the ones located in the workspace. E.g The good news is that we already have this scenario covered because we set up our watchers using the following code:
The '**' will take care of the fact that DVC is working from a copy of the current workspace as long as the temporary directory is also inside the current workspace (i.e under edit: The plumbing works but it looks like |
|
Part one (capturing plots for experiments running in the workspace) is done. I will park part two until we have more information on what the new mechanism for queuing/running experiments in a temp workspace looks like. |
I believe this can be closed (as far as I tested, the functionality described in the issue works with the current release) |
Even if
checkpoints
are not enabled ondvc.yaml
, DVCLive still generates plots that are updated at the end of each training iteration (a.k.astep
), and the htm report generated by DVC gets updated.However, without
checkpoints
the vscode-dvc extension does not update the live plots because theexp show
output does not reflect this updates.Simple project to test:
dvc repro
/dvc exp run
and opendvclive_dvc_plots/index.html
.The text was updated successfully, but these errors were encountered: