Update EMT.py
Browse files
EMT.py
CHANGED
@@ -29,15 +29,15 @@ _TRAIN_ANNOTATION_ARCHIVE_URL = "https://huggingface.co/datasets/KuAvLab/EMT/res
|
|
29 |
_TEST_ANNOTATION_ARCHIVE_URL = "https://huggingface.co/datasets/KuAvLab/EMT/resolve/main/test_annotation.tar.gz"
|
30 |
|
31 |
_GT_OBJECT_CLASSES = {
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
}
|
42 |
|
43 |
class EMT(datasets.GeneratorBasedBuilder):
|
|
|
29 |
_TEST_ANNOTATION_ARCHIVE_URL = "https://huggingface.co/datasets/KuAvLab/EMT/resolve/main/test_annotation.tar.gz"
|
30 |
|
31 |
_GT_OBJECT_CLASSES = {
|
32 |
+
"Pedestrian": 0,
|
33 |
+
"Cyclist" : 1,
|
34 |
+
"Motorbike" : 2,
|
35 |
+
"Small_motorised_vehicle" : 3,
|
36 |
+
"Car" : 4,
|
37 |
+
"Medium_vehicle" : 5,
|
38 |
+
"Large_vehicle" : 6,
|
39 |
+
"Bus" : 7,
|
40 |
+
"Emergency_vehicle" : 8,
|
41 |
}
|
42 |
|
43 |
class EMT(datasets.GeneratorBasedBuilder):
|