Skip to content
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

Restyle guide: Comparing Experiments #2999

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,9 @@ $ dvc exp show --sort-by auc --sort-order desc

## Get experiments table in JSON

It's also possible to output the table of experiments in a machine-readable format,
for example to parse in scripts. To do so, use the `--json` or `--csv` options.
It's also possible to output the table of experiments in a machine-readable
format, for example to parse in scripts. To do so, use the `--json` or `--csv`
options.

```dvc
$ dvc exp show --json
Expand Down Expand Up @@ -326,8 +327,8 @@ cnn-64,6d13f33,branch_commit,2021-09-09T13:06:05,,0.2338544875383377,0.915300011
cnn-128,69503c6,branch_commit,2021-09-09T12:53:51,,0.2324332743883133,0.9160000085830688,10,128
```

For example, let's parse the CSV output with [csvkit] to
get a statistical summary about the experiments:
For example, let's parse the CSV output with [csvkit] to get a statistical
summary about the experiments:

```dvc
$ dvc exp show --csv | csvstat
Expand Down Expand Up @@ -356,8 +357,8 @@ $ dvc exp show --csv | csvstat
## Compare specific experiments

In addition to showing a summary table of experiments, DVC provides the
`dvc exp diff` command to compare pairs of experiments by the difference
in their metrics and params.
`dvc exp diff` command to compare pairs of experiments by the difference in
their metrics and params.

```dvc
$ dvc exp diff
Expand Down