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

Get started tutorial for experiments (with readable diff) #2195

Merged
merged 46 commits into from
Feb 27, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
92e66cb
update existing get started sections to prep for experiments
dberenbaum Feb 15, 2021
a176145
add new experiments section
dberenbaum Feb 15, 2021
8d434e7
change --params to --set-param
dberenbaum Feb 16, 2021
a426953
update ml-pipelines to metrics, params, plots
dberenbaum Feb 16, 2021
0c9469b
update external refs to old experiments section
dberenbaum Feb 17, 2021
49de41b
fix metrics, parameters, and plots sidebar title
dberenbaum Feb 17, 2021
4f40f1e
introduce 2.0 warning for get started exps
dberenbaum Feb 18, 2021
e8b2482
shorten param names
dberenbaum Feb 18, 2021
0e05431
fix --set-params flags in exp queue
dberenbaum Feb 18, 2021
6eee8b0
reexpand featurize stage name
dberenbaum Feb 18, 2021
38b40c0
update get started plots modify command
dberenbaum Feb 19, 2021
c05c547
change -w to --workspace for more clarity
dberenbaum Feb 19, 2021
c991faf
update existing get started sections to prep for experiments
dberenbaum Feb 15, 2021
3d33c03
add new experiments section
dberenbaum Feb 15, 2021
91f7664
change --params to --set-param
dberenbaum Feb 16, 2021
165b734
update ml-pipelines to metrics, params, plots
dberenbaum Feb 16, 2021
1007256
update external refs to old experiments section
dberenbaum Feb 17, 2021
994b585
fix metrics, parameters, and plots sidebar title
dberenbaum Feb 17, 2021
90684a4
introduce 2.0 warning for get started exps
dberenbaum Feb 18, 2021
02272bc
shorten param names
dberenbaum Feb 18, 2021
a904722
fix --set-params flags in exp queue
dberenbaum Feb 18, 2021
5a14c30
reexpand featurize stage name
dberenbaum Feb 18, 2021
525f5dd
update get started plots modify command
dberenbaum Feb 19, 2021
a8b9a15
change -w to --workspace for more clarity
dberenbaum Feb 19, 2021
854701f
resolve conflicts in upstream
dberenbaum Feb 23, 2021
ecb8674
upstream changes pointing to exp mgmt guide
dberenbaum Feb 23, 2021
8fe1c67
use updated formatter
dberenbaum Feb 23, 2021
375ad9f
Update content/docs/start/experiments.md
dberenbaum Feb 25, 2021
0dc3397
Update content/docs/start/experiments.md
dberenbaum Feb 25, 2021
f39df81
Update content/docs/start/experiments.md
dberenbaum Feb 25, 2021
b042bf3
Update content/docs/start/experiments.md
dberenbaum Feb 25, 2021
3d7b0fd
Update content/docs/start/experiments.md
dberenbaum Feb 25, 2021
b9a35e5
Update content/docs/start/experiments.md
dberenbaum Feb 25, 2021
6e86b66
Update content/docs/start/experiments.md
dberenbaum Feb 25, 2021
6cfc53d
Update content/docs/start/experiments.md
dberenbaum Feb 25, 2021
9cfd82a
get started exp updates based on initial jorge feedback
dberenbaum Feb 25, 2021
1732fa0
Merge branch 'master' of github.com:iterative/dvc.org into experiment…
dberenbaum Feb 25, 2021
21647a2
Merge branch 'experiments_reset' of github.com:iterative/dvc.org into…
dberenbaum Feb 25, 2021
081f2c2
auto formatting
dberenbaum Feb 25, 2021
4b90f59
Update content/docs/start/experiments.md
dberenbaum Feb 25, 2021
052f46f
responding to more feedback from jorge
dberenbaum Feb 25, 2021
dfa9488
added note on ephemeral exps at top
dberenbaum Feb 25, 2021
9c40eac
remove data deps as being tracked by exps
dberenbaum Feb 26, 2021
54087eb
add'l cleanup of get started exps page
Feb 26, 2021
e04e38d
reverted blog link
Feb 26, 2021
e0800ed
Add metrics/plots show in get started (#2240)
Feb 27, 2021
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
5 changes: 4 additions & 1 deletion content/docs/sidebar.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,13 @@
}
},
{
"slug": "experiments",
"slug": "metrics-parameters-plots",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/get-started"
}
},
{
"slug": "experiments"
}
dberenbaum marked this conversation as resolved.
Show resolved Hide resolved
]
},
Expand Down
10 changes: 5 additions & 5 deletions content/docs/start/data-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ The command options used above mean the following:
- `-n prepare` specifies a name for the stage. If you open the `dvc.yaml` file
you will see a section named `prepare`.

- `-p prepare.seed,prepare.split` is a special type of dependencies -
- `-p prepare.seed,prepare.split` defines special types of dependencies -
[parameters](/doc/command-reference/params). We'll get to them later in the
[Experiments](/doc/tutorials/get-started/experiments) section, but the idea is
that stage can depend on field values from a parameters file (`params.yaml` by
default):
[Metrics, parameters, and plots](/doc/start/metrics-parameters-plots) section,
but the idea is that the stage can depend on field values from a parameters
file (`params.yaml` by default):

```yaml
prepare:
Expand Down Expand Up @@ -207,7 +207,7 @@ with the same set of options:

```dvc
$ dvc run -n train \
-p train.seed,train.n_estimators \
-p train.seed,train.n_estimators,train.min_samples_split \
-d src/train.py -d data/features \
-o model.pkl \
python src/train.py data/features model.pkl
Expand Down
Loading