-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdvc.yaml
More file actions
41 lines (39 loc) · 753 Bytes
/
dvc.yaml
File metadata and controls
41 lines (39 loc) · 753 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
35
36
37
38
39
40
41
stages:
transform:
cmd: python src/transform.py
deps:
- data/data.csv
- src/common.py
- src/params.yaml
- src/transform.py
params:
- src/params.yaml:
- transform
- transform.train_size
outs:
- data/train.csv
- data/test.csv
describe:
cmd: python src/describe.py
deps:
- data/test.csv
- data/train.csv
- src/describe.py
outs:
- data/description.json
random_plot:
cmd: python src/random_plot.py
deps:
- src/common.py
- src/describe.py
params:
- src/params.yaml:
- random_plot.seed
metrics:
- metrics/metric.json:
cache: false
plots:
- plots/plot.json:
cache: false
x: x_axis
y: y_axis