-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdvc.yaml
More file actions
34 lines (31 loc) · 680 Bytes
/
dvc.yaml
File metadata and controls
34 lines (31 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
stages:
assemble_dataset:
cmd: python stages/concat_and_normalize.py
deps:
- stages/concat_and_normalize.py
- data/initial_features/
outs:
- data/raw.csv
- models/preprocessors
params:
- development
smooth:
cmd: python stages/smooth.py
deps:
- stages/smooth.py
- data/raw.csv
outs:
- data/smoothed.csv
params:
- smoothing
cycle_labeling:
cmd: python stages/cycle_labeler.py
deps:
- stages/cycle_labeler.py
- data/smoothed.csv
- data/raw.csv
outs:
- data/raw_cycle_labeled.csv
- data/smooth_cycle_labeled.csv
params:
- cycle_labeling