gagan3012 commited on
Commit
b8c450c
·
1 Parent(s): 7958ed1

readme updates

Browse files
Files changed (2) hide show
  1. Makefile +4 -4
  2. README.md +1 -1
Makefile CHANGED
@@ -1,4 +1,4 @@
1
- .PHONY: clean dirs virtualenv lint requirements push pull reproduce
2
 
3
  #################################################################################
4
  # GLOBALS #
@@ -44,9 +44,9 @@ push:
44
  pull:
45
  dvc pull
46
 
47
- ## Reproduce the DVC pipeline - recompute any modified outputs such as processed data or trained models
48
- reproduce:
49
- dvc repro eval.dvc
50
 
51
  #################################################################################
52
  # PROJECT RULES #
 
1
+ .PHONY: clean dirs virtualenv lint requirements push pull run
2
 
3
  #################################################################################
4
  # GLOBALS #
 
44
  pull:
45
  dvc pull
46
 
47
+ ## run the DVC pipeline - recompute any modified outputs such as processed data or trained models
48
+ run:
49
+ dvc repro dvc.yaml
50
 
51
  #################################################################################
52
  # PROJECT RULES #
README.md CHANGED
@@ -10,7 +10,7 @@ Instructions
10
  1. *Optional:* Run `make virtualenv` to create a python virtual environment. Skip if using conda or some other env manager.
11
  1. Run `source env/bin/activate` to activate the virtualenv.
12
  1. Run `make requirements` to install required python packages.
13
- 1. Process your data, train and evaluate your model using `dvc repro eval.dvc` or `make reproduce`
14
  1. When you're happy with the result, commit files (including .dvc files) to git.
15
 
16
  Project Organization
 
10
  1. *Optional:* Run `make virtualenv` to create a python virtual environment. Skip if using conda or some other env manager.
11
  1. Run `source env/bin/activate` to activate the virtualenv.
12
  1. Run `make requirements` to install required python packages.
13
+ 1. Process your data, train and evaluate your model using `make run`
14
  1. When you're happy with the result, commit files (including .dvc files) to git.
15
 
16
  Project Organization