-
Notifications
You must be signed in to change notification settings - Fork 6
/
dvc.yaml
46 lines (46 loc) · 1004 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
43
44
45
46
plots:
- Accuracy:
x: step
y:
training/plots/metrics/train/acc.tsv: acc
training/plots/metrics/test/acc.tsv: acc
y_label: accuracy
- Loss:
x: step
y:
training/plots/metrics/train/loss.tsv: loss
training/plots/metrics/test/loss.tsv: loss
y_label: loss
- Confusion matrix:
template: confusion
x: actual
y:
training/plots/sklearn/confusion_matrix.json: predicted
- hist.csv:
x: preds
y: digit
template: bar_horizontal
title: Histogram of Predictions
- probs.json:
x: actual
y: prob
template: scatter
title: Predicted Probabilities
- training/plots/images
stages:
train:
cmd: python train.py
deps:
- data
- train.py
params:
- params.yaml:
outs:
- model.pt
- training/plots:
persist: true
- hist.csv
metrics:
- training/metrics.json:
persist: true
cache: false