forked from shcheklein/hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dvc.yaml
42 lines (42 loc) · 806 Bytes
/
dvc.yaml
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
42
stages:
train:
cmd:
- python train.py data/
deps:
- data/
- train.py
- requirements.txt
params:
- params.yaml:
metrics:
- evaluation.json:
cache: false
outs:
- model
plots:
- evaluation/scalars/eval/accuracy.tsv:
cache: false
x: step
y: eval/accuracy
- evaluation/scalars/train/accuracy.tsv:
cache: false
x: step
y: train/accuracy
- evaluation/scalars/eval/loss.tsv:
cache: false
x: step
y: eval/loss
- evaluation/scalars/train/loss.tsv:
cache: false
x: step
y: train/loss
inference:
cmd: python inference.py data/
deps:
- data
- model
- inference.py
outs:
- predictions
plots:
- mispredicted