Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions content/docs/start/experiments.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ $ dvc exp show
By default, it shows all the metrics, parameters and dependencies with the
timestamp. If you have a large number of metrics, parameters, dependencies or
experiments, this may lead to a cluttered view. You can limit the table to
specific columns using the
[`--drop`](/doc/command-reference/exp/show#--drop) option of the command.
specific columns using the [`--drop`](/doc/command-reference/exp/show#--drop)
option of the command.

```dvc
$ dvc exp show --drop 'Created|train|loss'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ $ dvc exp show --no-timestamp --include-params=model.conv_units --exclude-metric
```

By default `dvc exp show` sorts the experiments by their timestamp. You can sort
the metrics or parameters columns by the option `--sort-by` and
`--sort-order`. `--sort-by` takes a metric or parameter name, and `--sort-order`
takes either `asc` or `desc`.
the metrics or parameters columns by the option `--sort-by` and `--sort-order`.
`--sort-by` takes a metric or parameter name, and `--sort-order` takes either
`asc` or `desc`.

```dvc
$ dvc exp show --sort-by auc --sort-order desc
Expand Down Expand Up @@ -483,8 +483,8 @@ $ dvc exp diff exp-25a26 cnn-64 --json

The output is a JSON dictionary with two keys, `metrics` and `params`, which
have dictionaries as values. `metrics` and `params` dictionaries have keys for
each of the metrics or parameters files, and for each file metrics and parameters
are listed as keys.
each of the metrics or parameters files, and for each file metrics and
parameters are listed as keys.

As an example, we can get only a specific metric with [jq]:

Expand Down