dvclive icon indicating copy to clipboard operation
dvclive copied to clipboard

📈 Log and track ML metrics, parameters, models with Git and/or DVC

Results 113 dvclive issues
Sort by recently updated
recently updated
newest added

I think we should keep the path in envvar in an absolute form in `DVCLIVE_PATH`. Otherwise, the user's script could change the working directory similar to following: ```suggestion (tmp_dir /...

wontfix

After https://github.com/iterative/dvc.org/pull/3411, the easiest way to track plots in `dvc.yaml` is: ``` plots: - dvclive ``` However, this will track `dvclive/report.html`, which is generally not desired. Some options to handle...

A: dvc

Now that dvclive is decoupled from dvc, it should be pretty trivial to log data in formats expected by other ML tracking tools like mlflow. It would be great to...

enhancement
research
A: frameworks

```python import dvclive live = dvclive.Live(resume=True) while (epoch := live.get_step()) < 10: print(epoch) live.log("epoch", epoch) # need to log at least one thing for `next_step` to work live.next_step() ``` -...

discussion
refactoring

Values from previous steps are kept in the following steps. Take the following example: ``` import dvclive live = dvclive.Live() while (epoch := live.get_step()) < 10: live.log("epoch", epoch) if not...

A: step

Similar to how Ray provides integration for other loggers within [Ray Tune](https://docs.ray.io/en/latest/tune/index.html) it would be good if DVC Live could have its own integration. Concretely, in its documentation for integration...

p2-medium
feature request
A: frameworks

Seems odd to do this. If there are multiple things to log per iteration, you dump multiple times? - Seems better to dump only on `next_step()` - Could also make...

A: summary
A: log

> It seems odd to pass Live(report="html") in no-step scenarios and have that kwarg do nothing. Not sure if it should be part of this PR, but currently, I can...

A: report

Currently scalar values have timestamps associated with each step that is written to the csv file. It would be nice to be able to disable this for cases where the...

feature request
A: log

Currently, dvclive without dvc produces just a tsv output tracking metrics progress. This doesn't seem like enough to make it worthwhile for users. There are at least a few drawbacks...

enhancement
research