KuAvLab commited on
Commit
da5f647
·
verified ·
1 Parent(s): 8273acd

Update EMT.py

Browse files
Files changed (1) hide show
  1. EMT.py +9 -9
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
- 0: "Pedestrian",
33
- 1: "Cyclist",
34
- 2: "Motorbike",
35
- 3: "Small_motorised_vehicle",
36
- 4: "Car",
37
- 5: "Medium_vehicle",
38
- 6: "Large_vehicle",
39
- 7: "Bus",
40
- 8: "Emergency_vehicle",
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):