-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathall_disaster_splits.json
11188 lines (11188 loc) · 615 KB
/
all_disaster_splits.json
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"guatemala-volcano": {
"train": [
"raw/hold/labels/guatemala-volcano_00000004",
"raw/hold/labels/guatemala-volcano_00000012",
"raw/hold/labels/guatemala-volcano_00000014",
"raw/hold/labels/guatemala-volcano_00000020",
"raw/hold/labels/guatemala-volcano_00000022",
"raw/test/labels/guatemala-volcano_00000003",
"raw/test/labels/guatemala-volcano_00000005",
"raw/test/labels/guatemala-volcano_00000009",
"raw/test/labels/guatemala-volcano_00000011",
"raw/test/labels/guatemala-volcano_00000021",
"raw/train/labels/guatemala-volcano_00000000",
"raw/train/labels/guatemala-volcano_00000001",
"raw/train/labels/guatemala-volcano_00000006",
"raw/train/labels/guatemala-volcano_00000008",
"raw/train/labels/guatemala-volcano_00000010",
"raw/train/labels/guatemala-volcano_00000013",
"raw/train/labels/guatemala-volcano_00000015",
"raw/train/labels/guatemala-volcano_00000018",
"raw/train/labels/guatemala-volcano_00000023",
"raw/train/labels/guatemala-volcano_00000024",
"raw/train/labels/guatemala-volcano_00000025",
"raw/train/labels/guatemala-volcano_00000026",
"raw/train/labels/guatemala-volcano_00000027"
],
"val": [
"raw/train/labels/guatemala-volcano_00000007",
"raw/train/labels/guatemala-volcano_00000017",
"raw/train/labels/guatemala-volcano_00000019"
],
"test": [
"raw/train/labels/guatemala-volcano_00000002",
"raw/train/labels/guatemala-volcano_00000016"
]
},
"hurricane-florence": {
"train": [
"raw/hold/labels/hurricane-florence_00000009",
"raw/hold/labels/hurricane-florence_00000010",
"raw/hold/labels/hurricane-florence_00000011",
"raw/hold/labels/hurricane-florence_00000014",
"raw/hold/labels/hurricane-florence_00000017",
"raw/hold/labels/hurricane-florence_00000021",
"raw/hold/labels/hurricane-florence_00000025",
"raw/hold/labels/hurricane-florence_00000033",
"raw/hold/labels/hurricane-florence_00000034",
"raw/hold/labels/hurricane-florence_00000035",
"raw/hold/labels/hurricane-florence_00000038",
"raw/hold/labels/hurricane-florence_00000040",
"raw/hold/labels/hurricane-florence_00000047",
"raw/hold/labels/hurricane-florence_00000050",
"raw/hold/labels/hurricane-florence_00000052",
"raw/hold/labels/hurricane-florence_00000068",
"raw/hold/labels/hurricane-florence_00000071",
"raw/hold/labels/hurricane-florence_00000081",
"raw/hold/labels/hurricane-florence_00000090",
"raw/hold/labels/hurricane-florence_00000098",
"raw/hold/labels/hurricane-florence_00000105",
"raw/hold/labels/hurricane-florence_00000107",
"raw/hold/labels/hurricane-florence_00000108",
"raw/hold/labels/hurricane-florence_00000109",
"raw/hold/labels/hurricane-florence_00000121",
"raw/hold/labels/hurricane-florence_00000130",
"raw/hold/labels/hurricane-florence_00000134",
"raw/hold/labels/hurricane-florence_00000137",
"raw/hold/labels/hurricane-florence_00000154",
"raw/hold/labels/hurricane-florence_00000161",
"raw/hold/labels/hurricane-florence_00000162",
"raw/hold/labels/hurricane-florence_00000170",
"raw/hold/labels/hurricane-florence_00000175",
"raw/hold/labels/hurricane-florence_00000198",
"raw/hold/labels/hurricane-florence_00000201",
"raw/hold/labels/hurricane-florence_00000205",
"raw/hold/labels/hurricane-florence_00000206",
"raw/hold/labels/hurricane-florence_00000207",
"raw/hold/labels/hurricane-florence_00000209",
"raw/hold/labels/hurricane-florence_00000213",
"raw/hold/labels/hurricane-florence_00000220",
"raw/hold/labels/hurricane-florence_00000223",
"raw/hold/labels/hurricane-florence_00000227",
"raw/hold/labels/hurricane-florence_00000230",
"raw/hold/labels/hurricane-florence_00000236",
"raw/hold/labels/hurricane-florence_00000238",
"raw/hold/labels/hurricane-florence_00000239",
"raw/hold/labels/hurricane-florence_00000241",
"raw/hold/labels/hurricane-florence_00000243",
"raw/hold/labels/hurricane-florence_00000246",
"raw/hold/labels/hurricane-florence_00000248",
"raw/hold/labels/hurricane-florence_00000250",
"raw/hold/labels/hurricane-florence_00000254",
"raw/hold/labels/hurricane-florence_00000257",
"raw/hold/labels/hurricane-florence_00000270",
"raw/hold/labels/hurricane-florence_00000280",
"raw/hold/labels/hurricane-florence_00000281",
"raw/hold/labels/hurricane-florence_00000283",
"raw/hold/labels/hurricane-florence_00000287",
"raw/hold/labels/hurricane-florence_00000295",
"raw/hold/labels/hurricane-florence_00000299",
"raw/hold/labels/hurricane-florence_00000305",
"raw/hold/labels/hurricane-florence_00000311",
"raw/hold/labels/hurricane-florence_00000322",
"raw/hold/labels/hurricane-florence_00000327",
"raw/hold/labels/hurricane-florence_00000339",
"raw/hold/labels/hurricane-florence_00000348",
"raw/hold/labels/hurricane-florence_00000352",
"raw/hold/labels/hurricane-florence_00000354",
"raw/hold/labels/hurricane-florence_00000358",
"raw/hold/labels/hurricane-florence_00000367",
"raw/hold/labels/hurricane-florence_00000385",
"raw/hold/labels/hurricane-florence_00000391",
"raw/hold/labels/hurricane-florence_00000402",
"raw/hold/labels/hurricane-florence_00000412",
"raw/hold/labels/hurricane-florence_00000429",
"raw/hold/labels/hurricane-florence_00000432",
"raw/hold/labels/hurricane-florence_00000439",
"raw/hold/labels/hurricane-florence_00000440",
"raw/hold/labels/hurricane-florence_00000447",
"raw/hold/labels/hurricane-florence_00000458",
"raw/hold/labels/hurricane-florence_00000463",
"raw/hold/labels/hurricane-florence_00000465",
"raw/hold/labels/hurricane-florence_00000479",
"raw/hold/labels/hurricane-florence_00000487",
"raw/hold/labels/hurricane-florence_00000489",
"raw/hold/labels/hurricane-florence_00000495",
"raw/hold/labels/hurricane-florence_00000502",
"raw/hold/labels/hurricane-florence_00000505",
"raw/hold/labels/hurricane-florence_00000511",
"raw/hold/labels/hurricane-florence_00000518",
"raw/hold/labels/hurricane-florence_00000520",
"raw/hold/labels/hurricane-florence_00000521",
"raw/hold/labels/hurricane-florence_00000524",
"raw/hold/labels/hurricane-florence_00000532",
"raw/hold/labels/hurricane-florence_00000534",
"raw/test/labels/hurricane-florence_00000004",
"raw/test/labels/hurricane-florence_00000005",
"raw/test/labels/hurricane-florence_00000019",
"raw/test/labels/hurricane-florence_00000029",
"raw/test/labels/hurricane-florence_00000039",
"raw/test/labels/hurricane-florence_00000046",
"raw/test/labels/hurricane-florence_00000056",
"raw/test/labels/hurricane-florence_00000076",
"raw/test/labels/hurricane-florence_00000077",
"raw/test/labels/hurricane-florence_00000082",
"raw/test/labels/hurricane-florence_00000092",
"raw/test/labels/hurricane-florence_00000095",
"raw/test/labels/hurricane-florence_00000113",
"raw/test/labels/hurricane-florence_00000116",
"raw/test/labels/hurricane-florence_00000117",
"raw/test/labels/hurricane-florence_00000119",
"raw/test/labels/hurricane-florence_00000125",
"raw/test/labels/hurricane-florence_00000127",
"raw/test/labels/hurricane-florence_00000128",
"raw/test/labels/hurricane-florence_00000129",
"raw/test/labels/hurricane-florence_00000131",
"raw/test/labels/hurricane-florence_00000133",
"raw/test/labels/hurricane-florence_00000135",
"raw/test/labels/hurricane-florence_00000141",
"raw/test/labels/hurricane-florence_00000150",
"raw/test/labels/hurricane-florence_00000160",
"raw/test/labels/hurricane-florence_00000167",
"raw/test/labels/hurricane-florence_00000169",
"raw/test/labels/hurricane-florence_00000171",
"raw/test/labels/hurricane-florence_00000172",
"raw/test/labels/hurricane-florence_00000173",
"raw/test/labels/hurricane-florence_00000177",
"raw/test/labels/hurricane-florence_00000179",
"raw/test/labels/hurricane-florence_00000184",
"raw/test/labels/hurricane-florence_00000186",
"raw/test/labels/hurricane-florence_00000187",
"raw/test/labels/hurricane-florence_00000196",
"raw/test/labels/hurricane-florence_00000200",
"raw/test/labels/hurricane-florence_00000204",
"raw/test/labels/hurricane-florence_00000208",
"raw/test/labels/hurricane-florence_00000211",
"raw/test/labels/hurricane-florence_00000215",
"raw/test/labels/hurricane-florence_00000225",
"raw/test/labels/hurricane-florence_00000228",
"raw/test/labels/hurricane-florence_00000235",
"raw/test/labels/hurricane-florence_00000240",
"raw/test/labels/hurricane-florence_00000249",
"raw/test/labels/hurricane-florence_00000253",
"raw/test/labels/hurricane-florence_00000262",
"raw/test/labels/hurricane-florence_00000265",
"raw/test/labels/hurricane-florence_00000267",
"raw/test/labels/hurricane-florence_00000276",
"raw/test/labels/hurricane-florence_00000288",
"raw/test/labels/hurricane-florence_00000292",
"raw/test/labels/hurricane-florence_00000294",
"raw/test/labels/hurricane-florence_00000301",
"raw/test/labels/hurricane-florence_00000307",
"raw/test/labels/hurricane-florence_00000318",
"raw/test/labels/hurricane-florence_00000321",
"raw/test/labels/hurricane-florence_00000326",
"raw/test/labels/hurricane-florence_00000342",
"raw/test/labels/hurricane-florence_00000343",
"raw/test/labels/hurricane-florence_00000364",
"raw/test/labels/hurricane-florence_00000377",
"raw/test/labels/hurricane-florence_00000378",
"raw/test/labels/hurricane-florence_00000384",
"raw/test/labels/hurricane-florence_00000386",
"raw/test/labels/hurricane-florence_00000396",
"raw/test/labels/hurricane-florence_00000400",
"raw/test/labels/hurricane-florence_00000417",
"raw/test/labels/hurricane-florence_00000421",
"raw/test/labels/hurricane-florence_00000434",
"raw/test/labels/hurricane-florence_00000456",
"raw/test/labels/hurricane-florence_00000466",
"raw/test/labels/hurricane-florence_00000468",
"raw/test/labels/hurricane-florence_00000471",
"raw/test/labels/hurricane-florence_00000480",
"raw/test/labels/hurricane-florence_00000483",
"raw/test/labels/hurricane-florence_00000507",
"raw/test/labels/hurricane-florence_00000519",
"raw/test/labels/hurricane-florence_00000525",
"raw/test/labels/hurricane-florence_00000530",
"raw/test/labels/hurricane-florence_00000541",
"raw/test/labels/hurricane-florence_00000544",
"raw/train/labels/hurricane-florence_00000000",
"raw/train/labels/hurricane-florence_00000003",
"raw/train/labels/hurricane-florence_00000008",
"raw/train/labels/hurricane-florence_00000012",
"raw/train/labels/hurricane-florence_00000015",
"raw/train/labels/hurricane-florence_00000016",
"raw/train/labels/hurricane-florence_00000018",
"raw/train/labels/hurricane-florence_00000020",
"raw/train/labels/hurricane-florence_00000022",
"raw/train/labels/hurricane-florence_00000024",
"raw/train/labels/hurricane-florence_00000027",
"raw/train/labels/hurricane-florence_00000028",
"raw/train/labels/hurricane-florence_00000030",
"raw/train/labels/hurricane-florence_00000031",
"raw/train/labels/hurricane-florence_00000032",
"raw/train/labels/hurricane-florence_00000036",
"raw/train/labels/hurricane-florence_00000042",
"raw/train/labels/hurricane-florence_00000044",
"raw/train/labels/hurricane-florence_00000045",
"raw/train/labels/hurricane-florence_00000048",
"raw/train/labels/hurricane-florence_00000049",
"raw/train/labels/hurricane-florence_00000051",
"raw/train/labels/hurricane-florence_00000053",
"raw/train/labels/hurricane-florence_00000054",
"raw/train/labels/hurricane-florence_00000055",
"raw/train/labels/hurricane-florence_00000057",
"raw/train/labels/hurricane-florence_00000060",
"raw/train/labels/hurricane-florence_00000061",
"raw/train/labels/hurricane-florence_00000063",
"raw/train/labels/hurricane-florence_00000064",
"raw/train/labels/hurricane-florence_00000065",
"raw/train/labels/hurricane-florence_00000066",
"raw/train/labels/hurricane-florence_00000067",
"raw/train/labels/hurricane-florence_00000069",
"raw/train/labels/hurricane-florence_00000070",
"raw/train/labels/hurricane-florence_00000072",
"raw/train/labels/hurricane-florence_00000073",
"raw/train/labels/hurricane-florence_00000075",
"raw/train/labels/hurricane-florence_00000080",
"raw/train/labels/hurricane-florence_00000085",
"raw/train/labels/hurricane-florence_00000086",
"raw/train/labels/hurricane-florence_00000088",
"raw/train/labels/hurricane-florence_00000091",
"raw/train/labels/hurricane-florence_00000093",
"raw/train/labels/hurricane-florence_00000096",
"raw/train/labels/hurricane-florence_00000099",
"raw/train/labels/hurricane-florence_00000100",
"raw/train/labels/hurricane-florence_00000101",
"raw/train/labels/hurricane-florence_00000102",
"raw/train/labels/hurricane-florence_00000103",
"raw/train/labels/hurricane-florence_00000104",
"raw/train/labels/hurricane-florence_00000106",
"raw/train/labels/hurricane-florence_00000110",
"raw/train/labels/hurricane-florence_00000111",
"raw/train/labels/hurricane-florence_00000114",
"raw/train/labels/hurricane-florence_00000115",
"raw/train/labels/hurricane-florence_00000118",
"raw/train/labels/hurricane-florence_00000120",
"raw/train/labels/hurricane-florence_00000122",
"raw/train/labels/hurricane-florence_00000132",
"raw/train/labels/hurricane-florence_00000136",
"raw/train/labels/hurricane-florence_00000138",
"raw/train/labels/hurricane-florence_00000139",
"raw/train/labels/hurricane-florence_00000140",
"raw/train/labels/hurricane-florence_00000142",
"raw/train/labels/hurricane-florence_00000144",
"raw/train/labels/hurricane-florence_00000147",
"raw/train/labels/hurricane-florence_00000148",
"raw/train/labels/hurricane-florence_00000149",
"raw/train/labels/hurricane-florence_00000156",
"raw/train/labels/hurricane-florence_00000158",
"raw/train/labels/hurricane-florence_00000159",
"raw/train/labels/hurricane-florence_00000163",
"raw/train/labels/hurricane-florence_00000164",
"raw/train/labels/hurricane-florence_00000165",
"raw/train/labels/hurricane-florence_00000166",
"raw/train/labels/hurricane-florence_00000168",
"raw/train/labels/hurricane-florence_00000174",
"raw/train/labels/hurricane-florence_00000180",
"raw/train/labels/hurricane-florence_00000181",
"raw/train/labels/hurricane-florence_00000183",
"raw/train/labels/hurricane-florence_00000185",
"raw/train/labels/hurricane-florence_00000188",
"raw/train/labels/hurricane-florence_00000189",
"raw/train/labels/hurricane-florence_00000190",
"raw/train/labels/hurricane-florence_00000191",
"raw/train/labels/hurricane-florence_00000192",
"raw/train/labels/hurricane-florence_00000193",
"raw/train/labels/hurricane-florence_00000194",
"raw/train/labels/hurricane-florence_00000195",
"raw/train/labels/hurricane-florence_00000199",
"raw/train/labels/hurricane-florence_00000203",
"raw/train/labels/hurricane-florence_00000212",
"raw/train/labels/hurricane-florence_00000216",
"raw/train/labels/hurricane-florence_00000217",
"raw/train/labels/hurricane-florence_00000218",
"raw/train/labels/hurricane-florence_00000219",
"raw/train/labels/hurricane-florence_00000221",
"raw/train/labels/hurricane-florence_00000224",
"raw/train/labels/hurricane-florence_00000226",
"raw/train/labels/hurricane-florence_00000229",
"raw/train/labels/hurricane-florence_00000237",
"raw/train/labels/hurricane-florence_00000242",
"raw/train/labels/hurricane-florence_00000244",
"raw/train/labels/hurricane-florence_00000247",
"raw/train/labels/hurricane-florence_00000251",
"raw/train/labels/hurricane-florence_00000252",
"raw/train/labels/hurricane-florence_00000255",
"raw/train/labels/hurricane-florence_00000256",
"raw/train/labels/hurricane-florence_00000259",
"raw/train/labels/hurricane-florence_00000260",
"raw/train/labels/hurricane-florence_00000264",
"raw/train/labels/hurricane-florence_00000266",
"raw/train/labels/hurricane-florence_00000269",
"raw/train/labels/hurricane-florence_00000272",
"raw/train/labels/hurricane-florence_00000273",
"raw/train/labels/hurricane-florence_00000274",
"raw/train/labels/hurricane-florence_00000275",
"raw/train/labels/hurricane-florence_00000278",
"raw/train/labels/hurricane-florence_00000279",
"raw/train/labels/hurricane-florence_00000282",
"raw/train/labels/hurricane-florence_00000284",
"raw/train/labels/hurricane-florence_00000285",
"raw/train/labels/hurricane-florence_00000290",
"raw/train/labels/hurricane-florence_00000293",
"raw/train/labels/hurricane-florence_00000296",
"raw/train/labels/hurricane-florence_00000297",
"raw/train/labels/hurricane-florence_00000298",
"raw/train/labels/hurricane-florence_00000300",
"raw/train/labels/hurricane-florence_00000302",
"raw/train/labels/hurricane-florence_00000304",
"raw/train/labels/hurricane-florence_00000306",
"raw/train/labels/hurricane-florence_00000309",
"raw/train/labels/hurricane-florence_00000310",
"raw/train/labels/hurricane-florence_00000312",
"raw/train/labels/hurricane-florence_00000313",
"raw/train/labels/hurricane-florence_00000314",
"raw/train/labels/hurricane-florence_00000319",
"raw/train/labels/hurricane-florence_00000324",
"raw/train/labels/hurricane-florence_00000328",
"raw/train/labels/hurricane-florence_00000330",
"raw/train/labels/hurricane-florence_00000331",
"raw/train/labels/hurricane-florence_00000332",
"raw/train/labels/hurricane-florence_00000333",
"raw/train/labels/hurricane-florence_00000334",
"raw/train/labels/hurricane-florence_00000335",
"raw/train/labels/hurricane-florence_00000336",
"raw/train/labels/hurricane-florence_00000337",
"raw/train/labels/hurricane-florence_00000338",
"raw/train/labels/hurricane-florence_00000344",
"raw/train/labels/hurricane-florence_00000345",
"raw/train/labels/hurricane-florence_00000346",
"raw/train/labels/hurricane-florence_00000349",
"raw/train/labels/hurricane-florence_00000350",
"raw/train/labels/hurricane-florence_00000353",
"raw/train/labels/hurricane-florence_00000356",
"raw/train/labels/hurricane-florence_00000357",
"raw/train/labels/hurricane-florence_00000359",
"raw/train/labels/hurricane-florence_00000360",
"raw/train/labels/hurricane-florence_00000361",
"raw/train/labels/hurricane-florence_00000362",
"raw/train/labels/hurricane-florence_00000365",
"raw/train/labels/hurricane-florence_00000368",
"raw/train/labels/hurricane-florence_00000369",
"raw/train/labels/hurricane-florence_00000370",
"raw/train/labels/hurricane-florence_00000371",
"raw/train/labels/hurricane-florence_00000372",
"raw/train/labels/hurricane-florence_00000374",
"raw/train/labels/hurricane-florence_00000376",
"raw/train/labels/hurricane-florence_00000379",
"raw/train/labels/hurricane-florence_00000381",
"raw/train/labels/hurricane-florence_00000382",
"raw/train/labels/hurricane-florence_00000387",
"raw/train/labels/hurricane-florence_00000388",
"raw/train/labels/hurricane-florence_00000389",
"raw/train/labels/hurricane-florence_00000392",
"raw/train/labels/hurricane-florence_00000393",
"raw/train/labels/hurricane-florence_00000394",
"raw/train/labels/hurricane-florence_00000395",
"raw/train/labels/hurricane-florence_00000397",
"raw/train/labels/hurricane-florence_00000398",
"raw/train/labels/hurricane-florence_00000399",
"raw/train/labels/hurricane-florence_00000401",
"raw/train/labels/hurricane-florence_00000404",
"raw/train/labels/hurricane-florence_00000405",
"raw/train/labels/hurricane-florence_00000406",
"raw/train/labels/hurricane-florence_00000407",
"raw/train/labels/hurricane-florence_00000408",
"raw/train/labels/hurricane-florence_00000409",
"raw/train/labels/hurricane-florence_00000410",
"raw/train/labels/hurricane-florence_00000411",
"raw/train/labels/hurricane-florence_00000414",
"raw/train/labels/hurricane-florence_00000416",
"raw/train/labels/hurricane-florence_00000418",
"raw/train/labels/hurricane-florence_00000420",
"raw/train/labels/hurricane-florence_00000423",
"raw/train/labels/hurricane-florence_00000424",
"raw/train/labels/hurricane-florence_00000425",
"raw/train/labels/hurricane-florence_00000426",
"raw/train/labels/hurricane-florence_00000427",
"raw/train/labels/hurricane-florence_00000428",
"raw/train/labels/hurricane-florence_00000431",
"raw/train/labels/hurricane-florence_00000433",
"raw/train/labels/hurricane-florence_00000435",
"raw/train/labels/hurricane-florence_00000436",
"raw/train/labels/hurricane-florence_00000438",
"raw/train/labels/hurricane-florence_00000441",
"raw/train/labels/hurricane-florence_00000443",
"raw/train/labels/hurricane-florence_00000451",
"raw/train/labels/hurricane-florence_00000452",
"raw/train/labels/hurricane-florence_00000453",
"raw/train/labels/hurricane-florence_00000454",
"raw/train/labels/hurricane-florence_00000455",
"raw/train/labels/hurricane-florence_00000457",
"raw/train/labels/hurricane-florence_00000459",
"raw/train/labels/hurricane-florence_00000460",
"raw/train/labels/hurricane-florence_00000462",
"raw/train/labels/hurricane-florence_00000464",
"raw/train/labels/hurricane-florence_00000467",
"raw/train/labels/hurricane-florence_00000470",
"raw/train/labels/hurricane-florence_00000472",
"raw/train/labels/hurricane-florence_00000473",
"raw/train/labels/hurricane-florence_00000474",
"raw/train/labels/hurricane-florence_00000475",
"raw/train/labels/hurricane-florence_00000477",
"raw/train/labels/hurricane-florence_00000478",
"raw/train/labels/hurricane-florence_00000482",
"raw/train/labels/hurricane-florence_00000484",
"raw/train/labels/hurricane-florence_00000485",
"raw/train/labels/hurricane-florence_00000486",
"raw/train/labels/hurricane-florence_00000490",
"raw/train/labels/hurricane-florence_00000492",
"raw/train/labels/hurricane-florence_00000493",
"raw/train/labels/hurricane-florence_00000494",
"raw/train/labels/hurricane-florence_00000496",
"raw/train/labels/hurricane-florence_00000497",
"raw/train/labels/hurricane-florence_00000498",
"raw/train/labels/hurricane-florence_00000500",
"raw/train/labels/hurricane-florence_00000501",
"raw/train/labels/hurricane-florence_00000504",
"raw/train/labels/hurricane-florence_00000506",
"raw/train/labels/hurricane-florence_00000510",
"raw/train/labels/hurricane-florence_00000512",
"raw/train/labels/hurricane-florence_00000513",
"raw/train/labels/hurricane-florence_00000514",
"raw/train/labels/hurricane-florence_00000515",
"raw/train/labels/hurricane-florence_00000516",
"raw/train/labels/hurricane-florence_00000517",
"raw/train/labels/hurricane-florence_00000527",
"raw/train/labels/hurricane-florence_00000529",
"raw/train/labels/hurricane-florence_00000531",
"raw/train/labels/hurricane-florence_00000533",
"raw/train/labels/hurricane-florence_00000536",
"raw/train/labels/hurricane-florence_00000538",
"raw/train/labels/hurricane-florence_00000540",
"raw/train/labels/hurricane-florence_00000542",
"raw/train/labels/hurricane-florence_00000545"
],
"val": [
"raw/hold/labels/hurricane-florence_00000041",
"raw/hold/labels/hurricane-florence_00000074",
"raw/hold/labels/hurricane-florence_00000155",
"raw/hold/labels/hurricane-florence_00000157",
"raw/hold/labels/hurricane-florence_00000291",
"raw/hold/labels/hurricane-florence_00000383",
"raw/hold/labels/hurricane-florence_00000499",
"raw/hold/labels/hurricane-florence_00000539",
"raw/test/labels/hurricane-florence_00000013",
"raw/test/labels/hurricane-florence_00000087",
"raw/test/labels/hurricane-florence_00000112",
"raw/test/labels/hurricane-florence_00000145",
"raw/test/labels/hurricane-florence_00000152",
"raw/test/labels/hurricane-florence_00000176",
"raw/test/labels/hurricane-florence_00000182",
"raw/test/labels/hurricane-florence_00000286",
"raw/test/labels/hurricane-florence_00000317",
"raw/test/labels/hurricane-florence_00000323",
"raw/test/labels/hurricane-florence_00000363",
"raw/test/labels/hurricane-florence_00000375",
"raw/test/labels/hurricane-florence_00000488",
"raw/test/labels/hurricane-florence_00000491",
"raw/test/labels/hurricane-florence_00000509",
"raw/test/labels/hurricane-florence_00000535",
"raw/train/labels/hurricane-florence_00000023",
"raw/train/labels/hurricane-florence_00000037",
"raw/train/labels/hurricane-florence_00000043",
"raw/train/labels/hurricane-florence_00000058",
"raw/train/labels/hurricane-florence_00000062",
"raw/train/labels/hurricane-florence_00000078",
"raw/train/labels/hurricane-florence_00000083",
"raw/train/labels/hurricane-florence_00000123",
"raw/train/labels/hurricane-florence_00000126",
"raw/train/labels/hurricane-florence_00000146",
"raw/train/labels/hurricane-florence_00000151",
"raw/train/labels/hurricane-florence_00000153",
"raw/train/labels/hurricane-florence_00000222",
"raw/train/labels/hurricane-florence_00000233",
"raw/train/labels/hurricane-florence_00000263",
"raw/train/labels/hurricane-florence_00000277",
"raw/train/labels/hurricane-florence_00000303",
"raw/train/labels/hurricane-florence_00000315",
"raw/train/labels/hurricane-florence_00000316",
"raw/train/labels/hurricane-florence_00000329",
"raw/train/labels/hurricane-florence_00000347",
"raw/train/labels/hurricane-florence_00000355",
"raw/train/labels/hurricane-florence_00000437",
"raw/train/labels/hurricane-florence_00000442",
"raw/train/labels/hurricane-florence_00000444",
"raw/train/labels/hurricane-florence_00000450",
"raw/train/labels/hurricane-florence_00000461",
"raw/train/labels/hurricane-florence_00000481",
"raw/train/labels/hurricane-florence_00000503",
"raw/train/labels/hurricane-florence_00000508",
"raw/train/labels/hurricane-florence_00000537"
],
"test": [
"raw/hold/labels/hurricane-florence_00000006",
"raw/hold/labels/hurricane-florence_00000089",
"raw/hold/labels/hurricane-florence_00000097",
"raw/hold/labels/hurricane-florence_00000124",
"raw/hold/labels/hurricane-florence_00000202",
"raw/hold/labels/hurricane-florence_00000214",
"raw/hold/labels/hurricane-florence_00000234",
"raw/hold/labels/hurricane-florence_00000258",
"raw/hold/labels/hurricane-florence_00000261",
"raw/hold/labels/hurricane-florence_00000271",
"raw/hold/labels/hurricane-florence_00000351",
"raw/hold/labels/hurricane-florence_00000373",
"raw/hold/labels/hurricane-florence_00000413",
"raw/hold/labels/hurricane-florence_00000422",
"raw/hold/labels/hurricane-florence_00000430",
"raw/test/labels/hurricane-florence_00000007",
"raw/test/labels/hurricane-florence_00000143",
"raw/test/labels/hurricane-florence_00000197",
"raw/test/labels/hurricane-florence_00000268",
"raw/test/labels/hurricane-florence_00000415",
"raw/test/labels/hurricane-florence_00000448",
"raw/test/labels/hurricane-florence_00000528",
"raw/test/labels/hurricane-florence_00000543",
"raw/train/labels/hurricane-florence_00000001",
"raw/train/labels/hurricane-florence_00000002",
"raw/train/labels/hurricane-florence_00000026",
"raw/train/labels/hurricane-florence_00000059",
"raw/train/labels/hurricane-florence_00000079",
"raw/train/labels/hurricane-florence_00000084",
"raw/train/labels/hurricane-florence_00000094",
"raw/train/labels/hurricane-florence_00000178",
"raw/train/labels/hurricane-florence_00000210",
"raw/train/labels/hurricane-florence_00000231",
"raw/train/labels/hurricane-florence_00000232",
"raw/train/labels/hurricane-florence_00000245",
"raw/train/labels/hurricane-florence_00000289",
"raw/train/labels/hurricane-florence_00000308",
"raw/train/labels/hurricane-florence_00000320",
"raw/train/labels/hurricane-florence_00000325",
"raw/train/labels/hurricane-florence_00000340",
"raw/train/labels/hurricane-florence_00000341",
"raw/train/labels/hurricane-florence_00000366",
"raw/train/labels/hurricane-florence_00000380",
"raw/train/labels/hurricane-florence_00000390",
"raw/train/labels/hurricane-florence_00000403",
"raw/train/labels/hurricane-florence_00000419",
"raw/train/labels/hurricane-florence_00000445",
"raw/train/labels/hurricane-florence_00000446",
"raw/train/labels/hurricane-florence_00000449",
"raw/train/labels/hurricane-florence_00000469",
"raw/train/labels/hurricane-florence_00000476",
"raw/train/labels/hurricane-florence_00000522",
"raw/train/labels/hurricane-florence_00000523",
"raw/train/labels/hurricane-florence_00000526"
]
},
"hurricane-harvey": {
"train": [
"raw/hold/labels/hurricane-harvey_00000004",
"raw/hold/labels/hurricane-harvey_00000013",
"raw/hold/labels/hurricane-harvey_00000014",
"raw/hold/labels/hurricane-harvey_00000021",
"raw/hold/labels/hurricane-harvey_00000027",
"raw/hold/labels/hurricane-harvey_00000031",
"raw/hold/labels/hurricane-harvey_00000034",
"raw/hold/labels/hurricane-harvey_00000038",
"raw/hold/labels/hurricane-harvey_00000050",
"raw/hold/labels/hurricane-harvey_00000065",
"raw/hold/labels/hurricane-harvey_00000067",
"raw/hold/labels/hurricane-harvey_00000074",
"raw/hold/labels/hurricane-harvey_00000083",
"raw/hold/labels/hurricane-harvey_00000086",
"raw/hold/labels/hurricane-harvey_00000087",
"raw/hold/labels/hurricane-harvey_00000095",
"raw/hold/labels/hurricane-harvey_00000102",
"raw/hold/labels/hurricane-harvey_00000110",
"raw/hold/labels/hurricane-harvey_00000117",
"raw/hold/labels/hurricane-harvey_00000121",
"raw/hold/labels/hurricane-harvey_00000124",
"raw/hold/labels/hurricane-harvey_00000125",
"raw/hold/labels/hurricane-harvey_00000140",
"raw/hold/labels/hurricane-harvey_00000148",
"raw/hold/labels/hurricane-harvey_00000149",
"raw/hold/labels/hurricane-harvey_00000175",
"raw/hold/labels/hurricane-harvey_00000181",
"raw/hold/labels/hurricane-harvey_00000183",
"raw/hold/labels/hurricane-harvey_00000184",
"raw/hold/labels/hurricane-harvey_00000188",
"raw/hold/labels/hurricane-harvey_00000190",
"raw/hold/labels/hurricane-harvey_00000193",
"raw/hold/labels/hurricane-harvey_00000215",
"raw/hold/labels/hurricane-harvey_00000219",
"raw/hold/labels/hurricane-harvey_00000229",
"raw/hold/labels/hurricane-harvey_00000234",
"raw/hold/labels/hurricane-harvey_00000236",
"raw/hold/labels/hurricane-harvey_00000240",
"raw/hold/labels/hurricane-harvey_00000247",
"raw/hold/labels/hurricane-harvey_00000256",
"raw/hold/labels/hurricane-harvey_00000263",
"raw/hold/labels/hurricane-harvey_00000279",
"raw/hold/labels/hurricane-harvey_00000282",
"raw/hold/labels/hurricane-harvey_00000293",
"raw/hold/labels/hurricane-harvey_00000295",
"raw/hold/labels/hurricane-harvey_00000296",
"raw/hold/labels/hurricane-harvey_00000306",
"raw/hold/labels/hurricane-harvey_00000311",
"raw/hold/labels/hurricane-harvey_00000321",
"raw/hold/labels/hurricane-harvey_00000322",
"raw/hold/labels/hurricane-harvey_00000334",
"raw/hold/labels/hurricane-harvey_00000343",
"raw/hold/labels/hurricane-harvey_00000352",
"raw/hold/labels/hurricane-harvey_00000359",
"raw/hold/labels/hurricane-harvey_00000362",
"raw/hold/labels/hurricane-harvey_00000363",
"raw/hold/labels/hurricane-harvey_00000371",
"raw/hold/labels/hurricane-harvey_00000372",
"raw/hold/labels/hurricane-harvey_00000376",
"raw/hold/labels/hurricane-harvey_00000383",
"raw/hold/labels/hurricane-harvey_00000385",
"raw/hold/labels/hurricane-harvey_00000386",
"raw/hold/labels/hurricane-harvey_00000399",
"raw/hold/labels/hurricane-harvey_00000404",
"raw/hold/labels/hurricane-harvey_00000405",
"raw/hold/labels/hurricane-harvey_00000409",
"raw/hold/labels/hurricane-harvey_00000414",
"raw/hold/labels/hurricane-harvey_00000417",
"raw/hold/labels/hurricane-harvey_00000421",
"raw/hold/labels/hurricane-harvey_00000447",
"raw/hold/labels/hurricane-harvey_00000449",
"raw/hold/labels/hurricane-harvey_00000450",
"raw/hold/labels/hurricane-harvey_00000475",
"raw/hold/labels/hurricane-harvey_00000490",
"raw/hold/labels/hurricane-harvey_00000497",
"raw/hold/labels/hurricane-harvey_00000503",
"raw/hold/labels/hurricane-harvey_00000513",
"raw/hold/labels/hurricane-harvey_00000518",
"raw/test/labels/hurricane-harvey_00000003",
"raw/test/labels/hurricane-harvey_00000018",
"raw/test/labels/hurricane-harvey_00000023",
"raw/test/labels/hurricane-harvey_00000033",
"raw/test/labels/hurricane-harvey_00000036",
"raw/test/labels/hurricane-harvey_00000044",
"raw/test/labels/hurricane-harvey_00000058",
"raw/test/labels/hurricane-harvey_00000062",
"raw/test/labels/hurricane-harvey_00000063",
"raw/test/labels/hurricane-harvey_00000064",
"raw/test/labels/hurricane-harvey_00000068",
"raw/test/labels/hurricane-harvey_00000078",
"raw/test/labels/hurricane-harvey_00000093",
"raw/test/labels/hurricane-harvey_00000096",
"raw/test/labels/hurricane-harvey_00000097",
"raw/test/labels/hurricane-harvey_00000103",
"raw/test/labels/hurricane-harvey_00000112",
"raw/test/labels/hurricane-harvey_00000120",
"raw/test/labels/hurricane-harvey_00000122",
"raw/test/labels/hurricane-harvey_00000127",
"raw/test/labels/hurricane-harvey_00000131",
"raw/test/labels/hurricane-harvey_00000135",
"raw/test/labels/hurricane-harvey_00000143",
"raw/test/labels/hurricane-harvey_00000150",
"raw/test/labels/hurricane-harvey_00000161",
"raw/test/labels/hurricane-harvey_00000163",
"raw/test/labels/hurricane-harvey_00000164",
"raw/test/labels/hurricane-harvey_00000166",
"raw/test/labels/hurricane-harvey_00000173",
"raw/test/labels/hurricane-harvey_00000179",
"raw/test/labels/hurricane-harvey_00000182",
"raw/test/labels/hurricane-harvey_00000185",
"raw/test/labels/hurricane-harvey_00000186",
"raw/test/labels/hurricane-harvey_00000191",
"raw/test/labels/hurricane-harvey_00000192",
"raw/test/labels/hurricane-harvey_00000202",
"raw/test/labels/hurricane-harvey_00000211",
"raw/test/labels/hurricane-harvey_00000223",
"raw/test/labels/hurricane-harvey_00000227",
"raw/test/labels/hurricane-harvey_00000230",
"raw/test/labels/hurricane-harvey_00000246",
"raw/test/labels/hurricane-harvey_00000254",
"raw/test/labels/hurricane-harvey_00000276",
"raw/test/labels/hurricane-harvey_00000283",
"raw/test/labels/hurricane-harvey_00000287",
"raw/test/labels/hurricane-harvey_00000298",
"raw/test/labels/hurricane-harvey_00000303",
"raw/test/labels/hurricane-harvey_00000304",
"raw/test/labels/hurricane-harvey_00000305",
"raw/test/labels/hurricane-harvey_00000308",
"raw/test/labels/hurricane-harvey_00000310",
"raw/test/labels/hurricane-harvey_00000324",
"raw/test/labels/hurricane-harvey_00000326",
"raw/test/labels/hurricane-harvey_00000328",
"raw/test/labels/hurricane-harvey_00000331",
"raw/test/labels/hurricane-harvey_00000340",
"raw/test/labels/hurricane-harvey_00000341",
"raw/test/labels/hurricane-harvey_00000342",
"raw/test/labels/hurricane-harvey_00000353",
"raw/test/labels/hurricane-harvey_00000355",
"raw/test/labels/hurricane-harvey_00000360",
"raw/test/labels/hurricane-harvey_00000364",
"raw/test/labels/hurricane-harvey_00000368",
"raw/test/labels/hurricane-harvey_00000370",
"raw/test/labels/hurricane-harvey_00000377",
"raw/test/labels/hurricane-harvey_00000390",
"raw/test/labels/hurricane-harvey_00000407",
"raw/test/labels/hurricane-harvey_00000415",
"raw/test/labels/hurricane-harvey_00000416",
"raw/test/labels/hurricane-harvey_00000424",
"raw/test/labels/hurricane-harvey_00000441",
"raw/test/labels/hurricane-harvey_00000445",
"raw/test/labels/hurricane-harvey_00000453",
"raw/test/labels/hurricane-harvey_00000458",
"raw/test/labels/hurricane-harvey_00000460",
"raw/test/labels/hurricane-harvey_00000465",
"raw/test/labels/hurricane-harvey_00000466",
"raw/test/labels/hurricane-harvey_00000468",
"raw/test/labels/hurricane-harvey_00000483",
"raw/test/labels/hurricane-harvey_00000485",
"raw/test/labels/hurricane-harvey_00000504",
"raw/test/labels/hurricane-harvey_00000510",
"raw/test/labels/hurricane-harvey_00000516",
"raw/train/labels/hurricane-harvey_00000000",
"raw/train/labels/hurricane-harvey_00000002",
"raw/train/labels/hurricane-harvey_00000007",
"raw/train/labels/hurricane-harvey_00000009",
"raw/train/labels/hurricane-harvey_00000010",
"raw/train/labels/hurricane-harvey_00000012",
"raw/train/labels/hurricane-harvey_00000016",
"raw/train/labels/hurricane-harvey_00000017",
"raw/train/labels/hurricane-harvey_00000019",
"raw/train/labels/hurricane-harvey_00000020",
"raw/train/labels/hurricane-harvey_00000022",
"raw/train/labels/hurricane-harvey_00000024",
"raw/train/labels/hurricane-harvey_00000026",
"raw/train/labels/hurricane-harvey_00000029",
"raw/train/labels/hurricane-harvey_00000030",
"raw/train/labels/hurricane-harvey_00000035",
"raw/train/labels/hurricane-harvey_00000039",
"raw/train/labels/hurricane-harvey_00000040",
"raw/train/labels/hurricane-harvey_00000041",
"raw/train/labels/hurricane-harvey_00000042",
"raw/train/labels/hurricane-harvey_00000045",
"raw/train/labels/hurricane-harvey_00000046",
"raw/train/labels/hurricane-harvey_00000048",
"raw/train/labels/hurricane-harvey_00000049",
"raw/train/labels/hurricane-harvey_00000051",
"raw/train/labels/hurricane-harvey_00000053",
"raw/train/labels/hurricane-harvey_00000054",
"raw/train/labels/hurricane-harvey_00000055",
"raw/train/labels/hurricane-harvey_00000059",
"raw/train/labels/hurricane-harvey_00000060",
"raw/train/labels/hurricane-harvey_00000061",
"raw/train/labels/hurricane-harvey_00000066",
"raw/train/labels/hurricane-harvey_00000069",
"raw/train/labels/hurricane-harvey_00000070",
"raw/train/labels/hurricane-harvey_00000072",
"raw/train/labels/hurricane-harvey_00000075",
"raw/train/labels/hurricane-harvey_00000077",
"raw/train/labels/hurricane-harvey_00000079",
"raw/train/labels/hurricane-harvey_00000080",
"raw/train/labels/hurricane-harvey_00000081",
"raw/train/labels/hurricane-harvey_00000082",
"raw/train/labels/hurricane-harvey_00000084",
"raw/train/labels/hurricane-harvey_00000085",
"raw/train/labels/hurricane-harvey_00000088",
"raw/train/labels/hurricane-harvey_00000089",
"raw/train/labels/hurricane-harvey_00000090",
"raw/train/labels/hurricane-harvey_00000091",
"raw/train/labels/hurricane-harvey_00000092",
"raw/train/labels/hurricane-harvey_00000098",
"raw/train/labels/hurricane-harvey_00000099",
"raw/train/labels/hurricane-harvey_00000100",
"raw/train/labels/hurricane-harvey_00000101",
"raw/train/labels/hurricane-harvey_00000108",
"raw/train/labels/hurricane-harvey_00000109",
"raw/train/labels/hurricane-harvey_00000111",
"raw/train/labels/hurricane-harvey_00000113",
"raw/train/labels/hurricane-harvey_00000114",
"raw/train/labels/hurricane-harvey_00000115",
"raw/train/labels/hurricane-harvey_00000116",
"raw/train/labels/hurricane-harvey_00000118",
"raw/train/labels/hurricane-harvey_00000119",
"raw/train/labels/hurricane-harvey_00000123",
"raw/train/labels/hurricane-harvey_00000126",
"raw/train/labels/hurricane-harvey_00000128",
"raw/train/labels/hurricane-harvey_00000129",
"raw/train/labels/hurricane-harvey_00000130",
"raw/train/labels/hurricane-harvey_00000132",
"raw/train/labels/hurricane-harvey_00000136",
"raw/train/labels/hurricane-harvey_00000137",
"raw/train/labels/hurricane-harvey_00000138",
"raw/train/labels/hurricane-harvey_00000141",
"raw/train/labels/hurricane-harvey_00000142",
"raw/train/labels/hurricane-harvey_00000144",
"raw/train/labels/hurricane-harvey_00000145",
"raw/train/labels/hurricane-harvey_00000146",
"raw/train/labels/hurricane-harvey_00000147",
"raw/train/labels/hurricane-harvey_00000151",
"raw/train/labels/hurricane-harvey_00000152",
"raw/train/labels/hurricane-harvey_00000154",
"raw/train/labels/hurricane-harvey_00000157",
"raw/train/labels/hurricane-harvey_00000158",
"raw/train/labels/hurricane-harvey_00000159",
"raw/train/labels/hurricane-harvey_00000165",
"raw/train/labels/hurricane-harvey_00000167",
"raw/train/labels/hurricane-harvey_00000170",
"raw/train/labels/hurricane-harvey_00000172",
"raw/train/labels/hurricane-harvey_00000174",
"raw/train/labels/hurricane-harvey_00000176",
"raw/train/labels/hurricane-harvey_00000177",
"raw/train/labels/hurricane-harvey_00000180",
"raw/train/labels/hurricane-harvey_00000187",
"raw/train/labels/hurricane-harvey_00000189",
"raw/train/labels/hurricane-harvey_00000194",
"raw/train/labels/hurricane-harvey_00000195",
"raw/train/labels/hurricane-harvey_00000196",
"raw/train/labels/hurricane-harvey_00000197",
"raw/train/labels/hurricane-harvey_00000200",
"raw/train/labels/hurricane-harvey_00000203",
"raw/train/labels/hurricane-harvey_00000204",
"raw/train/labels/hurricane-harvey_00000206",
"raw/train/labels/hurricane-harvey_00000208",
"raw/train/labels/hurricane-harvey_00000210",
"raw/train/labels/hurricane-harvey_00000214",
"raw/train/labels/hurricane-harvey_00000218",
"raw/train/labels/hurricane-harvey_00000220",
"raw/train/labels/hurricane-harvey_00000221",
"raw/train/labels/hurricane-harvey_00000226",
"raw/train/labels/hurricane-harvey_00000228",
"raw/train/labels/hurricane-harvey_00000231",
"raw/train/labels/hurricane-harvey_00000232",
"raw/train/labels/hurricane-harvey_00000233",
"raw/train/labels/hurricane-harvey_00000235",
"raw/train/labels/hurricane-harvey_00000237",
"raw/train/labels/hurricane-harvey_00000238",
"raw/train/labels/hurricane-harvey_00000241",
"raw/train/labels/hurricane-harvey_00000244",
"raw/train/labels/hurricane-harvey_00000245",
"raw/train/labels/hurricane-harvey_00000248",
"raw/train/labels/hurricane-harvey_00000249",
"raw/train/labels/hurricane-harvey_00000251",
"raw/train/labels/hurricane-harvey_00000255",
"raw/train/labels/hurricane-harvey_00000258",
"raw/train/labels/hurricane-harvey_00000261",
"raw/train/labels/hurricane-harvey_00000262",
"raw/train/labels/hurricane-harvey_00000264",
"raw/train/labels/hurricane-harvey_00000265",
"raw/train/labels/hurricane-harvey_00000266",
"raw/train/labels/hurricane-harvey_00000267",
"raw/train/labels/hurricane-harvey_00000268",
"raw/train/labels/hurricane-harvey_00000269",
"raw/train/labels/hurricane-harvey_00000270",
"raw/train/labels/hurricane-harvey_00000272",
"raw/train/labels/hurricane-harvey_00000273",
"raw/train/labels/hurricane-harvey_00000274",
"raw/train/labels/hurricane-harvey_00000275",
"raw/train/labels/hurricane-harvey_00000277",
"raw/train/labels/hurricane-harvey_00000278",
"raw/train/labels/hurricane-harvey_00000280",
"raw/train/labels/hurricane-harvey_00000281",
"raw/train/labels/hurricane-harvey_00000284",
"raw/train/labels/hurricane-harvey_00000285",
"raw/train/labels/hurricane-harvey_00000286",
"raw/train/labels/hurricane-harvey_00000288",
"raw/train/labels/hurricane-harvey_00000289",
"raw/train/labels/hurricane-harvey_00000291",
"raw/train/labels/hurricane-harvey_00000292",
"raw/train/labels/hurricane-harvey_00000299",
"raw/train/labels/hurricane-harvey_00000300",
"raw/train/labels/hurricane-harvey_00000302",
"raw/train/labels/hurricane-harvey_00000307",
"raw/train/labels/hurricane-harvey_00000309",
"raw/train/labels/hurricane-harvey_00000312",
"raw/train/labels/hurricane-harvey_00000313",
"raw/train/labels/hurricane-harvey_00000315",
"raw/train/labels/hurricane-harvey_00000316",
"raw/train/labels/hurricane-harvey_00000317",
"raw/train/labels/hurricane-harvey_00000319",
"raw/train/labels/hurricane-harvey_00000320",
"raw/train/labels/hurricane-harvey_00000323",
"raw/train/labels/hurricane-harvey_00000325",
"raw/train/labels/hurricane-harvey_00000329",
"raw/train/labels/hurricane-harvey_00000330",
"raw/train/labels/hurricane-harvey_00000332",
"raw/train/labels/hurricane-harvey_00000333",
"raw/train/labels/hurricane-harvey_00000335",
"raw/train/labels/hurricane-harvey_00000336",
"raw/train/labels/hurricane-harvey_00000338",
"raw/train/labels/hurricane-harvey_00000344",
"raw/train/labels/hurricane-harvey_00000345",
"raw/train/labels/hurricane-harvey_00000347",
"raw/train/labels/hurricane-harvey_00000348",
"raw/train/labels/hurricane-harvey_00000351",
"raw/train/labels/hurricane-harvey_00000354",
"raw/train/labels/hurricane-harvey_00000356",
"raw/train/labels/hurricane-harvey_00000357",
"raw/train/labels/hurricane-harvey_00000358",
"raw/train/labels/hurricane-harvey_00000361",
"raw/train/labels/hurricane-harvey_00000365",
"raw/train/labels/hurricane-harvey_00000366",
"raw/train/labels/hurricane-harvey_00000367",
"raw/train/labels/hurricane-harvey_00000369",
"raw/train/labels/hurricane-harvey_00000374",
"raw/train/labels/hurricane-harvey_00000375",
"raw/train/labels/hurricane-harvey_00000379",
"raw/train/labels/hurricane-harvey_00000381",
"raw/train/labels/hurricane-harvey_00000382",
"raw/train/labels/hurricane-harvey_00000387",
"raw/train/labels/hurricane-harvey_00000388",
"raw/train/labels/hurricane-harvey_00000389",
"raw/train/labels/hurricane-harvey_00000392",
"raw/train/labels/hurricane-harvey_00000393",
"raw/train/labels/hurricane-harvey_00000397",
"raw/train/labels/hurricane-harvey_00000398",
"raw/train/labels/hurricane-harvey_00000400",
"raw/train/labels/hurricane-harvey_00000402",
"raw/train/labels/hurricane-harvey_00000408",
"raw/train/labels/hurricane-harvey_00000410",
"raw/train/labels/hurricane-harvey_00000411",
"raw/train/labels/hurricane-harvey_00000412",
"raw/train/labels/hurricane-harvey_00000413",
"raw/train/labels/hurricane-harvey_00000422",
"raw/train/labels/hurricane-harvey_00000423",
"raw/train/labels/hurricane-harvey_00000425",
"raw/train/labels/hurricane-harvey_00000426",
"raw/train/labels/hurricane-harvey_00000427",
"raw/train/labels/hurricane-harvey_00000430",
"raw/train/labels/hurricane-harvey_00000431",
"raw/train/labels/hurricane-harvey_00000433",
"raw/train/labels/hurricane-harvey_00000434",
"raw/train/labels/hurricane-harvey_00000435",
"raw/train/labels/hurricane-harvey_00000436",
"raw/train/labels/hurricane-harvey_00000437",
"raw/train/labels/hurricane-harvey_00000438",
"raw/train/labels/hurricane-harvey_00000439",
"raw/train/labels/hurricane-harvey_00000440",
"raw/train/labels/hurricane-harvey_00000442",
"raw/train/labels/hurricane-harvey_00000443",
"raw/train/labels/hurricane-harvey_00000446",
"raw/train/labels/hurricane-harvey_00000448",
"raw/train/labels/hurricane-harvey_00000451",
"raw/train/labels/hurricane-harvey_00000452",
"raw/train/labels/hurricane-harvey_00000454",
"raw/train/labels/hurricane-harvey_00000455",
"raw/train/labels/hurricane-harvey_00000461",
"raw/train/labels/hurricane-harvey_00000462",
"raw/train/labels/hurricane-harvey_00000463",
"raw/train/labels/hurricane-harvey_00000467",
"raw/train/labels/hurricane-harvey_00000469",
"raw/train/labels/hurricane-harvey_00000470",
"raw/train/labels/hurricane-harvey_00000471",
"raw/train/labels/hurricane-harvey_00000472",
"raw/train/labels/hurricane-harvey_00000473",
"raw/train/labels/hurricane-harvey_00000477",
"raw/train/labels/hurricane-harvey_00000478",
"raw/train/labels/hurricane-harvey_00000480",
"raw/train/labels/hurricane-harvey_00000481",
"raw/train/labels/hurricane-harvey_00000488",
"raw/train/labels/hurricane-harvey_00000489",
"raw/train/labels/hurricane-harvey_00000491",
"raw/train/labels/hurricane-harvey_00000492",
"raw/train/labels/hurricane-harvey_00000493",
"raw/train/labels/hurricane-harvey_00000494",
"raw/train/labels/hurricane-harvey_00000495",
"raw/train/labels/hurricane-harvey_00000496",
"raw/train/labels/hurricane-harvey_00000499",
"raw/train/labels/hurricane-harvey_00000500",