From 4860968cad431708208f8e060dad1f082fe0e828 Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Thu, 3 Feb 2022 11:14:38 +0000 Subject: [PATCH] Restyled by prettier --- content/docs/start/experiments.md | 4 ++-- .../experiment-management/comparing-experiments.md | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/content/docs/start/experiments.md b/content/docs/start/experiments.md index 81e6a7357c..debac65371 100644 --- a/content/docs/start/experiments.md +++ b/content/docs/start/experiments.md @@ -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' diff --git a/content/docs/user-guide/experiment-management/comparing-experiments.md b/content/docs/user-guide/experiment-management/comparing-experiments.md index 4c2fdbd1e9..b80b85d1f8 100644 --- a/content/docs/user-guide/experiment-management/comparing-experiments.md +++ b/content/docs/user-guide/experiment-management/comparing-experiments.md @@ -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 @@ -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]: