mblt-vision-python 0.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (404) hide show
  1. mblt_vision/__init__.py +86 -0
  2. mblt_vision/_api.py +53 -0
  3. mblt_vision/_compat.py +227 -0
  4. mblt_vision/_model_paths.py +137 -0
  5. mblt_vision/_tasks.py +30 -0
  6. mblt_vision/benchmark/__init__.py +1 -0
  7. mblt_vision/benchmark/argparse_utils.py +106 -0
  8. mblt_vision/benchmark/chart_utils.py +146 -0
  9. mblt_vision/benchmark/io_utils.py +64 -0
  10. mblt_vision/benchmark/summary_utils.py +770 -0
  11. mblt_vision/cli/__init__.py +5 -0
  12. mblt_vision/cli/__main__.py +5 -0
  13. mblt_vision/cli/_vision.py +337 -0
  14. mblt_vision/cli/compile.py +117 -0
  15. mblt_vision/cli/main.py +35 -0
  16. mblt_vision/cli/predict.py +64 -0
  17. mblt_vision/cli/val.py +562 -0
  18. mblt_vision/compile/__init__.py +21 -0
  19. mblt_vision/compile/vision.py +1120 -0
  20. mblt_vision/datasets/__init__.py +15 -0
  21. mblt_vision/datasets/ade20k.yaml +164 -0
  22. mblt_vision/datasets/cityscapes.yaml +54 -0
  23. mblt_vision/datasets/coco.yaml +178 -0
  24. mblt_vision/datasets/dotav1.yaml +28 -0
  25. mblt_vision/datasets/imagenet.yaml +1019 -0
  26. mblt_vision/datasets/imagenet_synsets.txt +1000 -0
  27. mblt_vision/datasets/nyu-depth.yaml +7 -0
  28. mblt_vision/datasets/registry.py +158 -0
  29. mblt_vision/datasets/widerface.yaml +9 -0
  30. mblt_vision/depth_estimation/__init__.py +19 -0
  31. mblt_vision/face_detection/__init__.py +43 -0
  32. mblt_vision/image_classification/__init__.py +311 -0
  33. mblt_vision/instance_segmentation/__init__.py +65 -0
  34. mblt_vision/models/AlexNet.yaml +23 -0
  35. mblt_vision/models/CAFormer_B36.yaml +22 -0
  36. mblt_vision/models/CAFormer_M36.yaml +22 -0
  37. mblt_vision/models/CAFormer_S18.yaml +22 -0
  38. mblt_vision/models/CAFormer_S36.yaml +22 -0
  39. mblt_vision/models/CoAtNet_0_RW_224.yaml +22 -0
  40. mblt_vision/models/CoAtNet_1_RW_224.yaml +22 -0
  41. mblt_vision/models/CoAtNet_2_RW_224.yaml +22 -0
  42. mblt_vision/models/ConvFormer_B36.yaml +22 -0
  43. mblt_vision/models/ConvFormer_M36.yaml +22 -0
  44. mblt_vision/models/ConvFormer_S18.yaml +22 -0
  45. mblt_vision/models/ConvFormer_S36.yaml +22 -0
  46. mblt_vision/models/ConvNext_Base.yaml +23 -0
  47. mblt_vision/models/ConvNext_Large.yaml +23 -0
  48. mblt_vision/models/ConvNext_Small.yaml +23 -0
  49. mblt_vision/models/ConvNext_Tiny.yaml +23 -0
  50. mblt_vision/models/DeiT3_Base_Patch16_224.yaml +22 -0
  51. mblt_vision/models/DeiT3_Base_Patch16_384.yaml +22 -0
  52. mblt_vision/models/DeiT3_Large_Patch16_224.yaml +22 -0
  53. mblt_vision/models/DeiT3_Large_Patch16_384.yaml +22 -0
  54. mblt_vision/models/DeiT3_Medium_Patch16_224.yaml +22 -0
  55. mblt_vision/models/DeiT3_Small_Patch16_224.yaml +22 -0
  56. mblt_vision/models/DeiT3_Small_Patch16_384.yaml +22 -0
  57. mblt_vision/models/DeiT_Base_Patch16_224.yaml +22 -0
  58. mblt_vision/models/DeiT_Base_Patch16_384.yaml +22 -0
  59. mblt_vision/models/DeiT_Small_Patch16_224.yaml +22 -0
  60. mblt_vision/models/DeiT_Tiny_Patch16_224.yaml +22 -0
  61. mblt_vision/models/DenseNet121.yaml +23 -0
  62. mblt_vision/models/DenseNet161.yaml +23 -0
  63. mblt_vision/models/DenseNet169.yaml +23 -0
  64. mblt_vision/models/DenseNet201.yaml +23 -0
  65. mblt_vision/models/EfficientFormer_L1.yaml +22 -0
  66. mblt_vision/models/EfficientFormer_L3.yaml +22 -0
  67. mblt_vision/models/EfficientFormer_L7.yaml +22 -0
  68. mblt_vision/models/EfficientNet_B0.yaml +23 -0
  69. mblt_vision/models/EfficientNet_B1.yaml +32 -0
  70. mblt_vision/models/EfficientNet_B2.yaml +23 -0
  71. mblt_vision/models/EfficientNet_B3.yaml +23 -0
  72. mblt_vision/models/EfficientNet_B4.yaml +23 -0
  73. mblt_vision/models/EfficientNet_B5.yaml +23 -0
  74. mblt_vision/models/EfficientNet_B6.yaml +23 -0
  75. mblt_vision/models/EfficientNet_B7.yaml +23 -0
  76. mblt_vision/models/EfficientNet_V2_L.yaml +23 -0
  77. mblt_vision/models/EfficientNet_V2_M.yaml +23 -0
  78. mblt_vision/models/EfficientNet_V2_S.yaml +23 -0
  79. mblt_vision/models/FlexiVit_Base.yaml +22 -0
  80. mblt_vision/models/FlexiVit_Large.yaml +22 -0
  81. mblt_vision/models/FlexiVit_Small.yaml +22 -0
  82. mblt_vision/models/GELANc-seg.yaml +29 -0
  83. mblt_vision/models/GELANc.yaml +28 -0
  84. mblt_vision/models/GELANe.yaml +28 -0
  85. mblt_vision/models/GELANm.yaml +28 -0
  86. mblt_vision/models/GELANs.yaml +28 -0
  87. mblt_vision/models/GoogLeNet.yaml +23 -0
  88. mblt_vision/models/Inception_V3.yaml +23 -0
  89. mblt_vision/models/LeViT_Conv_128.yaml +22 -0
  90. mblt_vision/models/LeViT_Conv_128S.yaml +22 -0
  91. mblt_vision/models/LeViT_Conv_192.yaml +22 -0
  92. mblt_vision/models/LeViT_Conv_256.yaml +22 -0
  93. mblt_vision/models/LeViT_Conv_384.yaml +22 -0
  94. mblt_vision/models/MNASNet0_5.yaml +23 -0
  95. mblt_vision/models/MNASNet0_75.yaml +23 -0
  96. mblt_vision/models/MNASNet1_0.yaml +23 -0
  97. mblt_vision/models/MNASNet1_3.yaml +23 -0
  98. mblt_vision/models/MobileNet_V2.yaml +32 -0
  99. mblt_vision/models/MobileNet_V3_Large.yaml +32 -0
  100. mblt_vision/models/MobileNet_V3_Small.yaml +23 -0
  101. mblt_vision/models/RegNet_X_16GF.yaml +32 -0
  102. mblt_vision/models/RegNet_X_1_6GF.yaml +32 -0
  103. mblt_vision/models/RegNet_X_32GF.yaml +32 -0
  104. mblt_vision/models/RegNet_X_3_2GF.yaml +32 -0
  105. mblt_vision/models/RegNet_X_400MF.yaml +32 -0
  106. mblt_vision/models/RegNet_X_800MF.yaml +32 -0
  107. mblt_vision/models/RegNet_X_8GF.yaml +32 -0
  108. mblt_vision/models/RegNet_Y_16GF.yaml +76 -0
  109. mblt_vision/models/RegNet_Y_1_6GF.yaml +32 -0
  110. mblt_vision/models/RegNet_Y_32GF.yaml +76 -0
  111. mblt_vision/models/RegNet_Y_3_2GF.yaml +32 -0
  112. mblt_vision/models/RegNet_Y_400MF.yaml +32 -0
  113. mblt_vision/models/RegNet_Y_800MF.yaml +32 -0
  114. mblt_vision/models/RegNet_Y_8GF.yaml +32 -0
  115. mblt_vision/models/RepViT_M0_9.yaml +22 -0
  116. mblt_vision/models/RepViT_M1.yaml +22 -0
  117. mblt_vision/models/RepViT_M1_0.yaml +22 -0
  118. mblt_vision/models/RepViT_M1_1.yaml +22 -0
  119. mblt_vision/models/RepViT_M1_5.yaml +22 -0
  120. mblt_vision/models/RepViT_M2.yaml +22 -0
  121. mblt_vision/models/RepViT_M2_3.yaml +22 -0
  122. mblt_vision/models/RepViT_M3.yaml +22 -0
  123. mblt_vision/models/ResNeXt101_32X8D.yaml +32 -0
  124. mblt_vision/models/ResNeXt101_64X4D.yaml +23 -0
  125. mblt_vision/models/ResNeXt50_32X4D.yaml +32 -0
  126. mblt_vision/models/ResNet101.yaml +32 -0
  127. mblt_vision/models/ResNet152.yaml +32 -0
  128. mblt_vision/models/ResNet18.yaml +23 -0
  129. mblt_vision/models/ResNet34.yaml +23 -0
  130. mblt_vision/models/ResNet50.yaml +32 -0
  131. mblt_vision/models/ShuffleNet_V2_X0_5.yaml +23 -0
  132. mblt_vision/models/ShuffleNet_V2_X1_0.yaml +23 -0
  133. mblt_vision/models/ShuffleNet_V2_X1_5.yaml +23 -0
  134. mblt_vision/models/ShuffleNet_V2_X2_0.yaml +23 -0
  135. mblt_vision/models/SqueezeNet1_0.yaml +23 -0
  136. mblt_vision/models/SqueezeNet1_1.yaml +23 -0
  137. mblt_vision/models/Swin_B.yaml +23 -0
  138. mblt_vision/models/Swin_S.yaml +23 -0
  139. mblt_vision/models/Swin_T.yaml +23 -0
  140. mblt_vision/models/VGG11.yaml +23 -0
  141. mblt_vision/models/VGG11_BN.yaml +23 -0
  142. mblt_vision/models/VGG13.yaml +23 -0
  143. mblt_vision/models/VGG13_BN.yaml +23 -0
  144. mblt_vision/models/VGG16.yaml +23 -0
  145. mblt_vision/models/VGG16_BN.yaml +23 -0
  146. mblt_vision/models/VGG19.yaml +23 -0
  147. mblt_vision/models/VGG19_BN.yaml +23 -0
  148. mblt_vision/models/ViT_B_16.yaml +67 -0
  149. mblt_vision/models/ViT_B_32.yaml +23 -0
  150. mblt_vision/models/ViT_Base_Patch16_224.yaml +22 -0
  151. mblt_vision/models/ViT_Base_Patch16_384.yaml +22 -0
  152. mblt_vision/models/ViT_Base_Patch32_224.yaml +22 -0
  153. mblt_vision/models/ViT_Base_Patch32_384.yaml +22 -0
  154. mblt_vision/models/ViT_Base_Patch8_224.yaml +22 -0
  155. mblt_vision/models/ViT_L_16.yaml +67 -0
  156. mblt_vision/models/ViT_L_32.yaml +23 -0
  157. mblt_vision/models/ViT_Large_Patch16_224.yaml +22 -0
  158. mblt_vision/models/ViT_Large_Patch16_384.yaml +22 -0
  159. mblt_vision/models/ViT_Large_Patch32_384.yaml +22 -0
  160. mblt_vision/models/ViT_Small_Patch16_224.yaml +22 -0
  161. mblt_vision/models/ViT_Small_Patch16_384.yaml +22 -0
  162. mblt_vision/models/ViT_Small_Patch32_224.yaml +22 -0
  163. mblt_vision/models/ViT_Small_Patch32_384.yaml +22 -0
  164. mblt_vision/models/ViT_Tiny_Patch16_224.yaml +22 -0
  165. mblt_vision/models/ViT_Tiny_Patch16_384.yaml +22 -0
  166. mblt_vision/models/VisFormer_Small.yaml +22 -0
  167. mblt_vision/models/VisFormer_Tiny.yaml +22 -0
  168. mblt_vision/models/Wide_ResNet101_2.yaml +32 -0
  169. mblt_vision/models/Wide_ResNet50_2.yaml +32 -0
  170. mblt_vision/models/YOLO11l-cls.yaml +23 -0
  171. mblt_vision/models/YOLO11l-face.yaml +27 -0
  172. mblt_vision/models/YOLO11l-obb.yaml +28 -0
  173. mblt_vision/models/YOLO11l-pose.yaml +28 -0
  174. mblt_vision/models/YOLO11l-seg.yaml +28 -0
  175. mblt_vision/models/YOLO11l.yaml +27 -0
  176. mblt_vision/models/YOLO11m-cls.yaml +23 -0
  177. mblt_vision/models/YOLO11m-face.yaml +27 -0
  178. mblt_vision/models/YOLO11m-obb.yaml +28 -0
  179. mblt_vision/models/YOLO11m-pose.yaml +28 -0
  180. mblt_vision/models/YOLO11m-seg.yaml +28 -0
  181. mblt_vision/models/YOLO11m.yaml +27 -0
  182. mblt_vision/models/YOLO11n-cls.yaml +23 -0
  183. mblt_vision/models/YOLO11n-face.yaml +27 -0
  184. mblt_vision/models/YOLO11n-obb.yaml +28 -0
  185. mblt_vision/models/YOLO11n-pose.yaml +28 -0
  186. mblt_vision/models/YOLO11n-seg.yaml +28 -0
  187. mblt_vision/models/YOLO11n.yaml +27 -0
  188. mblt_vision/models/YOLO11s-cls.yaml +23 -0
  189. mblt_vision/models/YOLO11s-face.yaml +27 -0
  190. mblt_vision/models/YOLO11s-obb.yaml +28 -0
  191. mblt_vision/models/YOLO11s-pose.yaml +28 -0
  192. mblt_vision/models/YOLO11s-seg.yaml +28 -0
  193. mblt_vision/models/YOLO11s.yaml +27 -0
  194. mblt_vision/models/YOLO11x-cls.yaml +23 -0
  195. mblt_vision/models/YOLO11x-obb.yaml +28 -0
  196. mblt_vision/models/YOLO11x-pose.yaml +28 -0
  197. mblt_vision/models/YOLO11x-seg.yaml +28 -0
  198. mblt_vision/models/YOLO11x.yaml +27 -0
  199. mblt_vision/models/YOLO12l-face.yaml +27 -0
  200. mblt_vision/models/YOLO12l-seg.yaml +28 -0
  201. mblt_vision/models/YOLO12l.yaml +27 -0
  202. mblt_vision/models/YOLO12m-face.yaml +27 -0
  203. mblt_vision/models/YOLO12m-seg.yaml +28 -0
  204. mblt_vision/models/YOLO12m.yaml +27 -0
  205. mblt_vision/models/YOLO12n-face.yaml +27 -0
  206. mblt_vision/models/YOLO12n-seg.yaml +28 -0
  207. mblt_vision/models/YOLO12n.yaml +27 -0
  208. mblt_vision/models/YOLO12s-face.yaml +27 -0
  209. mblt_vision/models/YOLO12s-seg.yaml +28 -0
  210. mblt_vision/models/YOLO12s.yaml +27 -0
  211. mblt_vision/models/YOLO12x-seg.yaml +28 -0
  212. mblt_vision/models/YOLO12x.yaml +27 -0
  213. mblt_vision/models/YOLO26l-cls.yaml +23 -0
  214. mblt_vision/models/YOLO26l-depth.yaml +17 -0
  215. mblt_vision/models/YOLO26l-distill.yaml +27 -0
  216. mblt_vision/models/YOLO26l-obb.yaml +28 -0
  217. mblt_vision/models/YOLO26l-pose.yaml +28 -0
  218. mblt_vision/models/YOLO26l-seg.yaml +28 -0
  219. mblt_vision/models/YOLO26l-sem-ade20k.yaml +17 -0
  220. mblt_vision/models/YOLO26l-sem.yaml +17 -0
  221. mblt_vision/models/YOLO26l.yaml +27 -0
  222. mblt_vision/models/YOLO26m-cls.yaml +23 -0
  223. mblt_vision/models/YOLO26m-depth.yaml +17 -0
  224. mblt_vision/models/YOLO26m-distill.yaml +27 -0
  225. mblt_vision/models/YOLO26m-obb.yaml +28 -0
  226. mblt_vision/models/YOLO26m-pose.yaml +28 -0
  227. mblt_vision/models/YOLO26m-seg.yaml +28 -0
  228. mblt_vision/models/YOLO26m-sem-ade20k.yaml +17 -0
  229. mblt_vision/models/YOLO26m-sem.yaml +17 -0
  230. mblt_vision/models/YOLO26m.yaml +27 -0
  231. mblt_vision/models/YOLO26n-cls.yaml +23 -0
  232. mblt_vision/models/YOLO26n-depth.yaml +17 -0
  233. mblt_vision/models/YOLO26n-distill.yaml +27 -0
  234. mblt_vision/models/YOLO26n-obb.yaml +28 -0
  235. mblt_vision/models/YOLO26n-pose.yaml +28 -0
  236. mblt_vision/models/YOLO26n-seg.yaml +28 -0
  237. mblt_vision/models/YOLO26n-sem-ade20k.yaml +17 -0
  238. mblt_vision/models/YOLO26n-sem.yaml +17 -0
  239. mblt_vision/models/YOLO26n.yaml +27 -0
  240. mblt_vision/models/YOLO26s-cls.yaml +23 -0
  241. mblt_vision/models/YOLO26s-depth.yaml +17 -0
  242. mblt_vision/models/YOLO26s-distill.yaml +27 -0
  243. mblt_vision/models/YOLO26s-obb.yaml +28 -0
  244. mblt_vision/models/YOLO26s-pose.yaml +28 -0
  245. mblt_vision/models/YOLO26s-seg.yaml +28 -0
  246. mblt_vision/models/YOLO26s-sem-ade20k.yaml +17 -0
  247. mblt_vision/models/YOLO26s-sem.yaml +17 -0
  248. mblt_vision/models/YOLO26s.yaml +27 -0
  249. mblt_vision/models/YOLO26x-cls.yaml +23 -0
  250. mblt_vision/models/YOLO26x-depth.yaml +17 -0
  251. mblt_vision/models/YOLO26x-distill.yaml +27 -0
  252. mblt_vision/models/YOLO26x-obb.yaml +28 -0
  253. mblt_vision/models/YOLO26x-pose.yaml +28 -0
  254. mblt_vision/models/YOLO26x-seg.yaml +28 -0
  255. mblt_vision/models/YOLO26x-sem-ade20k.yaml +17 -0
  256. mblt_vision/models/YOLO26x-sem.yaml +17 -0
  257. mblt_vision/models/YOLO26x.yaml +27 -0
  258. mblt_vision/models/YOLOv10b.yaml +28 -0
  259. mblt_vision/models/YOLOv10l-face.yaml +28 -0
  260. mblt_vision/models/YOLOv10l.yaml +28 -0
  261. mblt_vision/models/YOLOv10m-face.yaml +28 -0
  262. mblt_vision/models/YOLOv10m.yaml +28 -0
  263. mblt_vision/models/YOLOv10n-face.yaml +28 -0
  264. mblt_vision/models/YOLOv10n.yaml +28 -0
  265. mblt_vision/models/YOLOv10s-face.yaml +28 -0
  266. mblt_vision/models/YOLOv10s.yaml +28 -0
  267. mblt_vision/models/YOLOv10x.yaml +28 -0
  268. mblt_vision/models/YOLOv3-spp.yaml +44 -0
  269. mblt_vision/models/YOLOv3-sppu.yaml +27 -0
  270. mblt_vision/models/YOLOv3-tiny.yaml +38 -0
  271. mblt_vision/models/YOLOv3-tinyu.yaml +27 -0
  272. mblt_vision/models/YOLOv3.yaml +44 -0
  273. mblt_vision/models/YOLOv3u.yaml +27 -0
  274. mblt_vision/models/YOLOv5l-cls.yaml +22 -0
  275. mblt_vision/models/YOLOv5l-seg.yaml +45 -0
  276. mblt_vision/models/YOLOv5l.yaml +44 -0
  277. mblt_vision/models/YOLOv5l6.yaml +50 -0
  278. mblt_vision/models/YOLOv5l6u.yaml +27 -0
  279. mblt_vision/models/YOLOv5lu.yaml +27 -0
  280. mblt_vision/models/YOLOv5m-cls.yaml +22 -0
  281. mblt_vision/models/YOLOv5m-seg.yaml +45 -0
  282. mblt_vision/models/YOLOv5m.yaml +45 -0
  283. mblt_vision/models/YOLOv5m6.yaml +50 -0
  284. mblt_vision/models/YOLOv5m6u.yaml +27 -0
  285. mblt_vision/models/YOLOv5mu.yaml +27 -0
  286. mblt_vision/models/YOLOv5n-cls.yaml +22 -0
  287. mblt_vision/models/YOLOv5n-seg.yaml +45 -0
  288. mblt_vision/models/YOLOv5n.yaml +44 -0
  289. mblt_vision/models/YOLOv5n6.yaml +50 -0
  290. mblt_vision/models/YOLOv5n6u.yaml +27 -0
  291. mblt_vision/models/YOLOv5nu.yaml +27 -0
  292. mblt_vision/models/YOLOv5s-cls.yaml +22 -0
  293. mblt_vision/models/YOLOv5s-seg.yaml +45 -0
  294. mblt_vision/models/YOLOv5s.yaml +44 -0
  295. mblt_vision/models/YOLOv5s6.yaml +50 -0
  296. mblt_vision/models/YOLOv5s6u.yaml +27 -0
  297. mblt_vision/models/YOLOv5su.yaml +27 -0
  298. mblt_vision/models/YOLOv5x-cls.yaml +22 -0
  299. mblt_vision/models/YOLOv5x-seg.yaml +45 -0
  300. mblt_vision/models/YOLOv5x.yaml +44 -0
  301. mblt_vision/models/YOLOv5x6.yaml +50 -0
  302. mblt_vision/models/YOLOv5x6u.yaml +27 -0
  303. mblt_vision/models/YOLOv5xu.yaml +27 -0
  304. mblt_vision/models/YOLOv6m-face.yaml +27 -0
  305. mblt_vision/models/YOLOv6n-face.yaml +27 -0
  306. mblt_vision/models/YOLOv7.yaml +44 -0
  307. mblt_vision/models/YOLOv7d6.yaml +50 -0
  308. mblt_vision/models/YOLOv7e6.yaml +50 -0
  309. mblt_vision/models/YOLOv7e6e.yaml +50 -0
  310. mblt_vision/models/YOLOv7w6.yaml +50 -0
  311. mblt_vision/models/YOLOv7x.yaml +44 -0
  312. mblt_vision/models/YOLOv8l-cls.yaml +23 -0
  313. mblt_vision/models/YOLOv8l-face.yaml +27 -0
  314. mblt_vision/models/YOLOv8l-obb.yaml +28 -0
  315. mblt_vision/models/YOLOv8l-pose.yaml +28 -0
  316. mblt_vision/models/YOLOv8l-seg.yaml +28 -0
  317. mblt_vision/models/YOLOv8l.yaml +27 -0
  318. mblt_vision/models/YOLOv8m-cls.yaml +23 -0
  319. mblt_vision/models/YOLOv8m-face.yaml +27 -0
  320. mblt_vision/models/YOLOv8m-obb.yaml +28 -0
  321. mblt_vision/models/YOLOv8m-pose.yaml +28 -0
  322. mblt_vision/models/YOLOv8m-seg.yaml +28 -0
  323. mblt_vision/models/YOLOv8m.yaml +27 -0
  324. mblt_vision/models/YOLOv8n-cls.yaml +23 -0
  325. mblt_vision/models/YOLOv8n-face.yaml +27 -0
  326. mblt_vision/models/YOLOv8n-obb.yaml +28 -0
  327. mblt_vision/models/YOLOv8n-pose.yaml +28 -0
  328. mblt_vision/models/YOLOv8n-seg.yaml +28 -0
  329. mblt_vision/models/YOLOv8n.yaml +27 -0
  330. mblt_vision/models/YOLOv8s-cls.yaml +23 -0
  331. mblt_vision/models/YOLOv8s-obb.yaml +28 -0
  332. mblt_vision/models/YOLOv8s-pose.yaml +28 -0
  333. mblt_vision/models/YOLOv8s-seg.yaml +28 -0
  334. mblt_vision/models/YOLOv8s.yaml +27 -0
  335. mblt_vision/models/YOLOv8x-cls.yaml +23 -0
  336. mblt_vision/models/YOLOv8x-obb.yaml +28 -0
  337. mblt_vision/models/YOLOv8x-pose-p6.yaml +28 -0
  338. mblt_vision/models/YOLOv8x-pose.yaml +28 -0
  339. mblt_vision/models/YOLOv8x-seg.yaml +28 -0
  340. mblt_vision/models/YOLOv8x.yaml +27 -0
  341. mblt_vision/models/YOLOv9c-seg.yaml +28 -0
  342. mblt_vision/models/YOLOv9c.yaml +27 -0
  343. mblt_vision/models/YOLOv9e-seg.yaml +28 -0
  344. mblt_vision/models/YOLOv9e.yaml +27 -0
  345. mblt_vision/models/YOLOv9m.yaml +27 -0
  346. mblt_vision/models/YOLOv9s.yaml +27 -0
  347. mblt_vision/models/YOLOv9t.yaml +27 -0
  348. mblt_vision/obb/__init__.py +39 -0
  349. mblt_vision/object_detection/__init__.py +153 -0
  350. mblt_vision/pose_estimation/__init__.py +41 -0
  351. mblt_vision/py.typed +1 -0
  352. mblt_vision/semantic_segmentation/__init__.py +29 -0
  353. mblt_vision/utils/__init__.py +0 -0
  354. mblt_vision/utils/datasets/__init__.py +85 -0
  355. mblt_vision/utils/datasets/ade20k.py +41 -0
  356. mblt_vision/utils/datasets/cityscapes.py +66 -0
  357. mblt_vision/utils/datasets/coco.py +243 -0
  358. mblt_vision/utils/datasets/dataloader.py +1016 -0
  359. mblt_vision/utils/datasets/dotav1.py +59 -0
  360. mblt_vision/utils/datasets/imagenet.py +29 -0
  361. mblt_vision/utils/datasets/organizer.py +2145 -0
  362. mblt_vision/utils/datasets/readiness.py +1063 -0
  363. mblt_vision/utils/evaluation/__init__.py +51 -0
  364. mblt_vision/utils/evaluation/_result.py +22 -0
  365. mblt_vision/utils/evaluation/eval_ade20k.py +302 -0
  366. mblt_vision/utils/evaluation/eval_cityscapes.py +32 -0
  367. mblt_vision/utils/evaluation/eval_coco.py +465 -0
  368. mblt_vision/utils/evaluation/eval_dota.py +878 -0
  369. mblt_vision/utils/evaluation/eval_imagenet.py +151 -0
  370. mblt_vision/utils/evaluation/eval_nyu_depth.py +189 -0
  371. mblt_vision/utils/evaluation/eval_widerface.py +440 -0
  372. mblt_vision/utils/letterbox.py +118 -0
  373. mblt_vision/utils/postprocess/__init__.py +9 -0
  374. mblt_vision/utils/postprocess/_letterbox.py +102 -0
  375. mblt_vision/utils/postprocess/base.py +743 -0
  376. mblt_vision/utils/postprocess/build_post.py +120 -0
  377. mblt_vision/utils/postprocess/cls_post.py +117 -0
  378. mblt_vision/utils/postprocess/common.py +1571 -0
  379. mblt_vision/utils/postprocess/depth_post.py +106 -0
  380. mblt_vision/utils/postprocess/semantic_seg_post.py +192 -0
  381. mblt_vision/utils/postprocess/yolo_anchor_post.py +469 -0
  382. mblt_vision/utils/postprocess/yolo_anchorless_post.py +952 -0
  383. mblt_vision/utils/postprocess/yolo_dflfree_post.py +983 -0
  384. mblt_vision/utils/postprocess/yolo_nmsfree_post.py +176 -0
  385. mblt_vision/utils/preprocess/__init__.py +27 -0
  386. mblt_vision/utils/preprocess/_validation.py +66 -0
  387. mblt_vision/utils/preprocess/base.py +157 -0
  388. mblt_vision/utils/preprocess/build_pre.py +48 -0
  389. mblt_vision/utils/preprocess/center_crop.py +75 -0
  390. mblt_vision/utils/preprocess/letterbox.py +123 -0
  391. mblt_vision/utils/preprocess/normalize.py +94 -0
  392. mblt_vision/utils/preprocess/order.py +74 -0
  393. mblt_vision/utils/preprocess/reader.py +94 -0
  394. mblt_vision/utils/preprocess/resize.py +202 -0
  395. mblt_vision/utils/preprocess/yolo_pre.py +7 -0
  396. mblt_vision/utils/results.py +725 -0
  397. mblt_vision/utils/types.py +15 -0
  398. mblt_vision/wrapper.py +1121 -0
  399. mblt_vision_python-0.0.0.dist-info/METADATA +152 -0
  400. mblt_vision_python-0.0.0.dist-info/RECORD +404 -0
  401. mblt_vision_python-0.0.0.dist-info/WHEEL +5 -0
  402. mblt_vision_python-0.0.0.dist-info/entry_points.txt +2 -0
  403. mblt_vision_python-0.0.0.dist-info/licenses/LICENSE +28 -0
  404. mblt_vision_python-0.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1019 @@
