This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
8_visualize_metrics.yml
220 lines (193 loc) · 10 KB
/
8_visualize_metrics.yml
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
target_default: 8_visualize_metrics
packages:
- sf
- tidyverse
- lwgeom
- smoothr
- igraph
- purrr
sources:
- 8_visualize_metrics/src/plot_metric_map.R
targets:
8_visualize_metrics:
depends:
- 8_visualize_metrics/out/rgcn2_full_mae_on_network.png
- 8_visualize_metrics/out/sntemp_full_mae_on_network.png
- 8_visualize_metrics/out/rgcn2_full_rmse_on_network.png
- 8_visualize_metrics/out/sntemp_full_rmse_on_network.png
- 8_visualize_metrics/out/rgcn2_full_mare_on_network.png
- 8_visualize_metrics/out/sntemp_full_mare_on_network.png
- 8_visualize_metrics/out/rgcn2_full_nse_on_network.png
- 8_visualize_metrics/out/sntemp_full_nse_on_network.png
- 8_visualize_metrics/out/rgnc2_full_true_pos_on_network.png
- 8_visualize_metrics/out/sntemp_full_true_pos_on_network.png
- 8_visualize_metrics/out/rgnc2_full_true_neg_on_network.png
- 8_visualize_metrics/out/sntemp_full_true_neg_on_network.png
- 8_visualize_metrics/out/rgnc2_full_false_pos_on_network.png
- 8_visualize_metrics/out/sntemp_full_false_pos_on_network.png
- 8_visualize_metrics/out/rgnc2_full_false_neg_on_network.png
- 8_visualize_metrics/out/sntemp_full_false_neg_on_network.png
- 8_visualize_metrics/out/rgnc2_full_max_temp_error_on_network.png
- 8_visualize_metrics/out/sntemp_full_max_temp_error_on_network.png
- 8_visualize_metrics/out/rgnc2_full_max_temp_time_on_network.png
- 8_visualize_metrics/out/sntemp_full_max_temp_time_on_network.png
# plot evaluation metrics
# mae for rgnc2_full model
8_visualize_metrics/out/rgcn2_full_mae_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/gen_metrics_by_seg.csv',
metric_col = I('mae'),
plot_model = I('rgcn2_full_full'),
legend_text = I('Mean Absolute Error'))
# mae for sntmep full model
8_visualize_metrics/out/sntemp_full_mae_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/gen_metrics_by_seg.csv',
metric_col = I('mae'),
plot_model = I('sntemp_full'),
legend_text = I('Mean Absolute Error'))
# rmse for rgnc full model
8_visualize_metrics/out/rgcn2_full_rmse_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/gen_metrics_by_seg.csv',
metric_col = I('rmse'),
plot_model = I('rgcn2_full_full'),
legend_text = I('RMSE'))
# rmse for sntemp full model
8_visualize_metrics/out/sntemp_full_rmse_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/gen_metrics_by_seg.csv',
metric_col = I('rmse'),
plot_model = I('sntemp_full'),
legend_text = I('RMSE'))
# mare for rgnc full model
8_visualize_metrics/out/rgcn2_full_mare_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/gen_metrics_by_seg.csv',
metric_col = I('mare'),
plot_model = I('rgcn2_full_full'),
legend_text = I('Mean Absolute Relative Error'))
# mare for sntemp full model
8_visualize_metrics/out/sntemp_full_mare_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/gen_metrics_by_seg.csv',
metric_col = I('mare'),
plot_model = I('sntemp_full'),
legend_text = I('Mean Absolute Relative Error'))
#nse for srgnc full model
8_visualize_metrics/out/rgcn2_full_nse_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/gen_metrics_by_seg.csv',
metric_col = I('nse'),
plot_model = I('rgcn2_full_full'),
legend_text = I('NSE'))
#nse for sntemp full model
8_visualize_metrics/out/sntemp_full_nse_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/gen_metrics_by_seg.csv',
metric_col = I('nse'),
plot_model = I('sntemp_full'),
legend_text = I('NSE'))
# exceedance for rgnc model
8_visualize_metrics/out/rgnc2_full_true_pos_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/exceedance_metrics_by_seg.csv',
metric_col = I('true_pos'),
plot_model = I('rgcn2_full_full'),
legend_text = I('True Positive Exceedances'))
# exceedance for sntemp model
8_visualize_metrics/out/sntemp_full_true_pos_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/exceedance_metrics_by_seg.csv',
metric_col = I('true_pos'),
plot_model = I('sntemp_full'),
legend_text = I('True Positive Exceedances'))
# exceedance for rgnc model
8_visualize_metrics/out/rgnc2_full_true_neg_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/exceedance_metrics_by_seg.csv',
metric_col = I('true_neg'),
plot_model = I('rgcn2_full_full'),
legend_text = I('True Negative Exceedances'))
# exceedance for sntemp model
8_visualize_metrics/out/sntemp_full_true_neg_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/exceedance_metrics_by_seg.csv',
metric_col = I('true_neg'),
plot_model = I('sntemp_full'),
legend_text = I('True Negative Exceedances'))
# exceedance for rgnc model
8_visualize_metrics/out/rgnc2_full_false_pos_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/exceedance_metrics_by_seg.csv',
metric_col = I('false_pos'),
plot_model = I('rgcn2_full_full'),
legend_text = I('False Positive Exceedances'))
# exceedance for sntemp model
8_visualize_metrics/out/sntemp_full_false_pos_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/exceedance_metrics_by_seg.csv',
metric_col = I('false_pos'),
plot_model = I('sntemp_full'),
legend_text = I('False Positive Exceedances'))
# exceedance for rgnc model
8_visualize_metrics/out/rgnc2_full_false_neg_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/exceedance_metrics_by_seg.csv',
metric_col = I('false_neg'),
plot_model = I('rgcn2_full_full'),
legend_text = I('False Negative Exceedances'))
# exceedance for sntemp model
8_visualize_metrics/out/sntemp_full_false_neg_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/exceedance_metrics_by_seg.csv',
metric_col = I('false_neg'),
plot_model = I('sntemp_full'),
legend_text = I('False Negative Exceedances'))
# max temps for rgnc model
8_visualize_metrics/out/rgnc2_full_max_temp_error_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/max_metrics_by_seg_year.csv',
metric_col = I('error_max_temp'),
plot_model = I('rgcn2_full_full'),
legend_text = I('Max Temp Error (deg C)'))
# max temps for sntemp model
8_visualize_metrics/out/sntemp_full_max_temp_error_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/max_metrics_by_seg_year.csv',
metric_col = I('error_max_temp'),
plot_model = I('sntemp_full'),
legend_text = I('Max Temp Error (deg C)'))
# max temps for rgnc model
8_visualize_metrics/out/rgnc2_full_max_temp_time_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/max_metrics_by_seg_year.csv',
metric_col = I('error_max_temp_timing'),
plot_model = I('rgcn2_full_full'),
legend_text = I('Max Temp Timing Error (days)'))
8_visualize_metrics/out/sntemp_full_max_temp_time_on_network.png:
command: plot_metric_map(out_file = target_name,
network_ind = '1_network/out/network.rds.ind',
metric_file = '4_evaluation/out/max_metrics_by_seg_year.csv',
metric_col = I('error_max_temp_timing'),
plot_model = I('sntemp_full'),
legend_text = I('Max Temp Timing Error (days)'))