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

config.py 1.5 KB

You have to be logged in to leave a comment. Sign In
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
  1. class Config():
  2. classes = [
  3. 'person',
  4. 'bicycle',
  5. 'car',
  6. 'motorcycle',
  7. 'airplane',
  8. 'bus',
  9. 'train',
  10. 'truck',
  11. 'boat',
  12. 'traffic light',
  13. 'fire hydrant',
  14. 'stop sign',
  15. 'parking meter',
  16. 'bench',
  17. 'bird',
  18. 'cat',
  19. 'dog',
  20. 'horse',
  21. 'sheep',
  22. 'cow',
  23. 'elephant',
  24. 'bear',
  25. 'zebra',
  26. 'giraffe',
  27. 'backpack',
  28. 'umbrella',
  29. 'handbag',
  30. 'tie',
  31. 'suitcase',
  32. 'frisbee',
  33. 'skis',
  34. 'snowboard',
  35. 'sports ball',
  36. 'kite',
  37. 'baseball bat',
  38. 'baseball glove',
  39. 'skateboard',
  40. 'surfboard',
  41. 'tennis racket',
  42. 'bottle',
  43. 'wine glass',
  44. 'cup',
  45. 'fork',
  46. 'knife',
  47. 'spoon',
  48. 'bowl',
  49. 'banana',
  50. 'apple',
  51. 'sandwich',
  52. 'orange',
  53. 'broccoli',
  54. 'carrot',
  55. 'hot dog',
  56. 'pizza',
  57. 'donut',
  58. 'cake',
  59. 'chair',
  60. 'couch',
  61. 'potted plant',
  62. 'bed',
  63. 'dining table',
  64. 'toilet',
  65. 'tv',
  66. 'laptop',
  67. 'mouse',
  68. 'remote',
  69. 'keyboard',
  70. 'cell phone',
  71. 'microwave',
  72. 'oven',
  73. 'toaster',
  74. 'sink',
  75. 'refrigerator',
  76. 'book',
  77. 'clock',
  78. 'vase',
  79. 'scissors',
  80. 'teddy bear',
  81. 'hair drier',
  82. 'toothbrush',
  83. ]
Tip!

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

Comments

Loading...