Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

#344 Feature/sg 255 add class for supported strings

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:feature/SG-255-add_class_for_supported_strings
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
  1. COCO_DEFAULT_CLASSES_TUPLES_LIST = [(0, 'background'), (1, 'person'), (2, 'bicycle'), (3, 'car'), (4, 'motorcycle'),
  2. (5, 'airplane'), (6, 'bus'), (7, 'train'), (8, 'truck'), (9, 'boat'),
  3. (10, 'traffic light'),
  4. (11, 'fire hydrant'), (12, 'street sign'), (13, 'stop sign'), (14, 'parking meter'),
  5. (15, 'bench'), (16, 'bird'), (17, 'cat'), (18, 'dog'), (19, 'horse'), (20, 'sheep'),
  6. (21, 'cow'), (22, 'elephant'), (23, 'bear'), (24, 'zebra'), (25, 'giraffe'),
  7. (26, 'hat'),
  8. (27, 'backpack'), (28, 'umbrella'), (29, 'shoe'), (30, 'eye glasses'),
  9. (31, 'handbag'),
  10. (32, 'tie'), (33, 'suitcase'), (34, 'frisbee'), (35, 'skis'), (36, 'snowboard'),
  11. (37, 'sports ball'), (38, 'kite'), (39, 'baseball bat'), (40, 'baseball glove'),
  12. (41, 'skateboard'), (42, 'surfboard'), (43, 'tennis racket'), (44, 'bottle'),
  13. (45, 'plate'),
  14. (46, 'wine glass'), (47, 'cup'), (48, 'fork'), (49, 'knife'), (50, 'spoon'),
  15. (51, 'bowl'),
  16. (51, 'bowl'), (52, 'banana'), (53, 'apple'), (54, 'sandwich'), (55, 'orange'),
  17. (56, 'broccoli'), (57, 'carrot'), (58, 'hot dog'), (59, 'pizza'), (60, 'donut'),
  18. (61, 'cake'), (62, 'chair'), (63, 'couch'), (64, 'potted plant'), (65, 'bed'),
  19. (66, 'mirror'), (67, 'dining table'), (68, 'window'), (69, 'desk'), (70, 'toilet'),
  20. (71, 'door'), (72, 'tv'), (73, 'laptop'), (74, 'mouse'), (75, 'remote'),
  21. (76, 'keyboard'),
  22. (77, 'cell phone'), (78, 'microwave'), (79, 'oven'), (80, 'toaster'), (81, 'sink'),
  23. (82, 'refrigerator'), (83, 'blender'), (84, 'book'), (85, 'clock'), (86, 'vase'),
  24. (87, 'scissors'), (88, 'teddy bear'), (89, 'hair drier'), (90, 'toothbrush'),
  25. (91, 'hair brush')]
  26. COCO_DETECTION_CLASSES_LIST = [
  27. 'person', 'bicycle', 'car', 'motorcycle', 'airplane', 'bus', 'train', 'truck', 'boat', 'traffic light',
  28. 'fire hydrant', 'stop sign', 'parking meter', 'bench', 'bird', 'cat', 'dog', 'horse', 'sheep', 'cow',
  29. 'elephant', 'bear', 'zebra', 'giraffe', 'backpack', 'umbrella', 'handbag', 'tie', 'suitcase', 'frisbee',
  30. 'skis', 'snowboard', 'sports ball', 'kite', 'baseball bat', 'baseball glove', 'skateboard', 'surfboard',
  31. 'tennis racket', 'bottle', 'wine glass', 'cup', 'fork', 'knife', 'spoon', 'bowl', 'banana', 'apple',
  32. 'sandwich', 'orange', 'broccoli', 'carrot', 'hot dog', 'pizza', 'donut', 'cake', 'chair', 'couch',
  33. 'potted plant', 'bed', 'dining table', 'toilet', 'tv', 'laptop', 'mouse', 'remote', 'keyboard',
  34. 'cell phone', 'microwave', 'oven', 'toaster', 'sink', 'refrigerator', 'book', 'clock', 'vase', 'scissors',
  35. 'teddy bear', 'hair drier', 'toothbrush'
  36. ]
  37. PASCAL_VOC_2012_CLASSES_LIST = [
  38. 'aeroplane', 'bicycle', 'bird', 'boat', 'bottle', 'bus', 'car', 'cat', 'chair', 'cow', 'diningtable', 'dog',
  39. 'horse', 'motorbike', 'person', 'pottedplant', 'sheep', 'sofa', 'train', 'tvmonitor']
Discard
Tip!

Press p or to see the previous file or, n or to see the next file