Skip to content

Commit

Permalink
Get Started: explaining code.zip contents, and plots axis options (#1514
Browse files Browse the repository at this point in the history
)

* Added  a line about params.yaml to data-pipelines.md

* Updated experiments.md with plot modify details

* Cleanup & copy tweaks

* Added more details on dvc plots diff options.

* Update content/docs/start/data-pipelines.md

* prettier on experiments.md + tweaked copy

Co-authored-by: Jorge Orpinel <[email protected]>
  • Loading branch information
natikgadzhi and jorgeorpinel authored Jul 5, 2020
1 parent d64c466 commit ee515b8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
12 changes: 9 additions & 3 deletions content/docs/start/data-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,15 @@ Get the sample code like this:
$ wget https://code.dvc.org/get-started/code.zip
$ unzip code.zip
$ rm -f code.zip
$ ls src
evaluate.py featurization.py prepare.py
requirements.txt train.py
$ tree
.
β”œβ”€β”€ params.yaml
└── src
β”œβ”€β”€ evaluate.py
β”œβ”€β”€ featurization.py
β”œβ”€β”€ prepare.py
β”œβ”€β”€ requirements.txt
└── train.py
```

Now let's install the requirements:
Expand Down
5 changes: 4 additions & 1 deletion content/docs/start/experiments.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ scores.json auc 0.61314 0.07139
And finally, we can compare `ROC` curves with a single command!

```dvc
$ dvc plots diff
$ dvc plots diff -x recall -y precision
file:///Users/dvc/example-get-started/plots.html
```

Expand All @@ -224,3 +224,6 @@ All these commands also accept
[Git revisions](https://git-scm.com/docs/gitrevisions) (commits, tags, branch
names) to compare. This is a powerful mechanism for navigating experiments to
see the history, to pick the best ones, etc.

> See `dvc plots diff` for more info on its options, such as `-x` and `-y` used
> above.

0 comments on commit ee515b8

Please sign in to comment.