From 7224a2860db787051343cf30f2c1b78e8eccbe46 Mon Sep 17 00:00:00 2001 From: Jorge Orpinel Date: Fri, 24 Jan 2020 14:08:14 -0600 Subject: [PATCH] tutorials: comlpete sharing example terminal commands and review "Nothing to reproduce." output samples (after `dvc repro`) rel: #938 --- public/static/docs/tutorials/deep/reproducibility.md | 5 ++--- public/static/docs/tutorials/deep/sharing-data.md | 5 +++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/public/static/docs/tutorials/deep/reproducibility.md b/public/static/docs/tutorials/deep/reproducibility.md index 25d1e7024f..29f02f3a51 100644 --- a/public/static/docs/tutorials/deep/reproducibility.md +++ b/public/static/docs/tutorials/deep/reproducibility.md @@ -148,9 +148,8 @@ original model from the master branch. ```dvc $ git checkout master $ dvc checkout -# Nothing to reproduce since code was checked out by `git checkout` -# and data files were checked out by `dvc checkout` $ dvc repro +Nothing to reproduce. ``` After proper checkout, there is nothing to reproduce because all the correct @@ -309,6 +308,6 @@ changes in the right place and reproduction is not needed. ```dvc $ dvc checkout -# Nothing to reproduce: $ dvc repro +Nothing to reproduce. ``` diff --git a/public/static/docs/tutorials/deep/sharing-data.md b/public/static/docs/tutorials/deep/sharing-data.md index ed6c2e2902..4d58be6c8d 100644 --- a/public/static/docs/tutorials/deep/sharing-data.md +++ b/public/static/docs/tutorials/deep/sharing-data.md @@ -51,13 +51,14 @@ the master branch: ```dvc $ git clone https://github.com/dmpetrov/new_tag_classifier.git +$ cd new_tag_classifier $ dvc pull ``` -After executing this command, all the data files will be in the right place. You +After executing `dvc pull`, all the data files should be in the right place. You can confirm this by trying to reproduce the default goal: ```dvc -# Nothing to reproduce: $ dvc repro +Nothing to reproduce. ```