-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconst.py
31 lines (28 loc) · 2.5 KB
/
const.py
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
COCO10_CLASSES = ['airplane', 'automobile', 'bird', 'cat', 'deer', 'dog', 'frog', 'horse', 'ship', 'truck']
KOR_COCO10_CLSSES = ['비행기', '자동차', '새', '고양이', '사슴', '강아지', '개구리', '말', '배', '트럭']
COCO100_CLASSES = [
'apple', 'aquarium_fish', 'baby', 'bear', 'beaver', 'bed', 'bee', 'beetle', 'bicycle', 'bottle',
'bowl', 'boy', 'bridge', 'bus', 'butterfly', 'camel', 'can', 'castle', 'caterpillar', 'cattle',
'chair', 'chimpanzee', 'clock', 'cloud', 'cockroach', 'couch', 'crab', 'crocodile', 'cup', 'dinosaur',
'dolphin', 'elephant', 'flatfish', 'forest', 'fox', 'girl', 'hamster', 'house', 'kangaroo', 'keyboard',
'lamp', 'lawn_mower', 'leopard', 'lion', 'lizard', 'lobster', 'man', 'maple_tree', 'motorcycle',
'mountain', 'mouse', 'mushroom', 'oak_tree', 'orange', 'orchid', 'otter', 'palm_tree', 'pear', 'pickup_truck',
'pine_tree', 'plain', 'plate', 'poppy', 'porcupine', 'possum', 'rabbit', 'raccoon', 'ray', 'road',
'rocket', 'rose', 'sea', 'seal', 'shark', 'shrew', 'skunk', 'skyscraper', 'snail',
'snake', 'spider', 'squirrel', 'streetcar', 'sunflower', 'sweet_pepper', 'table', 'tank', 'telephone', 'television',
'tiger', 'tractor', 'train', 'trout', 'tulip', 'turtle', 'wardrobe', 'whale', 'willow_tree', 'wolf',
'woman', 'worm'
]
KOR_COCO100_CLASSES = [
'사과', '물고기', '아기', '곰', '비버', '침대', '벌', '딱정벌레', '자전거', '병',
'그릇', '소년', '다리', '버스', '나비', '낙타', '깡통', '성', '애벌레', '소',
'의자', '침팬지', '시계', '구름', '바퀴벌레', '소파', '게', '악어', '컵', '공룡',
'돌고래', '코끼리', '넙치', '숲', '여우', '소녀', '햄스터', '집', '캥거루', '키보드',
'램프', '잔디 깎기', '표범', '사자', '도마뱀', '바닷가재', '남자', '단풍나무', '오토바이',
'산', '쥐', '버섯', '참나무', '오렌지', '난초', '수달', '야자나무', '배', '트럭',
'소나무', '평원', '접시', '양귀비', '호저', '주머니쥐', '토끼', '너구리', '가오리', '도로',
'로켓', '장미', '바다', '물개', '상어', '뾰족뒤쥐', '스컹크', '고층 건물', '달팽이',
'뱀', '거미', '다람쥐', '전차', '해바라기', '피망', '탁자', '탱크', '전화기', '텔레비전',
'호랑이', '트랙터', '기차', '송어', '튤립', '거북이', '옷장', '고래', '버드나무', '늑대',
'여자', '벌레'
]