-
Notifications
You must be signed in to change notification settings - Fork 0
/
dvc.yaml
79 lines (73 loc) · 1.84 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
stages:
axes:
cmd: "python ${paths.stages.axes}"
deps:
- "${paths.stages.axes}"
- "${paths.config}/axes.yaml"
- "${paths.models}"
outs:
- "${paths.axes}"
runs:
cmd: "python ${paths.stages.runs}"
deps:
- "${paths.stages.runs}"
- "${paths.axes}"
- "${paths.trials}"
outs:
- "${paths.runs}"
params:
- "records_to_average"
parse_benchmarks:
cmd: "python ${paths.stages.parse_benchmarks}"
deps:
- "${paths.stages.parse_benchmarks}"
- "${paths.axes}"
- "${paths.benchmarks}"
outs:
- "${paths.benchmarks_parsed}"
pipeline:
cmd: "python ${paths.stages.pipeline}"
deps:
- "${paths.stages.pipeline}"
- "${paths.model_functions}"
- "${paths.runs}"
- "${paths.benchmarks_parsed}"
- "${paths.validation}"
outs:
- "${paths.results}"
metrics:
cmd: "ploomber-engine ${paths.stages.metrics} NUL"
deps:
- "${paths.stages.metrics}"
- "${paths.results}"
metrics:
- "${paths.file_pipeline_metrics}"
plots:
- "${paths.plot_new_fit_0}"
- "${paths.plot_new_fit_1}"
- "${paths.plot_new_fit_2}"
- "${paths.plot_error_T_s}"
- "${paths.plot_error_q_s}"
- "${paths.plot_error_h_a}"
params:
- "do_plot"
literature:
cmd: "python ${paths.stages.literature}"
deps:
- "${paths.stages.literature}"
- "${paths.literature}"
- "${paths.models}"
outs:
- "${paths.literature_results}"
originlab:
cmd: "python ${paths.stages.originlab}"
deps:
- "${paths.stages.originlab}"
- "${paths.results}"
- "${paths.literature_results}"
- "${paths.plotter}"
outs:
- "${paths.originlab_results}"
plots:
- "${paths.originlab_plot_files.lit}"
- "${paths.originlab_plot_files.low}"