-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathclip_text.py
58 lines (50 loc) · 3.47 KB
/
clip_text.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
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
BACKGROUND_CATEGORY = ['ground','land','grass','tree','building','wall','sky','lake','water','river','sea','railway','railroad','keyboard','helmet',
'cloud','house','mountain','ocean','road','rock','street','valley','bridge','sign',
]
class_names = ['aeroplane', 'bicycle', 'bird', 'boat', 'bottle',
'bus', 'car', 'cat', 'chair', 'cow',
'diningtable', 'dog', 'horse', 'motorbike', 'person',
'pottedplant', 'sheep', 'sofa', 'train', 'tvmonitor',
]
new_class_names = ['aeroplane', 'bicycle', 'bird avian', 'boat', 'bottle',
'bus', 'car', 'cat', 'chair seat', 'cow',
'diningtable', 'dog', 'horse', 'motorbike', 'person with clothes,people,human',
'pottedplant', 'sheep', 'sofa', 'train', 'tvmonitor screen',
]
class_names_coco = ['person','bicycle','car','motorbike','aeroplane',
'bus','train','truck','boat','traffic light',
'fire hydrant','stop sign','parking meter','bench','bird',
'cat','dog','horse','sheep','cow',
'elephant','bear','zebra','giraffe','backpack',
'umbrella','handbag','tie','suitcase','frisbee',
'skis','snowboard','sports ball','kite','baseball bat',
'baseball glove','skateboard','surfboard','tennis racket','bottle',
'wine glass','cup','fork','knife','spoon',
'bowl','banana','apple','sandwich','orange',
'broccoli','carrot','hot dog','pizza','donut',
'cake','chair','sofa','pottedplant','bed',
'diningtable','toilet','tvmonitor','laptop','mouse',
'remote','keyboard','cell phone','microwave','oven',
'toaster','sink','refrigerator','book','clock',
'vase','scissors','teddy bear','hair drier','toothbrush',
]
new_class_names_coco = ['person with clothes,people,human','bicycle','car','motorbike','aeroplane',
'bus','train','truck','boat','traffic light',
'fire hydrant','stop sign','parking meter','bench','bird avian',
'cat','dog','horse','sheep','cow',
'elephant','bear','zebra','giraffe','backpack,bag',
'umbrella,parasol','handbag,purse','necktie','suitcase','frisbee',
'skis','sknowboard','sports ball','kite','baseball bat',
'glove','skateboard','surfboard','tennis racket','bottle',
'wine glass','cup','fork','knife','dessertspoon',
'bowl','banana','apple','sandwich','orange',
'broccoli','carrot','hot dog','pizza','donut',
'cake','chair seat','sofa','pottedplant','bed',
'diningtable','toilet','tvmonitor screen','laptop','mouse',
'remote control','keyboard','cell phone','microwave','oven',
'toaster','sink','refrigerator','book','clock',
'vase','scissors','teddy bear','hairdrier,blowdrier','toothbrush',
]
BACKGROUND_CATEGORY_COCO = ['ground','land','grass','tree','building','wall','sky','lake','water','river','sea','railway','railroad','helmet',
'cloud','house','mountain','ocean','road','rock','street','valley','bridge',
]