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

ref: state exp names should be unique #3065

Merged
merged 2 commits into from
Dec 7, 2021
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
12 changes: 6 additions & 6 deletions content/docs/command-reference/exp/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ you can use the `--set-param` (`-S`) option of this command to change
`dvc param` values on-the fly.

Each experiment creates and tracks a project variation based on your
<abbr>workspace</abbr> changes. Experiments will have an auto-generated name
like `exp-bfe64` by default, which can be customized using the `--name` (`-n`)
option.
<abbr>workspace</abbr> changes. Experiments will have a unique, auto-generated
name like `exp-bfe64` by default, which can be customized using the `--name`
(`-n`) option.

<details>

Expand Down Expand Up @@ -159,9 +159,9 @@ CPU cores).
file (`params.yaml` by default). This will override the param values coming
from the params file.

- `-n <name>`, `--name <name>` - specify a name for this experiment. A default
name will generated by default, such as `exp-f80g4` (based on the experiment's
hash).
- `-n <name>`, `--name <name>` - specify a unique name for this experiment. A
default one will generated otherwise, such as `exp-f80g4` (based on the
experiment's hash).

- `--temp` - run this experiment outside your workspace (in `.dvc/tmp/exps`).
Useful to continue working (e.g. in another terminal) while a long experiment
Expand Down