Skip to content

Commit

Permalink
Merge pull request #762 from iterative/jorgeorpinel
Browse files Browse the repository at this point in the history
tutorials: address errors in versioning tut code samples
  • Loading branch information
shcheklein authored Oct 31, 2019
2 parents 2e3dc0a + 70f080c commit 1da7de3
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions static/docs/tutorials/versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,10 @@ first model. We'll capture everything with DVC, including the input dataset and
model [metrics](/doc/command-reference/metrics).

```dvc
$ mkdir data
$ cd data
$ dvc get https://github.com/iterative/dataset-registry \
tutorial/ver/data.zip
...
$ unzip data.zip
$ unzip -q data.zip
$ rm -f data.zip
```

Expand Down Expand Up @@ -191,7 +189,7 @@ Let's imagine that our image dataset doubles in size. The next command extracts
$ dvc get https://github.com/iterative/dataset-registry \
tutorial/ver/new-labels.zip
...
$ unzip new-labels.zip
$ unzip -q new-labels.zip
$ rm -f new-labels.zip
```
Expand Down Expand Up @@ -225,7 +223,6 @@ We will now want to leverage these new labels and retrain the model:

```dvc
$ dvc add data
$ dvc remove model.h5.dvc
$ python train.py
$ dvc add model.h5
```
Expand Down

0 comments on commit 1da7de3

Please sign in to comment.