iterative / example-repos-dev

Source code and generator scripts for example DVC projects
https://dvc.org/doc
21 stars 13 forks source link

experiments: split dvclive outputs by train/eval #268

Closed dberenbaum closed 9 months ago

dberenbaum commented 9 months ago

Fixes missing training metrics. Before this PR, we are only capturing results as an output of the evaluate stage, but results/train is actually generated during the train stage, and then is getting deleted by dvc during the evaluate stage, dropping the training metrics. This PR fixes it by granularly tracking results/train as an output of the train stage and results/evaluate as an output of the evaluate stage.