From 7bc861876a315ec39de340f7bca6f6fa5400c4e7 Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Wed, 21 Mar 2018 10:34:11 +0200 Subject: [PATCH] readme: 'dvc repro' -> 'dvc repro model.p' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 03665836e8..11413436c8 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ It helps data scientists manage their code and data together in a simple form of |----|-------| |Track code and data together|`$ git add train.py`
`$ dvc add images.zip` | |Connect code and data by commands| `$ dvc run -d images.zip -o images/ unzip -q images.zip`
`$ dvc run -d images/ -d train.py -o model.p python train.py` | -|Make changes and reproduce|`$ vi train.py`
`$ dvc repro` | +|Make changes and reproduce|`$ vi train.py`
`$ dvc repro model.p.dvc` | |Share code|`$ git add .`
`$ git commit -m 'The baseline model'`
`$ git push`| |Share data and ML models|`$ dvc config AWS.StoragePath mybucket/image_cnn`
`$ dvc push`|