-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdvc.yaml
94 lines (89 loc) · 2.23 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# This pipeline defines top-level output stages.
stages:
eval-report-template:
cmd: jupytext --to ipynb eval-report.md
deps:
- eval-report.md
outs:
- eval-report.ipynb:
cache: false
eval-report-ml100k:
cmd: papermill -r dataset ml100k eval-report.ipynb eval-report.ml100k.ipynb
deps:
- eval-report.ipynb
- runs/ml100k-Bias
- runs/ml100k-IIE
- runs/ml100k-UUE
- runs/ml100k-ALS
- runs/ml100k-Pop
- runs/ml100k-III
- runs/ml100k-IALS
outs:
- eval-report.ml100k.ipynb:
cache: false
metrics:
- eval-metrics.ml100k.json
eval-report-ml1m:
cmd: papermill -r dataset ml1m eval-report.ipynb eval-report.ml1m.ipynb
deps:
- eval-report.ipynb
- runs/ml1m-Pop
- runs/ml1m-Bias
- runs/ml1m-IIE
- runs/ml1m-UUE
- runs/ml1m-ALS
- runs/ml1m-III
- runs/ml1m-IALS
outs:
- eval-report.ml1m.ipynb:
cache: false
metrics:
- eval-metrics.ml1m.json
eval-report-mlsmall:
cmd: papermill -r dataset mlsmall eval-report.ipynb eval-report.mlsmall.ipynb
deps:
- eval-report.ipynb
- runs/mlsmall-Pop
- runs/mlsmall-Bias
- runs/mlsmall-IIE
- runs/mlsmall-UUE
- runs/mlsmall-ALS
- runs/mlsmall-III
- runs/mlsmall-IALS
outs:
- eval-report.mlsmall.ipynb:
cache: false
metrics:
- eval-metrics.mlsmall.json
eval-report-ml10m:
cmd: papermill -r dataset ml10m eval-report.ipynb eval-report.ml10m.ipynb
deps:
- eval-report.ipynb
- runs/ml10m-Pop
- runs/ml10m-Bias
- runs/ml10m-IIE
- runs/ml10m-UUE
- runs/ml10m-ALS
- runs/ml10m-III
- runs/ml10m-IALS
outs:
- eval-report.ml10m.ipynb:
cache: false
metrics:
- eval-metrics.ml10m.json
eval-report-ml20m:
cmd: papermill -r dataset ml20m eval-report.ipynb eval-report.ml20m.ipynb
deps:
- eval-report.ipynb
- runs/ml20m-Pop
- runs/ml20m-Bias
- runs/ml20m-IIE
- runs/ml20m-UUE
- runs/ml20m-ALS
- runs/ml20m-III
- runs/ml20m-IALS
outs:
- eval-report.ml20m.ipynb:
cache: false
metrics:
- eval-metrics.ml20m.json