1
+ # ImageNet-1k validation dataset. Paths are relative to `path` unless absolute.
2
+ name: imagenet
3
+ path: ~/.mblt_model_zoo/datasets/imagenet
4
+ tasks:
5
+ - image_classification
6
+ val: .
7
+ download:
8
+ images: https://image-net.org/data/ILSVRC/2012/ILSVRC2012_img_val.tar
9
+ annotations: https://www.image-net.org/data/ILSVRC/2012/ILSVRC2012_bbox_val_v3.tgz
10
+
11
+ names:
12
+ 0: tench, Tinca tinca
13
+ 1: goldfish, Carassius auratus
14
+ 2: great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias
15
+ 3: tiger shark, Galeocerdo cuvieri
16
+ 4: hammerhead, hammerhead shark
17
+ 5: electric ray, crampfish, numbfish, torpedo
18
+ 6: stingray
19
+ 7: cock
20
+ 8: hen
21
+ 9: ostrich, Struthio camelus
22
+ 10: brambling, Fringilla montifringilla
23
+ 11: goldfinch, Carduelis carduelis
24
+ 12: house finch, linnet, Carpodacus mexicanus
25
+ 13: junco, snowbird
26
+ 14: indigo bunting, indigo finch, indigo bird, Passerina cyanea
27
+ 15: robin, American robin, Turdus migratorius
28
+ 16: bulbul
29
+ 17: jay
30
+ 18: magpie
31
+ 19: chickadee
32
+ 20: water ouzel, dipper
33
+ 21: kite
34
+ 22: bald eagle, American eagle, Haliaeetus leucocephalus
35
+ 23: vulture
36
+ 24: great grey owl, great gray owl, Strix nebulosa
37
+ 25: European fire salamander, Salamandra salamandra
38
+ 26: common newt, Triturus vulgaris
39
+ 27: eft
40
+ 28: spotted salamander, Ambystoma maculatum
41
+ 29: axolotl, mud puppy, Ambystoma mexicanum
42
+ 30: bullfrog, Rana catesbeiana
43
+ 31: tree frog, tree-frog
44
+ 32: tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui
45
+ 33: loggerhead, loggerhead turtle, Caretta caretta
46
+ 34: leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea
47
+ 35: mud turtle
48
+ 36: terrapin
49
+ 37: box turtle, box tortoise
50
+ 38: banded gecko
51
+ 39: common iguana, iguana, Iguana iguana
52
+ 40: American chameleon, anole, Anolis carolinensis
53
+ 41: whiptail, whiptail lizard
54
+ 42: agama
55
+ 43: frilled lizard, Chlamydosaurus kingi
56
+ 44: alligator lizard
57
+ 45: Gila monster, Heloderma suspectum
58
+ 46: green lizard, Lacerta viridis
59
+ 47: African chameleon, Chamaeleo chamaeleon
60
+ 48: Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis
61
+ 49: African crocodile, Nile crocodile, Crocodylus niloticus
62
+ 50: American alligator, Alligator mississipiensis
63
+ 51: triceratops
64
+ 52: thunder snake, worm snake, Carphophis amoenus
65
+ 53: ringneck snake, ring-necked snake, ring snake
66
+ 54: hognose snake, puff adder, sand viper
67
+ 55: green snake, grass snake
68
+ 56: king snake, kingsnake
69
+ 57: garter snake, grass snake
70
+ 58: water snake
71
+ 59: vine snake
72
+ 60: night snake, Hypsiglena torquata
73
+ 61: boa constrictor, Constrictor constrictor
74
+ 62: rock python, rock snake, Python sebae
75
+ 63: Indian cobra, Naja naja
76
+ 64: green mamba
77
+ 65: sea snake
78
+ 66: horned viper, cerastes, sand viper, horned asp, Cerastes cornutus
79
+ 67: diamondback, diamondback rattlesnake, Crotalus adamanteus
80
+ 68: sidewinder, horned rattlesnake, Crotalus cerastes
81
+ 69: trilobite
82
+ 70: harvestman, daddy longlegs, Phalangium opilio
83
+ 71: scorpion
84
+ 72: black and gold garden spider, Argiope aurantia
85
+ 73: barn spider, Araneus cavaticus
86
+ 74: garden spider, Aranea diademata
87
+ 75: black widow, Latrodectus mactans
88
+ 76: tarantula
89
+ 77: wolf spider, hunting spider
90
+ 78: tick
91
+ 79: centipede
92
+ 80: black grouse
93
+ 81: ptarmigan
94
+ 82: ruffed grouse, partridge, Bonasa umbellus
95
+ 83: prairie chicken, prairie grouse, prairie fowl
96
+ 84: peacock
97
+ 85: quail
98
+ 86: partridge
99
+ 87: African grey, African gray, Psittacus erithacus
100
+ 88: macaw
101
+ 89: sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita
102
+ 90: lorikeet
103
+ 91: coucal
104
+ 92: bee eater
105
+ 93: hornbill
106
+ 94: hummingbird
107
+ 95: jacamar
108
+ 96: toucan
109
+ 97: drake
110
+ 98: red-breasted merganser, Mergus serrator
111
+ 99: goose
112
+ 100: black swan, Cygnus atratus
113
+ 101: tusker
114
+ 102: echidna, spiny anteater, anteater
115
+ 103: platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus
116
+ anatinus
117
+ 104: wallaby, brush kangaroo
118
+ 105: koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus
119
+ 106: wombat
120
+ 107: jellyfish
121
+ 108: sea anemone, anemone
122
+ 109: brain coral
123
+ 110: flatworm, platyhelminth
124
+ 111: nematode, nematode worm, roundworm
125
+ 112: conch
126
+ 113: snail
127
+ 114: slug
128
+ 115: sea slug, nudibranch
129
+ 116: chiton, coat-of-mail shell, sea cradle, polyplacophore
130
+ 117: chambered nautilus, pearly nautilus, nautilus
131
+ 118: Dungeness crab, Cancer magister
132
+ 119: rock crab, Cancer irroratus
133
+ 120: fiddler crab
134
+ 121: king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica
135
+ 122: American lobster, Northern lobster, Maine lobster, Homarus americanus
136
+ 123: spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish
137
+ 124: crayfish, crawfish, crawdad, crawdaddy
138
+ 125: hermit crab
139
+ 126: isopod
140
+ 127: white stork, Ciconia ciconia
141
+ 128: black stork, Ciconia nigra
142
+ 129: spoonbill
143
+ 130: flamingo
144
+ 131: little blue heron, Egretta caerulea
145
+ 132: American egret, great white heron, Egretta albus
146
+ 133: bittern
147
+ 134: crane
148
+ 135: limpkin, Aramus pictus
149
+ 136: European gallinule, Porphyrio porphyrio
150
+ 137: American coot, marsh hen, mud hen, water hen, Fulica americana
151
+ 138: bustard
152
+ 139: ruddy turnstone, Arenaria interpres
153
+ 140: red-backed sandpiper, dunlin, Erolia alpina
154
+ 141: redshank, Tringa totanus
155
+ 142: dowitcher
156
+ 143: oystercatcher, oyster catcher
157
+ 144: pelican
158
+ 145: king penguin, Aptenodytes patagonica
159
+ 146: albatross, mollymawk
160
+ 147: grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus
161
+ 148: killer whale, killer, orca, grampus, sea wolf, Orcinus orca
162
+ 149: dugong, Dugong dugon
163
+ 150: sea lion
164
+ 151: Chihuahua
165
+ 152: Japanese spaniel
166
+ 153: Maltese dog, Maltese terrier, Maltese
167
+ 154: Pekinese, Pekingese, Peke
168
+ 155: Shih-Tzu
169
+ 156: Blenheim spaniel
170
+ 157: papillon
171
+ 158: toy terrier
172
+ 159: Rhodesian ridgeback
173
+ 160: Afghan hound, Afghan
174
+ 161: basset, basset hound
175
+ 162: beagle
176
+ 163: bloodhound, sleuthhound
177
+ 164: bluetick
178
+ 165: black-and-tan coonhound
179
+ 166: Walker hound, Walker foxhound
180
+ 167: English foxhound
181
+ 168: redbone
182
+ 169: borzoi, Russian wolfhound
183
+ 170: Irish wolfhound
184
+ 171: Italian greyhound
185
+ 172: whippet
186
+ 173: Ibizan hound, Ibizan Podenco
187
+ 174: Norwegian elkhound, elkhound
188
+ 175: otterhound, otter hound
189
+ 176: Saluki, gazelle hound
190
+ 177: Scottish deerhound, deerhound
191
+ 178: Weimaraner
192
+ 179: Staffordshire bullterrier, Staffordshire bull terrier
193
+ 180: American Staffordshire terrier, Staffordshire terrier, American pit bull terrier,
194
+ pit bull terrier
195
+ 181: Bedlington terrier
196
+ 182: Border terrier
197
+ 183: Kerry blue terrier
198
+ 184: Irish terrier
199
+ 185: Norfolk terrier
200
+ 186: Norwich terrier
201
+ 187: Yorkshire terrier
202
+ 188: wire-haired fox terrier
203
+ 189: Lakeland terrier
204
+ 190: Sealyham terrier, Sealyham
205
+ 191: Airedale, Airedale terrier
206
+ 192: cairn, cairn terrier
207
+ 193: Australian terrier
208
+ 194: Dandie Dinmont, Dandie Dinmont terrier
209
+ 195: Boston bull, Boston terrier
210
+ 196: miniature schnauzer
211
+ 197: giant schnauzer
212
+ 198: standard schnauzer
213
+ 199: Scotch terrier, Scottish terrier, Scottie
214
+ 200: Tibetan terrier, chrysanthemum dog
215
+ 201: silky terrier, Sydney silky
216
+ 202: soft-coated wheaten terrier
217
+ 203: West Highland white terrier
218
+ 204: Lhasa, Lhasa apso
219
+ 205: flat-coated retriever
220
+ 206: curly-coated retriever
221
+ 207: golden retriever
222
+ 208: Labrador retriever
223
+ 209: Chesapeake Bay retriever
224
+ 210: German short-haired pointer
225
+ 211: vizsla, Hungarian pointer
226
+ 212: English setter
227
+ 213: Irish setter, red setter
228
+ 214: Gordon setter
229
+ 215: Brittany spaniel
230
+ 216: clumber, clumber spaniel
231
+ 217: English springer, English springer spaniel
232
+ 218: Welsh springer spaniel
233
+ 219: cocker spaniel, English cocker spaniel, cocker
234
+ 220: Sussex spaniel
235
+ 221: Irish water spaniel
236
+ 222: kuvasz
237
+ 223: schipperke
238
+ 224: groenendael
239
+ 225: malinois
240
+ 226: briard
241
+ 227: kelpie
242
+ 228: komondor
243
+ 229: Old English sheepdog, bobtail
244
+ 230: Shetland sheepdog, Shetland sheep dog, Shetland
245
+ 231: collie
246
+ 232: Border collie
247
+ 233: Bouvier des Flandres, Bouviers des Flandres
248
+ 234: Rottweiler
249
+ 235: German shepherd, German shepherd dog, German police dog, alsatian
250
+ 236: Doberman, Doberman pinscher
251
+ 237: miniature pinscher
252
+ 238: Greater Swiss Mountain dog
253
+ 239: Bernese mountain dog
254
+ 240: Appenzeller
255
+ 241: EntleBucher
256
+ 242: boxer
257
+ 243: bull mastiff
258
+ 244: Tibetan mastiff
259
+ 245: French bulldog
260
+ 246: Great Dane
261
+ 247: Saint Bernard, St Bernard
262
+ 248: Eskimo dog, husky
263
+ 249: malamute, malemute, Alaskan malamute
264
+ 250: Siberian husky
265
+ 251: dalmatian, coach dog, carriage dog
266
+ 252: affenpinscher, monkey pinscher, monkey dog
267
+ 253: basenji
268
+ 254: pug, pug-dog
269
+ 255: Leonberg
270
+ 256: Newfoundland, Newfoundland dog
271
+ 257: Great Pyrenees
272
+ 258: Samoyed, Samoyede
273
+ 259: Pomeranian
274
+ 260: chow, chow chow
275
+ 261: keeshond
276
+ 262: Brabancon griffon
277
+ 263: Pembroke, Pembroke Welsh corgi
278
+ 264: Cardigan, Cardigan Welsh corgi
279
+ 265: toy poodle
280
+ 266: miniature poodle
281
+ 267: standard poodle
282
+ 268: Mexican hairless
283
+ 269: timber wolf, grey wolf, gray wolf, Canis lupus
284
+ 270: white wolf, Arctic wolf, Canis lupus tundrarum
285
+ 271: red wolf, maned wolf, Canis rufus, Canis niger
286
+ 272: coyote, prairie wolf, brush wolf, Canis latrans
287
+ 273: dingo, warrigal, warragal, Canis dingo
288
+ 274: dhole, Cuon alpinus
289
+ 275: African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus
290
+ 276: hyena, hyaena
291
+ 277: red fox, Vulpes vulpes
292
+ 278: kit fox, Vulpes macrotis
293
+ 279: Arctic fox, white fox, Alopex lagopus
294
+ 280: grey fox, gray fox, Urocyon cinereoargenteus
295
+ 281: tabby, tabby cat
296
+ 282: tiger cat
297
+ 283: Persian cat
298
+ 284: Siamese cat, Siamese
299
+ 285: Egyptian cat
300
+ 286: cougar, puma, catamount, mountain lion, painter, panther, Felis concolor
301
+ 287: lynx, catamount
302
+ 288: leopard, Panthera pardus
303
+ 289: snow leopard, ounce, Panthera uncia
304
+ 290: jaguar, panther, Panthera onca, Felis onca
305
+ 291: lion, king of beasts, Panthera leo
306
+ 292: tiger, Panthera tigris
307
+ 293: cheetah, chetah, Acinonyx jubatus
308
+ 294: brown bear, bruin, Ursus arctos
309
+ 295: American black bear, black bear, Ursus americanus, Euarctos americanus
310
+ 296: ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus
311
+ 297: sloth bear, Melursus ursinus, Ursus ursinus
312
+ 298: mongoose
313
+ 299: meerkat, mierkat
314
+ 300: tiger beetle
315
+ 301: ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle
316
+ 302: ground beetle, carabid beetle
317
+ 303: long-horned beetle, longicorn, longicorn beetle
318
+ 304: leaf beetle, chrysomelid
319
+ 305: dung beetle
320
+ 306: rhinoceros beetle
321
+ 307: weevil
322
+ 308: fly
323
+ 309: bee
324
+ 310: ant, emmet, pismire
325
+ 311: grasshopper, hopper
326
+ 312: cricket
327
+ 313: walking stick, walkingstick, stick insect
328
+ 314: cockroach, roach
329
+ 315: mantis, mantid
330
+ 316: cicada, cicala
331
+ 317: leafhopper
332
+ 318: lacewing, lacewing fly
333
+ 319: dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder,
334
+ snake doctor, mosquito hawk, skeeter hawk
335
+ 320: damselfly
336
+ 321: admiral
337
+ 322: ringlet, ringlet butterfly
338
+ 323: monarch, monarch butterfly, milkweed butterfly, Danaus plexippus
339
+ 324: cabbage butterfly
340
+ 325: sulphur butterfly, sulfur butterfly
341
+ 326: lycaenid, lycaenid butterfly
342
+ 327: starfish, sea star
343
+ 328: sea urchin
344
+ 329: sea cucumber, holothurian
345
+ 330: wood rabbit, cottontail, cottontail rabbit
346
+ 331: hare
347
+ 332: Angora, Angora rabbit
348
+ 333: hamster
349
+ 334: porcupine, hedgehog
350
+ 335: fox squirrel, eastern fox squirrel, Sciurus niger
351
+ 336: marmot
352
+ 337: beaver
353
+ 338: guinea pig, Cavia cobaya
354
+ 339: sorrel
355
+ 340: zebra
356
+ 341: hog, pig, grunter, squealer, Sus scrofa
357
+ 342: wild boar, boar, Sus scrofa
358
+ 343: warthog
359
+ 344: hippopotamus, hippo, river horse, Hippopotamus amphibius
360
+ 345: ox
361
+ 346: water buffalo, water ox, Asiatic buffalo, Bubalus bubalis
362
+ 347: bison
363
+ 348: ram, tup
364
+ 349: bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep,
365
+ Ovis canadensis
366
+ 350: ibex, Capra ibex
367
+ 351: hartebeest
368
+ 352: impala, Aepyceros melampus
369
+ 353: gazelle
370
+ 354: Arabian camel, dromedary, Camelus dromedarius
371
+ 355: llama
372
+ 356: weasel
373
+ 357: mink
374
+ 358: polecat, fitch, foulmart, foumart, Mustela putorius
375
+ 359: black-footed ferret, ferret, Mustela nigripes
376
+ 360: otter
377
+ 361: skunk, polecat, wood pussy
378
+ 362: badger
379
+ 363: armadillo
380
+ 364: three-toed sloth, ai, Bradypus tridactylus
381
+ 365: orangutan, orang, orangutang, Pongo pygmaeus
382
+ 366: gorilla, Gorilla gorilla
383
+ 367: chimpanzee, chimp, Pan troglodytes
384
+ 368: gibbon, Hylobates lar
385
+ 369: siamang, Hylobates syndactylus, Symphalangus syndactylus
386
+ 370: guenon, guenon monkey
387
+ 371: patas, hussar monkey, Erythrocebus patas
388
+ 372: baboon
389
+ 373: macaque
390
+ 374: langur
391
+ 375: colobus, colobus monkey
392
+ 376: proboscis monkey, Nasalis larvatus
393
+ 377: marmoset
394
+ 378: capuchin, ringtail, Cebus capucinus
395
+ 379: howler monkey, howler
396
+ 380: titi, titi monkey
397
+ 381: spider monkey, Ateles geoffroyi
398
+ 382: squirrel monkey, Saimiri sciureus
399
+ 383: Madagascar cat, ring-tailed lemur, Lemur catta
400
+ 384: indri, indris, Indri indri, Indri brevicaudatus
401
+ 385: Indian elephant, Elephas maximus
402
+ 386: African elephant, Loxodonta africana
403
+ 387: lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens
404
+ 388: giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca
405
+ 389: barracouta, snoek
406
+ 390: eel
407
+ 391: coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch
408
+ 392: rock beauty, Holocanthus tricolor
409
+ 393: anemone fish
410
+ 394: sturgeon
411
+ 395: gar, garfish, garpike, billfish, Lepisosteus osseus
412
+ 396: lionfish
413
+ 397: puffer, pufferfish, blowfish, globefish
414
+ 398: abacus
415
+ 399: abaya
416
+ 400: academic gown, academic robe, judge's robe
417
+ 401: accordion, piano accordion, squeeze box
418
+ 402: acoustic guitar
419
+ 403: aircraft carrier, carrier, flattop, attack aircraft carrier
420
+ 404: airliner
421
+ 405: airship, dirigible
422
+ 406: altar
423
+ 407: ambulance
424
+ 408: amphibian, amphibious vehicle
425
+ 409: analog clock
426
+ 410: apiary, bee house
427
+ 411: apron
428
+ 412: ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin,
429
+ trash barrel, trash bin
430
+ 413: assault rifle, assault gun
431
+ 414: backpack, back pack, knapsack, packsack, rucksack, haversack
432
+ 415: bakery, bakeshop, bakehouse
433
+ 416: balance beam, beam
434
+ 417: balloon
435
+ 418: ballpoint, ballpoint pen, ballpen, Biro
436
+ 419: Band Aid
437
+ 420: banjo
438
+ 421: bannister, banister, balustrade, balusters, handrail
439
+ 422: barbell
440
+ 423: barber chair
441
+ 424: barbershop
442
+ 425: barn
443
+ 426: barometer
444
+ 427: barrel, cask
445
+ 428: barrow, garden cart, lawn cart, wheelbarrow
446
+ 429: baseball
447
+ 430: basketball
448
+ 431: bassinet
449
+ 432: bassoon
450
+ 433: bathing cap, swimming cap
451
+ 434: bath towel
452
+ 435: bathtub, bathing tub, bath, tub
453
+ 436: beach wagon, station wagon, wagon, estate car, beach waggon, station waggon,
454
+ waggon
455
+ 437: beacon, lighthouse, beacon light, pharos
456
+ 438: beaker
457
+ 439: bearskin, busby, shako
458
+ 440: beer bottle
459
+ 441: beer glass
460
+ 442: bell cote, bell cot
461
+ 443: bib
462
+ 444: bicycle-built-for-two, tandem bicycle, tandem
463
+ 445: bikini, two-piece
464
+ 446: binder, ring-binder
465
+ 447: binoculars, field glasses, opera glasses
466
+ 448: birdhouse
467
+ 449: boathouse
468
+ 450: bobsled, bobsleigh, bob
469
+ 451: bolo tie, bolo, bola tie, bola
470
+ 452: bonnet, poke bonnet
471
+ 453: bookcase
472
+ 454: bookshop, bookstore, bookstall
473
+ 455: bottlecap
474
+ 456: bow
475
+ 457: bow tie, bow-tie, bowtie
476
+ 458: brass, memorial tablet, plaque
477
+ 459: brassiere, bra, bandeau
478
+ 460: breakwater, groin, groyne, mole, bulwark, seawall, jetty
479
+ 461: breastplate, aegis, egis
480
+ 462: broom
481
+ 463: bucket, pail
482
+ 464: buckle
483
+ 465: bulletproof vest
484
+ 466: bullet train, bullet
485
+ 467: butcher shop, meat market
486
+ 468: cab, hack, taxi, taxicab
487
+ 469: caldron, cauldron
488
+ 470: candle, taper, wax light
489
+ 471: cannon
490
+ 472: canoe
491
+ 473: can opener, tin opener
492
+ 474: cardigan
493
+ 475: car mirror
494
+ 476: carousel, carrousel, merry-go-round, roundabout, whirligig
495
+ 477: carpenter's kit, tool kit
496
+ 478: carton
497
+ 479: car wheel
498
+ 480: cash machine, cash dispenser, automated teller machine, automatic teller machine,
499
+ automated teller, automatic teller, ATM
500
+ 481: cassette
501
+ 482: cassette player
502
+ 483: castle
503
+ 484: catamaran
504
+ 485: CD player
505
+ 486: cello, violoncello
506
+ 487: cellular telephone, cellular phone, cellphone, cell, mobile phone
507
+ 488: chain
508
+ 489: chainlink fence
509
+ 490: chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour
510
+ 491: chain saw, chainsaw
511
+ 492: chest
512
+ 493: chiffonier, commode
513
+ 494: chime, bell, gong
514
+ 495: china cabinet, china closet
515
+ 496: Christmas stocking
516
+ 497: church, church building
517
+ 498: cinema, movie theater, movie theatre, movie house, picture palace
518
+ 499: cleaver, meat cleaver, chopper
519
+ 500: cliff dwelling
520
+ 501: cloak
521
+ 502: clog, geta, patten, sabot
522
+ 503: cocktail shaker
523
+ 504: coffee mug
524
+ 505: coffeepot
525
+ 506: coil, spiral, volute, whorl, helix
526
+ 507: combination lock
527
+ 508: computer keyboard, keypad
528
+ 509: confectionery, confectionary, candy store
529
+ 510: container ship, containership, container vessel
530
+ 511: convertible
531
+ 512: corkscrew, bottle screw
532
+ 513: cornet, horn, trumpet, trump
533
+ 514: cowboy boot
534
+ 515: cowboy hat, ten-gallon hat
535
+ 516: cradle
536
+ 517: crane
537
+ 518: crash helmet
538
+ 519: crate
539
+ 520: crib, cot
540
+ 521: Crock Pot
541
+ 522: croquet ball
542
+ 523: crutch
543
+ 524: cuirass
544
+ 525: dam, dike, dyke
545
+ 526: desk
546
+ 527: desktop computer
547
+ 528: dial telephone, dial phone
548
+ 529: diaper, nappy, napkin
549
+ 530: digital clock
550
+ 531: digital watch
551
+ 532: dining table, board
552
+ 533: dishrag, dishcloth
553
+ 534: dishwasher, dish washer, dishwashing machine
554
+ 535: disk brake, disc brake
555
+ 536: dock, dockage, docking facility
556
+ 537: dogsled, dog sled, dog sleigh
557
+ 538: dome
558
+ 539: doormat, welcome mat
559
+ 540: drilling platform, offshore rig
560
+ 541: drum, membranophone, tympan
561
+ 542: drumstick
562
+ 543: dumbbell
563
+ 544: Dutch oven
564
+ 545: electric fan, blower
565
+ 546: electric guitar
566
+ 547: electric locomotive
567
+ 548: entertainment center
568
+ 549: envelope
569
+ 550: espresso maker
570
+ 551: face powder
571
+ 552: feather boa, boa
572
+ 553: file, file cabinet, filing cabinet
573
+ 554: fireboat
574
+ 555: fire engine, fire truck
575
+ 556: fire screen, fireguard
576
+ 557: flagpole, flagstaff
577
+ 558: flute, transverse flute
578
+ 559: folding chair
579
+ 560: football helmet
580
+ 561: forklift
581
+ 562: fountain
582
+ 563: fountain pen
583
+ 564: four-poster
584
+ 565: freight car
585
+ 566: French horn, horn
586
+ 567: frying pan, frypan, skillet
587
+ 568: fur coat
588
+ 569: garbage truck, dustcart
589
+ 570: gasmask, respirator, gas helmet
590
+ 571: gas pump, gasoline pump, petrol pump, island dispenser
591
+ 572: goblet
592
+ 573: go-kart
593
+ 574: golf ball
594
+ 575: golfcart, golf cart
595
+ 576: gondola
596
+ 577: gong, tam-tam
597
+ 578: gown
598
+ 579: grand piano, grand
599
+ 580: greenhouse, nursery, glasshouse
600
+ 581: grille, radiator grille
601
+ 582: grocery store, grocery, food market, market
602
+ 583: guillotine
603
+ 584: hair slide
604
+ 585: hair spray
605
+ 586: half track
606
+ 587: hammer
607
+ 588: hamper
608
+ 589: hand blower, blow dryer, blow drier, hair dryer, hair drier
609
+ 590: hand-held computer, hand-held microcomputer
610
+ 591: handkerchief, hankie, hanky, hankey
611
+ 592: hard disc, hard disk, fixed disk
612
+ 593: harmonica, mouth organ, harp, mouth harp
613
+ 594: harp
614
+ 595: harvester, reaper
615
+ 596: hatchet
616
+ 597: holster
617
+ 598: home theater, home theatre
618
+ 599: honeycomb
619
+ 600: hook, claw
620
+ 601: hoopskirt, crinoline
621
+ 602: horizontal bar, high bar
622
+ 603: horse cart, horse-cart
623
+ 604: hourglass
624
+ 605: iPod
625
+ 606: iron, smoothing iron
626
+ 607: jack-o'-lantern
627
+ 608: jean, blue jean, denim
628
+ 609: jeep, landrover
629
+ 610: jersey, T-shirt, tee shirt
630
+ 611: jigsaw puzzle
631
+ 612: jinrikisha, ricksha, rickshaw
632
+ 613: joystick
633
+ 614: kimono
634
+ 615: knee pad
635
+ 616: knot
636
+ 617: lab coat, laboratory coat
637
+ 618: ladle
638
+ 619: lampshade, lamp shade
639
+ 620: laptop, laptop computer
640
+ 621: lawn mower, mower
641
+ 622: lens cap, lens cover
642
+ 623: letter opener, paper knife, paperknife
643
+ 624: library
644
+ 625: lifeboat
645
+ 626: lighter, light, igniter, ignitor
646
+ 627: limousine, limo
647
+ 628: liner, ocean liner
648
+ 629: lipstick, lip rouge
649
+ 630: Loafer
650
+ 631: lotion
651
+ 632: loudspeaker, speaker, speaker unit, loudspeaker system, speaker system
652
+ 633: loupe, jeweler's loupe
653
+ 634: lumbermill, sawmill
654
+ 635: magnetic compass
655
+ 636: mailbag, postbag
656
+ 637: mailbox, letter box
657
+ 638: maillot
658
+ 639: maillot, tank suit
659
+ 640: manhole cover
660
+ 641: maraca
661
+ 642: marimba, xylophone
662
+ 643: mask
663
+ 644: matchstick
664
+ 645: maypole
665
+ 646: maze, labyrinth
666
+ 647: measuring cup
667
+ 648: medicine chest, medicine cabinet
668
+ 649: megalith, megalithic structure
669
+ 650: microphone, mike
670
+ 651: microwave, microwave oven
671
+ 652: military uniform
672
+ 653: milk can
673
+ 654: minibus
674
+ 655: miniskirt, mini
675
+ 656: minivan
676
+ 657: missile
677
+ 658: mitten
678
+ 659: mixing bowl
679
+ 660: mobile home, manufactured home
680
+ 661: Model T
681
+ 662: modem
682
+ 663: monastery
683
+ 664: monitor
684
+ 665: moped
685
+ 666: mortar
686
+ 667: mortarboard
687
+ 668: mosque
688
+ 669: mosquito net
689
+ 670: motor scooter, scooter
690
+ 671: mountain bike, all-terrain bike, off-roader
691
+ 672: mountain tent
692
+ 673: mouse, computer mouse
693
+ 674: mousetrap
694
+ 675: moving van
695
+ 676: muzzle
696
+ 677: nail
697
+ 678: neck brace
698
+ 679: necklace
699
+ 680: nipple
700
+ 681: notebook, notebook computer
701
+ 682: obelisk
702
+ 683: oboe, hautboy, hautbois
703
+ 684: ocarina, sweet potato
704
+ 685: odometer, hodometer, mileometer, milometer
705
+ 686: oil filter
706
+ 687: organ, pipe organ
707
+ 688: oscilloscope, scope, cathode-ray oscilloscope, CRO
708
+ 689: overskirt
709
+ 690: oxcart
710
+ 691: oxygen mask
711
+ 692: packet
712
+ 693: paddle, boat paddle
713
+ 694: paddlewheel, paddle wheel
714
+ 695: padlock
715
+ 696: paintbrush
716
+ 697: pajama, pyjama, pj's, jammies
717
+ 698: palace
718
+ 699: panpipe, pandean pipe, syrinx
719
+ 700: paper towel
720
+ 701: parachute, chute
721
+ 702: parallel bars, bars
722
+ 703: park bench
723
+ 704: parking meter
724
+ 705: passenger car, coach, carriage
725
+ 706: patio, terrace
726
+ 707: pay-phone, pay-station
727
+ 708: pedestal, plinth, footstall
728
+ 709: pencil box, pencil case
729
+ 710: pencil sharpener
730
+ 711: perfume, essence
731
+ 712: Petri dish
732
+ 713: photocopier
733
+ 714: pick, plectrum, plectron
734
+ 715: pickelhaube
735
+ 716: picket fence, paling
736
+ 717: pickup, pickup truck
737
+ 718: pier
738
+ 719: piggy bank, penny bank
739
+ 720: pill bottle
740
+ 721: pillow
741
+ 722: ping-pong ball
742
+ 723: pinwheel
743
+ 724: pirate, pirate ship
744
+ 725: pitcher, ewer
745
+ 726: plane, carpenter's plane, woodworking plane
746
+ 727: planetarium
747
+ 728: plastic bag
748
+ 729: plate rack
749
+ 730: plow, plough
750
+ 731: plunger, plumber's helper
751
+ 732: Polaroid camera, Polaroid Land camera
752
+ 733: pole
753
+ 734: police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria
754
+ 735: poncho
755
+ 736: pool table, billiard table, snooker table
756
+ 737: pop bottle, soda bottle
757
+ 738: pot, flowerpot
758
+ 739: potter's wheel
759
+ 740: power drill
760
+ 741: prayer rug, prayer mat
761
+ 742: printer
762
+ 743: prison, prison house
763
+ 744: projectile, missile
764
+ 745: projector
765
+ 746: puck, hockey puck
766
+ 747: punching bag, punch bag, punching ball, punchball
767
+ 748: purse
768
+ 749: quill, quill pen
769
+ 750: quilt, comforter, comfort, puff
770
+ 751: racer, race car, racing car
771
+ 752: racket, racquet
772
+ 753: radiator
773
+ 754: radio, wireless
774
+ 755: radio telescope, radio reflector
775
+ 756: rain barrel
776
+ 757: recreational vehicle, RV, R.V.
777
+ 758: reel
778
+ 759: reflex camera
779
+ 760: refrigerator, icebox
780
+ 761: remote control, remote
781
+ 762: restaurant, eating house, eating place, eatery
782
+ 763: revolver, six-gun, six-shooter
783
+ 764: rifle
784
+ 765: rocking chair, rocker
785
+ 766: rotisserie
786
+ 767: rubber eraser, rubber, pencil eraser
787
+ 768: rugby ball
788
+ 769: rule, ruler
789
+ 770: running shoe
790
+ 771: safe
791
+ 772: safety pin
792
+ 773: saltshaker, salt shaker
793
+ 774: sandal
794
+ 775: sarong
795
+ 776: sax, saxophone
796
+ 777: scabbard
797
+ 778: scale, weighing machine
798
+ 779: school bus
799
+ 780: schooner
800
+ 781: scoreboard
801
+ 782: screen, CRT screen
802
+ 783: screw
803
+ 784: screwdriver
804
+ 785: seat belt, seatbelt
805
+ 786: sewing machine
806
+ 787: shield, buckler
807
+ 788: shoe shop, shoe-shop, shoe store
808
+ 789: shoji
809
+ 790: shopping basket
810
+ 791: shopping cart
811
+ 792: shovel
812
+ 793: shower cap
813
+ 794: shower curtain
814
+ 795: ski
815
+ 796: ski mask
816
+ 797: sleeping bag
817
+ 798: slide rule, slipstick
818
+ 799: sliding door
819
+ 800: slot, one-armed bandit
820
+ 801: snorkel
821
+ 802: snowmobile
822
+ 803: snowplow, snowplough
823
+ 804: soap dispenser
824
+ 805: soccer ball
825
+ 806: sock
826
+ 807: solar dish, solar collector, solar furnace
827
+ 808: sombrero
828
+ 809: soup bowl
829
+ 810: space bar
830
+ 811: space heater
831
+ 812: space shuttle
832
+ 813: spatula
833
+ 814: speedboat
834
+ 815: spider web, spider's web
835
+ 816: spindle
836
+ 817: sports car, sport car
837
+ 818: spotlight, spot
838
+ 819: stage
839
+ 820: steam locomotive
840
+ 821: steel arch bridge
841
+ 822: steel drum
842
+ 823: stethoscope
843
+ 824: stole
844
+ 825: stone wall
845
+ 826: stopwatch, stop watch
846
+ 827: stove
847
+ 828: strainer
848
+ 829: streetcar, tram, tramcar, trolley, trolley car
849
+ 830: stretcher
850
+ 831: studio couch, day bed
851
+ 832: stupa, tope
852
+ 833: submarine, pigboat, sub, U-boat
853
+ 834: suit, suit of clothes
854
+ 835: sundial
855
+ 836: sunglass
856
+ 837: sunglasses, dark glasses, shades
857
+ 838: sunscreen, sunblock, sun blocker
858
+ 839: suspension bridge
859
+ 840: swab, swob, mop
860
+ 841: sweatshirt
861
+ 842: swimming trunks, bathing trunks
862
+ 843: swing
863
+ 844: switch, electric switch, electrical switch
864
+ 845: syringe
865
+ 846: table lamp
866
+ 847: tank, army tank, armored combat vehicle, armoured combat vehicle
867
+ 848: tape player
868
+ 849: teapot
869
+ 850: teddy, teddy bear
870
+ 851: television, television system
871
+ 852: tennis ball
872
+ 853: thatch, thatched roof
873
+ 854: theater curtain, theatre curtain
874
+ 855: thimble
875
+ 856: thresher, thrasher, threshing machine
876
+ 857: throne
877
+ 858: tile roof
878
+ 859: toaster
879
+ 860: tobacco shop, tobacconist shop, tobacconist
880
+ 861: toilet seat
881
+ 862: torch
882
+ 863: totem pole
883
+ 864: tow truck, tow car, wrecker
884
+ 865: toyshop
885
+ 866: tractor
886
+ 867: trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi
887
+ 868: tray
888
+ 869: trench coat
889
+ 870: tricycle, trike, velocipede
890
+ 871: trimaran
891
+ 872: tripod
892
+ 873: triumphal arch
893
+ 874: trolleybus, trolley coach, trackless trolley
894
+ 875: trombone
895
+ 876: tub, vat
896
+ 877: turnstile
897
+ 878: typewriter keyboard
898
+ 879: umbrella
899
+ 880: unicycle, monocycle
900
+ 881: upright, upright piano
901
+ 882: vacuum, vacuum cleaner
902
+ 883: vase
903
+ 884: vault
904
+ 885: velvet
905
+ 886: vending machine
906
+ 887: vestment
907
+ 888: viaduct
908
+ 889: violin, fiddle
909
+ 890: volleyball
910
+ 891: waffle iron
911
+ 892: wall clock
912
+ 893: wallet, billfold, notecase, pocketbook
913
+ 894: wardrobe, closet, press
914
+ 895: warplane, military plane
915
+ 896: washbasin, handbasin, washbowl, lavabo, wash-hand basin
916
+ 897: washer, automatic washer, washing machine
917
+ 898: water bottle
918
+ 899: water jug
919
+ 900: water tower
920
+ 901: whiskey jug
921
+ 902: whistle
922
+ 903: wig
923
+ 904: window screen
924
+ 905: window shade
925
+ 906: Windsor tie
926
+ 907: wine bottle
927
+ 908: wing
928
+ 909: wok
929
+ 910: wooden spoon
930
+ 911: wool, woolen, woollen
931
+ 912: worm fence, snake fence, snake-rail fence, Virginia fence
932
+ 913: wreck
933
+ 914: yawl
934
+ 915: yurt
935
+ 916: web site, website, internet site, site
936
+ 917: comic book
937
+ 918: crossword puzzle, crossword
938
+ 919: street sign
939
+ 920: traffic light, traffic signal, stoplight
940
+ 921: book jacket, dust cover, dust jacket, dust wrapper
941
+ 922: menu
942
+ 923: plate
943
+ 924: guacamole
944
+ 925: consomme
945
+ 926: hot pot, hotpot
946
+ 927: trifle
947
+ 928: ice cream, icecream
948
+ 929: ice lolly, lolly, lollipop, popsicle
949
+ 930: French loaf
950
+ 931: bagel, beigel
951
+ 932: pretzel
952
+ 933: cheeseburger
953
+ 934: hotdog, hot dog, red hot
954
+ 935: mashed potato
955
+ 936: head cabbage
956
+ 937: broccoli
957
+ 938: cauliflower
958
+ 939: zucchini, courgette
959
+ 940: spaghetti squash
960
+ 941: acorn squash
961
+ 942: butternut squash
962
+ 943: cucumber, cuke
963
+ 944: artichoke, globe artichoke
964
+ 945: bell pepper
965
+ 946: cardoon
966
+ 947: mushroom
967
+ 948: Granny Smith
968
+ 949: strawberry
969
+ 950: orange
970
+ 951: lemon
971
+ 952: fig
972
+ 953: pineapple, ananas
973
+ 954: banana
974
+ 955: jackfruit, jak, jack
975
+ 956: custard apple
976
+ 957: pomegranate
977
+ 958: hay
978
+ 959: carbonara
979
+ 960: chocolate sauce, chocolate syrup
980
+ 961: dough
981
+ 962: meat loaf, meatloaf
982
+ 963: pizza, pizza pie
983
+ 964: potpie
984
+ 965: burrito
985
+ 966: red wine
986
+ 967: espresso
987
+ 968: cup
988
+ 969: eggnog
989
+ 970: alp
990
+ 971: bubble
991
+ 972: cliff, drop, drop-off
992
+ 973: coral reef
993
+ 974: geyser
994
+ 975: lakeside, lakeshore
995
+ 976: promontory, headland, head, foreland
996
+ 977: sandbar, sand bar
997
+ 978: seashore, coast, seacoast, sea-coast
998
+ 979: valley, vale
999
+ 980: volcano
1000
+ 981: ballplayer, baseball player
1001
+ 982: groom, bridegroom
1002
+ 983: scuba diver
1003
+ 984: rapeseed
1004
+ 985: daisy
1005
+ 986: yellow lady's slipper, yellow lady-slipper, Cypripedium calceolus, Cypripedium
1006
+ parviflorum
1007
+ 987: corn
1008
+ 988: acorn
1009
+ 989: hip, rose hip, rosehip
1010
+ 990: buckeye, horse chestnut, conker
1011
+ 991: coral fungus
1012
+ 992: agaric
1013
+ 993: gyromitra
1014
+ 994: stinkhorn, carrion fungus
1015
+ 995: earthstar
1016
+ 996: hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa
1017
+ 997: bolete
1018
+ 998: ear, spike, capitulum
1019
+ 999: toilet tissue, toilet paper, bathroom tissue