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

start: Add new experiments section #4393

Merged
merged 16 commits into from
Mar 20, 2023
2 changes: 1 addition & 1 deletion content/basic-concepts/experiment.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Experiment
match: [experiment, experiments, 'DVC experiments']
match: [experiment, experiments, 'DVC experiments', 'DVC experiment']
tooltip: >-
A versioned iteration of ML model development. DVC tracks experiments as Git
commits that DVC can find but that don't clutter your Git history or branches.
Expand Down
2 changes: 1 addition & 1 deletion content/docs/command-reference/exp/apply.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Note that `git stash apply` my fail if you run Git commands which affect `HEAD`
This example is based on [our Get Started], where you can find the actual source
code.

[our get started]: /doc/start/experiment-management/experiments
[our get started]: /doc/start/experiments

</admon>

Expand Down
2 changes: 1 addition & 1 deletion content/docs/command-reference/exp/branch.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ version.
This example is based on [our Get Started], where you can find the actual source
code.

[our get started]: /doc/start/experiment-management/experiments
[our get started]: /doc/start/experiments

</admon>

Expand Down
2 changes: 1 addition & 1 deletion content/docs/command-reference/exp/diff.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ all the current experiments (without comparisons).
This example is based on [our Get Started], where you can find the actual source
code.

[our get started]: /doc/start/experiment-management/experiments
[our get started]: /doc/start/experiments

</admon>

Expand Down
2 changes: 1 addition & 1 deletion content/docs/command-reference/exp/gc.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ separately to delete it.
This example is based on [our Get Started], where you can find the actual source
code.

[our get started]: /doc/start/experiment-management/experiments
[our get started]: /doc/start/experiments

</admon>

Expand Down
2 changes: 1 addition & 1 deletion content/docs/command-reference/exp/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ options below).
This example is based on [our Get Started], where you can find the actual source
code.

[our get started]: /doc/start/experiment-management/experiments
[our get started]: /doc/start/experiments

</admon>

Expand Down
2 changes: 1 addition & 1 deletion content/docs/command-reference/exp/pull.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ pushed experiment.
This example is based on [our Get Started], where you can find the actual source
code.

[our get started]: /doc/start/experiment-management/experiments
[our get started]: /doc/start/experiments

</admon>

Expand Down
2 changes: 1 addition & 1 deletion content/docs/command-reference/exp/push.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ with the experiments to [remote storage], unless `--no-cache` is used.
This example is based on [our Get Started], where you can find the actual source
code.

[our get started]: /doc/start/experiment-management/experiments
[our get started]: /doc/start/experiments

</admon>

Expand Down
2 changes: 1 addition & 1 deletion content/docs/command-reference/exp/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ committing them to the Git repo. Unnecessary ones can be [cleared] with
This example is based on [our Get Started], where you can find the actual source
code.

[our get started]: /doc/start/experiment-management/experiments
[our get started]: /doc/start/experiments

</admon>

Expand Down
2 changes: 1 addition & 1 deletion content/docs/command-reference/exp/save.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ committing them to the Git repo. Unnecessary ones can be [cleared] with
This example is based on [our Get Started], where you can find the actual source
code.

[our get started]: /doc/start/experiment-management/experiments
[our get started]: /doc/start/experiments

</admon>

Expand Down
2 changes: 1 addition & 1 deletion content/docs/command-reference/exp/show.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ $ dvc exp show ...
This example is based on [our Get Started], where you can find the actual source
code.

[our get started]: /doc/start/experiment-management/experiments
[our get started]: /doc/start/experiments

</admon>

Expand Down
4 changes: 2 additions & 2 deletions content/docs/contributing/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ that is installed when `yarn` runs (see [dev env](#development-environment)).
- `dvc` can be used to show examples of commands and their output in a
terminal session.
- `dvctable` is used for creating colored, bold, or italic table cells. (You
can see an [example](/doc/start/experiment-management/experiments) of
`dvctable` in our "Get Started" section.)
can see an [example](/doc/start/experiments) of `dvctable` in our "Get
Started" section.)
- `yaml` is used to show samples of <abbr>DVC files</abbr>, or other YAML
contents.
- `diff` is used mainly for examples of `git diff` output.
Expand Down
4 changes: 2 additions & 2 deletions content/docs/sidebar.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
]
},
{
"slug": "experiment-management",
"slug": "experiments",
"source": false,
"children": ["experiments", "visualization"]
"children": ["experiment-versioning", "experiment-management"]
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ DVC makes it easy to track [metrics](/doc/command-reference/metrics), update
All of the above can be combined into [experiments] to run and compare many
iterations of your ML project.

[experiments]: /doc/start/experiment-management/experiments
[experiments]: /doc/start/experiments

</admon>

Expand Down
Loading