-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvc.yaml
378 lines (378 loc) · 23.7 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
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
stages:
download_time_series:
cmd: python repro/downloads/time_series/download_time_series_dataset.py
deps:
- repro/downloads/time_series/download_time_series_dataset.py
outs:
- data/ts/
generate_toy_cloud_removal_dataset:
cmd: source repro/toy-data/cloud_removal/generate_toy_cloud_removal_dataset.sh
deps:
- data/ts/Multivariate_ts/Epilepsy/Epilepsy_TEST.ts
- data/ts/Multivariate_ts/Epilepsy/Epilepsy_TRAIN.ts
- data/ts/Multivariate_ts/RacketSports/RacketSports_TEST.ts
- data/ts/Multivariate_ts/RacketSports/RacketSports_TRAIN.ts
- run_toy_derivation.py
- run_toy_generation.py
- src/toygeneration/config/cloud_removal/optical/derivation_clean_optical.yaml
- src/toygeneration/config/cloud_removal/optical/derivation_clouded_optical.yaml
- src/toygeneration/config/cloud_removal/optical/generation_latent_optical.yaml
- src/toygeneration/config/cloud_removal/sar/derivation_sar.yaml
- src/toygeneration/config/cloud_removal/sar/generation_latent_sar.yaml
outs:
- data/toy/cloud_removal/
train_cgan_toy_cloud_removal_seed_17:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml
--o=data/experiments_outputs/cgan_toy_cloud_removal --device=1 --experiment_name=seed_17
--seed=17
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_17/run
train_cgan_toy_cloud_removal_seed_37:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml
--o=data/experiments_outputs/cgan_toy_cloud_removal --device=1 --experiment_name=seed_37
--seed=37
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_37/run
train_cgan_toy_cloud_removal_seed_43:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml
--o=data/experiments_outputs/cgan_toy_cloud_removal --device=1 --experiment_name=seed_43
--seed=43
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_43/run
train_cgan_toy_cloud_removal_seed_73:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml
--o=data/experiments_outputs/cgan_toy_cloud_removal --device=1 --experiment_name=seed_73
--seed=73
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_73/run
train_cgan_toy_cloud_removal_seed_101:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml
--o=data/experiments_outputs/cgan_toy_cloud_removal --device=1 --experiment_name=seed_101
--seed=101
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_101/run
test_cgan_toy_cloud_removal_seed_17:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml
--o=data/experiments_outputs/cgan_toy_cloud_removal/seed_17/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml --o=data/experiments_outputs/cgan_toy_cloud_removal
--device=1 --chkpt=data/experiments_outputs/cgan_toy_cloud_removal/seed_17/checkpoints/epoch=42.ckpt
--classifier=data/experiments_outputs/cgan_toy_cloud_removal/seed_17/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_17/checkpoints/epoch=42.ckpt
- data/experiments_outputs/cgan_toy_cloud_removal/seed_17/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_17/eval
test_cgan_toy_cloud_removal_seed_37:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml
--o=data/experiments_outputs/cgan_toy_cloud_removal/seed_37/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml --o=data/experiments_outputs/cgan_toy_cloud_removal
--device=1 --chkpt=data/experiments_outputs/cgan_toy_cloud_removal/seed_37/checkpoints/epoch=62.ckpt
--classifier=data/experiments_outputs/cgan_toy_cloud_removal/seed_37/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_37/checkpoints/epoch=62.ckpt
- data/experiments_outputs/cgan_toy_cloud_removal/seed_37/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_37/eval
test_cgan_toy_cloud_removal_seed_43:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml
--o=data/experiments_outputs/cgan_toy_cloud_removal/seed_43/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml --o=data/experiments_outputs/cgan_toy_cloud_removal
--device=1 --chkpt=data/experiments_outputs/cgan_toy_cloud_removal/seed_43/checkpoints/epoch=60.ckpt
--classifier=data/experiments_outputs/cgan_toy_cloud_removal/seed_43/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_43/checkpoints/epoch=60.ckpt
- data/experiments_outputs/cgan_toy_cloud_removal/seed_43/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_43/eval
test_cgan_toy_cloud_removal_seed_73:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml
--o=data/experiments_outputs/cgan_toy_cloud_removal/seed_73/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml --o=data/experiments_outputs/cgan_toy_cloud_removal
--device=1 --chkpt=data/experiments_outputs/cgan_toy_cloud_removal/seed_73/checkpoints/epoch=63.ckpt
--classifier=data/experiments_outputs/cgan_toy_cloud_removal/seed_73/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_73/checkpoints/epoch=63.ckpt
- data/experiments_outputs/cgan_toy_cloud_removal/seed_73/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_73/eval
test_cgan_toy_cloud_removal_seed_101:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml
--o=data/experiments_outputs/cgan_toy_cloud_removal/seed_101/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_toy.yaml --o=data/experiments_outputs/cgan_toy_cloud_removal
--device=1 --chkpt=data/experiments_outputs/cgan_toy_cloud_removal/seed_101/checkpoints/epoch=61.ckpt
--classifier=data/experiments_outputs/cgan_toy_cloud_removal/seed_101/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_101/checkpoints/epoch=61.ckpt
- data/experiments_outputs/cgan_toy_cloud_removal/seed_101/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_toy_cloud_removal/seed_101/eval
train_cgan_toy_upper_bound_seed_17:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy --device=1 --experiment_name=seed_17
--seed=17
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_upper_bound_toy/seed_17/run
train_cgan_toy_upper_bound_seed_43:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy --device=1 --experiment_name=seed_43
--seed=43
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_upper_bound_toy/seed_43/run
train_cgan_toy_upper_bound_seed_73:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy --device=1 --experiment_name=seed_73
--seed=73
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_upper_bound_toy/seed_73/run
train_cgan_toy_upper_bound_seed_101:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy --device=1 --experiment_name=seed_101
--seed=101
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_upper_bound_toy/seed_101/run
test_cgan_toy_upper_bound_seed_17:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy/seed_17/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy --device=1 --chkpt=data/experiments_outputs/cgan_upper_bound_toy/seed_17/checkpoints/epoch=44.ckpt
--classifier=data/experiments_outputs/cgan_upper_bound_toy/seed_17/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_upper_bound_toy/seed_17/checkpoints/epoch=44.ckpt
- data/experiments_outputs/cgan_upper_bound_toy/seed_17/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_upper_bound_toy/seed_17/eval
test_cgan_toy_upper_bound_seed_37:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy/seed_37/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy --device=1 --chkpt=data/experiments_outputs/cgan_upper_bound_toy/seed_37/checkpoints/epoch=9.ckpt
--classifier=data/experiments_outputs/cgan_upper_bound_toy/seed_37/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_upper_bound_toy/seed_37/checkpoints/epoch=9.ckpt
- data/experiments_outputs/cgan_upper_bound_toy/seed_37/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_upper_bound_toy/seed_37/eval
test_cgan_toy_upper_bound_seed_43:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy/seed_43/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy --device=1 --chkpt=data/experiments_outputs/cgan_upper_bound_toy/seed_43/checkpoints/epoch=26.ckpt
--classifier=data/experiments_outputs/cgan_upper_bound_toy/seed_43/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_upper_bound_toy/seed_43/checkpoints/epoch=26.ckpt
- data/experiments_outputs/cgan_upper_bound_toy/seed_43/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_upper_bound_toy/seed_43/eval
test_cgan_toy_upper_bound_seed_73:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy/seed_73/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy --device=1 --chkpt=data/experiments_outputs/cgan_upper_bound_toy/seed_73/checkpoints/epoch=31.ckpt
--classifier=data/experiments_outputs/cgan_upper_bound_toy/seed_73/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_upper_bound_toy/seed_73/checkpoints/epoch=31.ckpt
- data/experiments_outputs/cgan_upper_bound_toy/seed_73/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_upper_bound_toy/seed_73/eval
test_cgan_toy_upper_bound_seed_101:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy/seed_101/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
--o=data/experiments_outputs/cgan_upper_bound_toy --device=1 --chkpt=data/experiments_outputs/cgan_upper_bound_toy/seed_101/checkpoints/epoch=40.ckpt
--classifier=data/experiments_outputs/cgan_upper_bound_toy/seed_101/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_upper_bound_toy/seed_101/checkpoints/epoch=40.ckpt
- data/experiments_outputs/cgan_upper_bound_toy/seed_101/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_upper_bound_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_upper_bound_toy/seed_101/eval
train_cgan_frame_recurrent_toy_cloud_removal_seed_17:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal --device=1
--experiment_name=seed_17 --seed=17
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_frame_recurrent_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_17/run
train_cgan_frame_recurrent_toy_cloud_removal_seed_37:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal --device=1
--experiment_name=seed_37 --seed=37
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_frame_recurrent_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_37/run
train_cgan_frame_recurrent_toy_cloud_removal_seed_43:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal --device=1
--experiment_name=seed_43 --seed=43
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_frame_recurrent_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_43/run
train_cgan_frame_recurrent_toy_cloud_removal_seed_73:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal --device=1
--experiment_name=seed_73 --seed=73
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_frame_recurrent_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_73/run
train_cgan_frame_recurrent_toy_cloud_removal_seed_101:
cmd: python run_training.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal --device=1
--experiment_name=seed_101 --seed=101
deps:
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_frame_recurrent_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_101/run
test_cgan_frame_recurrent_toy_cloud_removal_seed_17:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_17/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal --device=1
--chkpt=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_17/checkpoints/epoch=62.ckpt
--classifier=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_17/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_17/checkpoints/epoch=62.ckpt
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_17/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_frame_recurrent_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_17/eval
test_cgan_frame_recurrent_toy_cloud_removal_seed_37:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_37/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal --device=1
--chkpt=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_37/checkpoints/epoch=59.ckpt
--classifier=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_37/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_37/checkpoints/epoch=59.ckpt
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_37/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_frame_recurrent_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_37/eval
test_cgan_frame_recurrent_toy_cloud_removal_seed_43:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_43/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal --device=1
--chkpt=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_43/checkpoints/epoch=59.ckpt
--classifier=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_43/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_43/checkpoints/epoch=59.ckpt
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_43/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_frame_recurrent_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_43/eval
test_cgan_frame_recurrent_toy_cloud_removal_seed_73:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_73/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal --device=1
--chkpt=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_73/checkpoints/epoch=61.ckpt
--classifier=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_73/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_73/checkpoints/epoch=61.ckpt
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_73/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_frame_recurrent_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_73/eval
test_cgan_frame_recurrent_toy_cloud_removal_seed_101:
cmd: python make_reference_classifier.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_101/eval/reference_classifier/classifier.pickle &&
python run_testing.py --cfg=src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
--o=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal --device=1
--chkpt=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_101/checkpoints/epoch=59.ckpt
--classifier=data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_101/eval/reference_classifier/classifier.pickle
deps:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_101/checkpoints/epoch=59.ckpt
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_101/run
- data/toy/cloud_removal
- src/rsgan/config/cloud_removal/cgan_frame_recurrent_toy.yaml
- src/rsgan/experiments/cloud_removal/cgan_frame_recurrent_toy_cloud_removal.py
outs:
- data/experiments_outputs/cgan_frame_recurrent_toy_cloud_removal/seed_101/eval