Skip to content

Plot metric values from multiple experiments as a single series #9593

Answered by daavoo
maxromanovsky asked this question in Help
Discussion options

You must be logged in to vote

Is it even possible using DVC? If not, is it planned?

It is not possible to do in DVC CLI and it is not currently planned to support it natively in the CLI.

And if that's not possible, do you see any solution other than export dvc exp show --csv and plot it in a python script?

We currently support something similar to what you want in the DVC VSCode UI using Custom Plots.
It will be eventually supported also in the DVC Studio Web UI .

Quick example using a simple DVCLive snippet and the VSCode UI :

import random
from dvclive import Live

for threshold in [0.1, 0.2, 0.3]:
    for lenght in [10, 20, 30]:
        with Live(report=None, save_dvc_exp=True) as live:
            score = random

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by maxromanovsky
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
2 participants