-
Notifications
You must be signed in to change notification settings - Fork 21
/
directory_structure.txt
108 lines (107 loc) · 4.22 KB
/
directory_structure.txt
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
.
├── LICENSE
├── README.md
├── apply_l5kit_patch.sh
├── directory_structure.txt
├── download_1st_level_weights.sh
├── ego.py
├── input
│ ├── README.md
│ ├── aerial_map
│ │ ├── LICENSE
│ │ ├── aerial_map.png
│ │ ├── feedback.txt
│ │ └── nearmap_images
│ ├── meta.json
│ ├── multi_mode_sample_submission.csv
│ ├── pre_render_h01248_XXL
│ │ ├── test
│ │ ├── train_XXL
│ │ └── validate
│ ├── scenes
│ │ ├── mask.npz
│ │ ├── sample.zarr
│ │ ├── test.zarr
│ │ ├── train.zarr
│ │ ├── train_XXL.zarr
│ │ └── validate.zarr
│ ├── semantic_map
│ │ ├── LICENSE
│ │ ├── feedback.txt
│ │ └── semantic_map.pb
│ └── single_mode_sample_submission.csv
├── l5kit.patch
├── make_submit
│ ├── dataset-metadata.json
│ ├── kernel-metadata.json
│ ├── kernel_code.py
│ ├── make_submit.py
│ └── submission.csv
├── predict_test_l1.sh
├── prepare_data_test.sh
├── prepare_data_train.sh
├── requirements.txt
├── src
│ ├── 1st_level
│ │ ├── benchmark_datasets.py
│ │ ├── checkpoints
│ │ │ ├── 140_xxl_enet_b5
│ │ │ │ └── 368.pt
│ │ │ ├── 140_xxl_xception41
│ │ │ │ └── 516.pt
│ │ │ ├── 140_xxl_xception41_16modes
│ │ │ │ └── 244.pt
│ │ │ ├── 140_xxl_xception41_bs128
│ │ │ │ └── 524.pt
│ │ │ ├── 140_xxl_xception41_wp
│ │ │ │ └── 518.pt
│ │ │ ├── 140_xxl_xception65
│ │ │ │ └── 368.pt
│ │ │ ├── 140_xxl_xception71
│ │ │ │ └── 370.pt
│ │ │ ├── README.md
│ │ │ └── weights.zip
│ │ ├── common.py
│ │ ├── config.py
│ │ ├── dataset.py
│ │ ├── experiments
│ │ │ ├── 140_xxl_enet_b5.yaml
│ │ │ ├── 140_xxl_xception41.yaml
│ │ │ ├── 140_xxl_xception41_16modes.yaml
│ │ │ ├── 140_xxl_xception41_bs128.yaml
│ │ │ ├── 140_xxl_xception41_wp.yaml
│ │ │ ├── 140_xxl_xception65.yaml
│ │ │ └── 140_xxl_xception71.yaml
│ │ ├── fast_rasteriser.py
│ │ ├── models.py
│ │ ├── models_common.py
│ │ ├── models_reg.py
│ │ ├── predict.py
│ │ ├── prerender_raster.py
│ │ ├── submissions
│ │ │ ├── README.md
│ │ │ ├── multi_mode_sample_submission.csv
│ │ │ ├── sub_140_xxl_enet_b5_368_test.npz
│ │ │ ├── sub_140_xxl_xception41_16modes_244_test.npz
│ │ │ ├── sub_140_xxl_xception41_516_test.npz
│ │ │ ├── sub_140_xxl_xception41_bs128_524_test.npz
│ │ │ ├── sub_140_xxl_xception41_wp_518_test.npz
│ │ │ ├── sub_140_xxl_xception65_368_test.npz
│ │ │ └── sub_140_xxl_xception71_370_test.npz
│ │ ├── train.py
│ │ ├── train_distributed.py
│ │ └── utils.py
│ └── 2nd_level
│ ├── README.md
│ ├── config.py
│ ├── dataset.py
│ ├── engine.py
│ ├── infer.py
│ ├── models.py
│ ├── modules.py
│ ├── submission.csv
│ ├── train.py
│ ├── transformer.bin
│ └── utils.py
└── train.sh
16 directories, 80 files