-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhico_list.py
864 lines (859 loc) · 28.9 KB
/
hico_list.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
hico_verb_object_list = [('board', 'airplane'),
('direct', 'airplane'),
('exit', 'airplane'),
('fly', 'airplane'),
('inspect', 'airplane'),
('load', 'airplane'),
('ride', 'airplane'),
('sit on', 'airplane'),
('wash', 'airplane'),
('no interaction', 'airplane'),
('carry', 'bicycle'),
('hold', 'bicycle'),
('inspect', 'bicycle'),
('jump', 'bicycle'),
('hop on', 'bicycle'),
('park', 'bicycle'),
('push', 'bicycle'),
('repair', 'bicycle'),
('ride', 'bicycle'),
('sit on', 'bicycle'),
('straddle', 'bicycle'),
('walk', 'bicycle'),
('wash', 'bicycle'),
('no interaction', 'bicycle'),
('chase', 'bird'),
('feed', 'bird'),
('hold', 'bird'),
('pet', 'bird'),
('release', 'bird'),
('watch', 'bird'),
('no interaction', 'bird'),
('board', 'boat'),
('drive', 'boat'),
('exit', 'boat'),
('inspect', 'boat'),
('jump', 'boat'),
('launch', 'boat'),
('repair', 'boat'),
('ride', 'boat'),
('row', 'boat'),
('sail', 'boat'),
('sit on', 'boat'),
('stand on', 'boat'),
('tie', 'boat'),
('wash', 'boat'),
('no interaction', 'boat'),
('carry', 'bottle'),
('drink with', 'bottle'),
('hold', 'bottle'),
('inspect', 'bottle'),
('lick', 'bottle'),
('open', 'bottle'),
('pour', 'bottle'),
('no interaction', 'bottle'),
('board', 'bus'),
('direct', 'bus'),
('drive', 'bus'),
('exit', 'bus'),
('inspect', 'bus'),
('load', 'bus'),
('ride', 'bus'),
('sit on', 'bus'),
('wash', 'bus'),
('wave', 'bus'),
('no interaction', 'bus'),
('board', 'car'),
('direct', 'car'),
('drive', 'car'),
('hose', 'car'),
('inspect', 'car'),
('jump', 'car'),
('load', 'car'),
('park', 'car'),
('ride', 'car'),
('wash', 'car'),
('no interaction', 'car'),
('dry', 'cat'),
('feed', 'cat'),
('hold', 'cat'),
('hug', 'cat'),
('kiss', 'cat'),
('pet', 'cat'),
('scratch', 'cat'),
('wash', 'cat'),
('chase', 'cat'),
('no interaction', 'cat'),
('carry', 'chair'),
('hold', 'chair'),
('lie on', 'chair'),
('sit on', 'chair'),
('stand on', 'chair'),
('no interaction', 'chair'),
('carry', 'couch'),
('lie on', 'couch'),
('sit on', 'couch'),
('no interaction', 'couch'),
('feed', 'cow'),
('herd', 'cow'),
('hold', 'cow'),
('hug', 'cow'),
('kiss', 'cow'),
('lasso', 'cow'),
('milk', 'cow'),
('pet', 'cow'),
('ride', 'cow'),
('walk', 'cow'),
('no interaction', 'cow'),
('clean', 'dining table'),
('eat at', 'dining table'),
('sit at', 'dining table'),
('no interaction', 'dining table'),
('carry', 'dog'),
('dry', 'dog'),
('feed', 'dog'),
('groom', 'dog'),
('hold', 'dog'),
('hose', 'dog'),
('hug', 'dog'),
('inspect', 'dog'),
('kiss', 'dog'),
('pet', 'dog'),
('run', 'dog'),
('scratch', 'dog'),
('straddle', 'dog'),
('train', 'dog'),
('walk', 'dog'),
('wash', 'dog'),
('chase', 'dog'),
('no interaction', 'dog'),
('feed', 'horse'),
('groom', 'horse'),
('hold', 'horse'),
('hug', 'horse'),
('jump', 'horse'),
('kiss', 'horse'),
('load', 'horse'),
('hop on', 'horse'),
('pet', 'horse'),
('race', 'horse'),
('ride', 'horse'),
('run', 'horse'),
('straddle', 'horse'),
('train', 'horse'),
('walk', 'horse'),
('wash', 'horse'),
('no interaction', 'horse'),
('hold', 'motorcycle'),
('inspect', 'motorcycle'),
('jump', 'motorcycle'),
('hop on', 'motorcycle'),
('park', 'motorcycle'),
('push', 'motorcycle'),
('race', 'motorcycle'),
('ride', 'motorcycle'),
('sit on', 'motorcycle'),
('straddle', 'motorcycle'),
('turn', 'motorcycle'),
('walk', 'motorcycle'),
('wash', 'motorcycle'),
('no interaction', 'motorcycle'),
('carry', 'person'),
('greet', 'person'),
('hold', 'person'),
('hug', 'person'),
('kiss', 'person'),
('stab', 'person'),
('tag', 'person'),
('teach', 'person'),
('lick', 'person'),
('no interaction', 'person'),
('carry', 'potted plant'),
('hold', 'potted plant'),
('hose', 'potted plant'),
('no interaction', 'potted plant'),
('carry', 'sheep'),
('feed', 'sheep'),
('herd', 'sheep'),
('hold', 'sheep'),
('hug', 'sheep'),
('kiss', 'sheep'),
('pet', 'sheep'),
('ride', 'sheep'),
('shear', 'sheep'),
('walk', 'sheep'),
('wash', 'sheep'),
('no interaction', 'sheep'),
('board', 'train'),
('drive', 'train'),
('exit', 'train'),
('load', 'train'),
('ride', 'train'),
('sit on', 'train'),
('wash', 'train'),
('no interaction', 'train'),
('control', 'tv'),
('repair', 'tv'),
('watch', 'tv'),
('no interaction', 'tv'),
('buy', 'apple'),
('cut', 'apple'),
('eat', 'apple'),
('hold', 'apple'),
('inspect', 'apple'),
('peel', 'apple'),
('pick', 'apple'),
('smell', 'apple'),
('wash', 'apple'),
('no interaction', 'apple'),
('carry', 'backpack'),
('hold', 'backpack'),
('inspect', 'backpack'),
('open', 'backpack'),
('wear', 'backpack'),
('no interaction', 'backpack'),
('buy', 'banana'),
('carry', 'banana'),
('cut', 'banana'),
('eat', 'banana'),
('hold', 'banana'),
('inspect', 'banana'),
('peel', 'banana'),
('pick', 'banana'),
('smell', 'banana'),
('no interaction', 'banana'),
('break', 'baseball bat'),
('carry', 'baseball bat'),
('hold', 'baseball bat'),
('sign', 'baseball bat'),
('swing', 'baseball bat'),
('throw', 'baseball bat'),
('wield', 'baseball bat'),
('no interaction', 'baseball bat'),
('hold', 'baseball glove'),
('wear', 'baseball glove'),
('no interaction', 'baseball glove'),
('feed', 'bear'),
('hunt', 'bear'),
('watch', 'bear'),
('no interaction', 'bear'),
('clean', 'bed'),
('lie on', 'bed'),
('sit on', 'bed'),
('no interaction', 'bed'),
('inspect', 'bench'),
('lie on', 'bench'),
('sit on', 'bench'),
('no interaction', 'bench'),
('carry', 'book'),
('hold', 'book'),
('open', 'book'),
('read', 'book'),
('no interaction', 'book'),
('hold', 'bowl'),
('stir', 'bowl'),
('wash', 'bowl'),
('lick', 'bowl'),
('no interaction', 'bowl'),
('cut', 'broccoli'),
('eat', 'broccoli'),
('hold', 'broccoli'),
('smell', 'broccoli'),
('stir', 'broccoli'),
('wash', 'broccoli'),
('no interaction', 'broccoli'),
('blow', 'cake'),
('carry', 'cake'),
('cut', 'cake'),
('eat', 'cake'),
('hold', 'cake'),
('light', 'cake'),
('make', 'cake'),
('pick up', 'cake'),
('no interaction', 'cake'),
('carry', 'carrot'),
('cook', 'carrot'),
('cut', 'carrot'),
('eat', 'carrot'),
('hold', 'carrot'),
('peel', 'carrot'),
('smell', 'carrot'),
('stir', 'carrot'),
('wash', 'carrot'),
('no interaction', 'carrot'),
('carry', 'cell phone'),
('hold', 'cell phone'),
('read', 'cell phone'),
('repair', 'cell phone'),
('talk on', 'cell phone'),
('text on', 'cell phone'),
('no interaction', 'cell phone'),
('check', 'clock'),
('hold', 'clock'),
('repair', 'clock'),
('set', 'clock'),
('no interaction', 'clock'),
('carry', 'cup'),
('drink with', 'cup'),
('hold', 'cup'),
('inspect', 'cup'),
('pour', 'cup'),
('sip', 'cup'),
('smell', 'cup'),
('fill', 'cup'),
('wash', 'cup'),
('no interaction', 'cup'),
('buy', 'donut'),
('carry', 'donut'),
('eat', 'donut'),
('hold', 'donut'),
('make', 'donut'),
('pick up', 'donut'),
('smell', 'donut'),
('no interaction', 'donut'),
('feed', 'elephant'),
('hold', 'elephant'),
('hose', 'elephant'),
('hug', 'elephant'),
('kiss', 'elephant'),
('hop on', 'elephant'),
('pet', 'elephant'),
('ride', 'elephant'),
('walk', 'elephant'),
('wash', 'elephant'),
('watch', 'elephant'),
('no interaction', 'elephant'),
('hug', 'fire hydrant'),
('inspect', 'fire hydrant'),
('open', 'fire hydrant'),
('paint', 'fire hydrant'),
('no interaction', 'fire hydrant'),
('hold', 'fork'),
('lift', 'fork'),
('stick', 'fork'),
('lick', 'fork'),
('wash', 'fork'),
('no interaction', 'fork'),
('block', 'frisbee'),
('catch', 'frisbee'),
('hold', 'frisbee'),
('spin', 'frisbee'),
('throw', 'frisbee'),
('no interaction', 'frisbee'),
('feed', 'giraffe'),
('kiss', 'giraffe'),
('pet', 'giraffe'),
('ride', 'giraffe'),
('watch', 'giraffe'),
('no interaction', 'giraffe'),
('hold', 'hair drier'),
('operate', 'hair drier'),
('repair', 'hair drier'),
('no interaction', 'hair drier'),
('carry', 'handbag'),
('hold', 'handbag'),
('inspect', 'handbag'),
('no interaction', 'handbag'),
('carry', 'hot dog'),
('cook', 'hot dog'),
('cut', 'hot dog'),
('eat', 'hot dog'),
('hold', 'hot dog'),
('make', 'hot dog'),
('no interaction', 'hot dog'),
('carry', 'keyboard'),
('clean', 'keyboard'),
('hold', 'keyboard'),
('type on', 'keyboard'),
('no interaction', 'keyboard'),
('assemble', 'kite'),
('carry', 'kite'),
('fly', 'kite'),
('hold', 'kite'),
('inspect', 'kite'),
('launch', 'kite'),
('pull', 'kite'),
('no interaction', 'kite'),
('cut with', 'knife'),
('hold', 'knife'),
('stick', 'knife'),
('wash', 'knife'),
('wield', 'knife'),
('lick', 'knife'),
('no interaction', 'knife'),
('hold', 'laptop'),
('open', 'laptop'),
('read', 'laptop'),
('repair', 'laptop'),
('type on', 'laptop'),
('no interaction', 'laptop'),
('clean', 'microwave'),
('open', 'microwave'),
('operate', 'microwave'),
('no interaction', 'microwave'),
('control', 'mouse'),
('hold', 'mouse'),
('repair', 'mouse'),
('no interaction', 'mouse'),
('buy', 'orange'),
('cut', 'orange'),
('eat', 'orange'),
('hold', 'orange'),
('inspect', 'orange'),
('peel', 'orange'),
('pick', 'orange'),
('squeeze', 'orange'),
('wash', 'orange'),
('no interaction', 'orange'),
('clean', 'oven'),
('hold', 'oven'),
('inspect', 'oven'),
('open', 'oven'),
('repair', 'oven'),
('operate', 'oven'),
('no interaction', 'oven'),
('check', 'parking meter'),
('pay', 'parking meter'),
('repair', 'parking meter'),
('no interaction', 'parking meter'),
('buy', 'pizza'),
('carry', 'pizza'),
('cook', 'pizza'),
('cut', 'pizza'),
('eat', 'pizza'),
('hold', 'pizza'),
('make', 'pizza'),
('pick up', 'pizza'),
('slide', 'pizza'),
('smell', 'pizza'),
('no interaction', 'pizza'),
('clean', 'refrigerator'),
('hold', 'refrigerator'),
('move', 'refrigerator'),
('open', 'refrigerator'),
('no interaction', 'refrigerator'),
('hold', 'remote'),
('point', 'remote'),
('swing', 'remote'),
('no interaction', 'remote'),
('carry', 'sandwich'),
('cook', 'sandwich'),
('cut', 'sandwich'),
('eat', 'sandwich'),
('hold', 'sandwich'),
('make', 'sandwich'),
('no interaction', 'sandwich'),
('cut with', 'scissors'),
('hold', 'scissors'),
('open', 'scissors'),
('no interaction', 'scissors'),
('clean', 'sink'),
('repair', 'sink'),
('wash', 'sink'),
('no interaction', 'sink'),
('carry', 'skateboard'),
('flip', 'skateboard'),
('grind', 'skateboard'),
('hold', 'skateboard'),
('jump', 'skateboard'),
('pick up', 'skateboard'),
('ride', 'skateboard'),
('sit on', 'skateboard'),
('stand on', 'skateboard'),
('no interaction', 'skateboard'),
('adjust', 'skis'),
('carry', 'skis'),
('hold', 'skis'),
('inspect', 'skis'),
('jump', 'skis'),
('pick up', 'skis'),
('repair', 'skis'),
('ride', 'skis'),
('stand on', 'skis'),
('wear', 'skis'),
('no interaction', 'skis'),
('adjust', 'snowboard'),
('carry', 'snowboard'),
('grind', 'snowboard'),
('hold', 'snowboard'),
('jump', 'snowboard'),
('ride', 'snowboard'),
('stand on', 'snowboard'),
('wear', 'snowboard'),
('no interaction', 'snowboard'),
('hold', 'spoon'),
('lick', 'spoon'),
('wash', 'spoon'),
('sip', 'spoon'),
('no interaction', 'spoon'),
('block', 'sports ball'),
('carry', 'sports ball'),
('catch', 'sports ball'),
('dribble', 'sports ball'),
('hit', 'sports ball'),
('hold', 'sports ball'),
('inspect', 'sports ball'),
('kick', 'sports ball'),
('pick up', 'sports ball'),
('serve', 'sports ball'),
('sign', 'sports ball'),
('spin', 'sports ball'),
('throw', 'sports ball'),
('no interaction', 'sports ball'),
('hold', 'stop sign'),
('stand under', 'stop sign'),
('stop at', 'stop sign'),
('no interaction', 'stop sign'),
('carry', 'suitcase'),
('drag', 'suitcase'),
('hold', 'suitcase'),
('hug', 'suitcase'),
('load', 'suitcase'),
('open', 'suitcase'),
('pack', 'suitcase'),
('pick up', 'suitcase'),
('zip', 'suitcase'),
('no interaction', 'suitcase'),
('carry', 'surfboard'),
('drag', 'surfboard'),
('hold', 'surfboard'),
('inspect', 'surfboard'),
('jump', 'surfboard'),
('lie on', 'surfboard'),
('load', 'surfboard'),
('ride', 'surfboard'),
('stand on', 'surfboard'),
('sit on', 'surfboard'),
('wash', 'surfboard'),
('no interaction', 'surfboard'),
('carry', 'teddy bear'),
('hold', 'teddy bear'),
('hug', 'teddy bear'),
('kiss', 'teddy bear'),
('no interaction', 'teddy bear'),
('carry', 'tennis racket'),
('hold', 'tennis racket'),
('inspect', 'tennis racket'),
('swing', 'tennis racket'),
('no interaction', 'tennis racket'),
('adjust', 'tie'),
('cut', 'tie'),
('hold', 'tie'),
('inspect', 'tie'),
('pull', 'tie'),
('tie', 'tie'),
('wear', 'tie'),
('no interaction', 'tie'),
('hold', 'toaster'),
('operate', 'toaster'),
('repair', 'toaster'),
('no interaction', 'toaster'),
('clean', 'toilet'),
('flush', 'toilet'),
('open', 'toilet'),
('repair', 'toilet'),
('sit on', 'toilet'),
('stand on', 'toilet'),
('wash', 'toilet'),
('no interaction', 'toilet'),
('brush with', 'toothbrush'),
('hold', 'toothbrush'),
('wash', 'toothbrush'),
('no interaction', 'toothbrush'),
('install', 'traffic light'),
('repair', 'traffic light'),
('stand under', 'traffic light'),
('stop at', 'traffic light'),
('no interaction', 'traffic light'),
('direct', 'truck'),
('drive', 'truck'),
('inspect', 'truck'),
('load', 'truck'),
('repair', 'truck'),
('ride', 'truck'),
('sit on', 'truck'),
('wash', 'truck'),
('no interaction', 'truck'),
('carry', 'umbrella'),
('hold', 'umbrella'),
('lose', 'umbrella'),
('open', 'umbrella'),
('repair', 'umbrella'),
('set', 'umbrella'),
('stand under', 'umbrella'),
('no interaction', 'umbrella'),
('hold', 'vase'),
('make', 'vase'),
('paint', 'vase'),
('no interaction', 'vase'),
('fill', 'wine glass'),
('hold', 'wine glass'),
('sip', 'wine glass'),
('toast', 'wine glass'),
('lick', 'wine glass'),
('wash', 'wine glass'),
('no interaction', 'wine glass'),
('feed', 'zebra'),
('hold', 'zebra'),
('pet', 'zebra'),
('watch', 'zebra'),
('no interaction', 'zebra')]
hico_verbs = ['adjust', 'assemble', 'block', 'blow', 'board', 'break', 'brush with', 'buy', 'carry', 'catch',
'chase', 'check', 'clean', 'control', 'cook', 'cut', 'cut with', 'direct', 'drag', 'dribble',
'drink with', 'drive', 'dry', 'eat', 'eat at', 'exit', 'feed', 'fill', 'flip', 'flush',
'fly', 'greet', 'grind', 'groom', 'herd', 'hit', 'hold', 'hop on', 'hose', 'hug',
'hunt', 'inspect', 'install', 'jump', 'kick', 'kiss', 'lasso', 'launch', 'lick', 'lie on',
'lift', 'light', 'load', 'lose', 'make', 'milk', 'move', 'no interaction', 'open', 'operate',
'pack', 'paint', 'park', 'pay', 'peel', 'pet', 'pick', 'pick up', 'point', 'pour',
'pull', 'push', 'race', 'read', 'release', 'repair', 'ride', 'row', 'run', 'sail',
'scratch', 'serve', 'set', 'shear', 'sign', 'sip', 'sit at', 'sit on', 'slide', 'smell',
'spin', 'squeeze', 'stab', 'stand on', 'stand under', 'stick', 'stir', 'stop at', 'straddle', 'swing',
'tag', 'talk on', 'teach', 'text on', 'throw', 'tie', 'toast', 'train', 'turn', 'type on',
'walk', 'wash', 'watch', 'wave', 'wear', 'wield', 'zip']
hico_objects = ['person', 'bicycle', 'car', 'motorcycle', 'airplane', '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', 'couch', 'potted_plant', 'bed', 'dining_table', 'toilet', 'tv', 'laptop', 'mouse', 'remote', 'keyboard', 'cell_phone',
'microwave', 'oven', 'toaster', 'sink', 'refrigerator', 'book', 'clock', 'vase', 'scissors', 'teddy_bear', 'hair_drier', 'toothbrush']
human_name=['person_who_interact_with_person', 'person_who_interact_with_bicycle', 'person_who_interact_with_car', 'person_who_interact_with_motorcycle', 'person_who_interact_with_airplane', 'person_who_interact_with_bus', 'person_who_interact_with_train', 'person_who_interact_with_truck',
'person_who_interact_with_boat', 'person_who_interact_with_traffic_light', 'person_who_interact_with_fire_hydrant', 'person_who_interact_with_stop_sign', 'person_who_interact_with_parking_meter', 'person_who_interact_with_bench',
'person_who_interact_with_bird', 'person_who_interact_with_cat', 'person_who_interact_with_dog', 'person_who_interact_with_horse', 'person_who_interact_with_sheep', 'person_who_interact_with_cow', 'person_who_interact_with_elephant', 'person_who_interact_with_bear',
'person_who_interact_with_zebra', 'person_who_interact_with_giraffe', 'person_who_interact_with_backpack', 'person_who_interact_with_umbrella', 'person_who_interact_with_handbag', 'person_who_interact_with_tie', 'person_who_interact_with_suitcase', 'person_who_interact_with_frisbee',
'person_who_interact_with_skis', 'person_who_interact_with_snowboard', 'person_who_interact_with_sports_ball', 'person_who_interact_with_kite', 'person_who_interact_with_baseball_bat', 'person_who_interact_with_baseball_glove', 'person_who_interact_with_skateboard', 'person_who_interact_with_surfboard', 'person_who_interact_with_tennis_racket', 'person_who_interact_with_bottle', 'person_who_interact_with_wine_glass', 'person_who_interact_with_cup', 'person_who_interact_with_fork', 'person_who_interact_with_knife', 'person_who_interact_with_spoon', 'person_who_interact_with_bowl', 'person_who_interact_with_banana', 'person_who_interact_with_apple', 'person_who_interact_with_sandwich', 'person_who_interact_with_orange', 'person_who_interact_with_broccoli', 'person_who_interact_with_carrot', 'person_who_interact_with_hot_dog', 'person_who_interact_with_pizza', 'person_who_interact_with_donut', 'person_who_interact_with_cake', 'person_who_interact_with_chair', 'person_who_interact_with_couch', 'person_who_interact_with_potted_plant', 'person_who_interact_with_bed', 'person_who_interact_with_dining_table', 'person_who_interact_with_toilet', 'person_who_interact_with_tv', 'person_who_interact_with_laptop', 'person_who_interact_with_mouse', 'person_who_interact_with_remote', 'person_who_interact_with_keyboard', 'person_who_interact_with_cell_phone', 'person_who_interact_with_microwave', 'person_who_interact_with_oven', 'person_who_interact_with_toaster', 'person_who_interact_with_sink', 'person_who_interact_with_refrigerator', 'person_who_interact_with_book', 'person_who_interact_with_clock', 'person_who_interact_with_vase', 'person_who_interact_with_scissors',
'person_who_interact_with_teddy_bear', 'person_who_interact_with_hair_drier', 'person_who_interact_with_toothbrush']
hico_verbs_sentence = ['a photo of a person is adjusting the object',
'a photo of a person is assembling the object',
'a photo of a person is blocking the object',
'a photo of a person is blowing the object',
'a photo of a person is boarding the object',
'a photo of a person is breaking the object',
'a photo of a person is brushing with the object',
'a photo of a person is buying the object',
'a photo of a person is carrying the object',
'a photo of a person is catching the object',
'a photo of a person is chasing the object',
'a photo of a person is checking the object',
'a photo of a person is cleaning the object',
'a photo of a person is controling the object',
'a photo of a person is cooking the object',
'a photo of a person is cutting the object',
'a photo of a person is cutting with the object',
'a photo of a person is directing the object',
'a photo of a person is draging the object',
'a photo of a person is dribbling the object',
'a photo of a person is drinking with the object',
'a photo of a person is driving the object',
'a photo of a person is drying the object',
'a photo of a person is eating the object',
'a photo of a person is eating at the object',
'a photo of a person is exiting the object',
'a photo of a person is feeding the object',
'a photo of a person is filling the object',
'a photo of a person is flipping the object',
'a photo of a person is flushing the object',
'a photo of a person is flying the object',
'a photo of a person is greeting the object',
'a photo of a person is grinding the object',
'a photo of a person is grooming the object',
'a photo of a person is herding the object',
'a photo of a person is hiting the object',
'a photo of a person is holding the object',
'a photo of a person is hopping on the object',
'a photo of a person is hosing the object',
'a photo of a person is hugging the object',
'a photo of a person is hunting the object',
'a photo of a person is inspecting the object',
'a photo of a person is installing the object',
'a photo of a person is jumping the object',
'a photo of a person is kicking the object',
'a photo of a person is kissing the object',
'a photo of a person is lassoing the object',
'a photo of a person is launching the object',
'a photo of a person is licking the object',
'a photo of a person is lying on the object',
'a photo of a person is lifting the object',
'a photo of a person is lighting the object',
'a photo of a person is loading the object',
'a photo of a person is losing the object',
'a photo of a person is making the object',
'a photo of a person is milking the object',
'a photo of a person is moving the object',
'a photo of a person and the object with no interaction',
'a photo of a person is opening the object',
'a photo of a person is operating the object',
'a photo of a person is packing the object',
'a photo of a person is painting the object',
'a photo of a person is parking the object',
'a photo of a person is paying the object',
'a photo of a person is peeling the object',
'a photo of a person is petting the object',
'a photo of a person is picking the object',
'a photo of a person is picking up the object',
'a photo of a person is pointing the object',
'a photo of a person is pouring the object',
'a photo of a person is pulling the object',
'a photo of a person is pushing the object',
'a photo of a person is racing the object',
'a photo of a person is reading the object',
'a photo of a person is releasing the object',
'a photo of a person is repairing the object',
'a photo of a person is riding the object',
'a photo of a person is rowing the object',
'a photo of a person is running the object',
'a photo of a person is sailing the object',
'a photo of a person is scratching the object',
'a photo of a person is serving the object',
'a photo of a person is setting the object',
'a photo of a person is shearing the object',
'a photo of a person is signing the object',
'a photo of a person is siping the object',
'a photo of a person is sitting at the object',
'a photo of a person is sitting on the object',
'a photo of a person is sliding the object',
'a photo of a person is smelling the object',
'a photo of a person is spining the object',
'a photo of a person is squeezing the object',
'a photo of a person is stabbing the object',
'a photo of a person is standing on the object',
'a photo of a person is standing under the object',
'a photo of a person is sticking the object',
'a photo of a person is stirring the object',
'a photo of a person is stopping at the object',
'a photo of a person is straddling the object',
'a photo of a person is swinging the object',
'a photo of a person is tagging the object',
'a photo of a person is talking on the object',
'a photo of a person is teaching the object',
'a photo of a person is texting on the object',
'a photo of a person is throwing the object',
'a photo of a person is tying the object',
'a photo of a person is toasting the object',
'a photo of a person is training the object',
'a photo of a person is turning the object',
'a photo of a person is typing on the object',
'a photo of a person is walking the object',
'a photo of a person is washing the object',
'a photo of a person is watching the object',
'a photo of a person is waving the object',
'a photo of a person is wearing the object',
'a photo of a person is wielding the object',
'a photo of a person is zipping the object']
hico_verbs_sentence_2=['action of the union region is adjusting',
'action of the union region is assembling',
'action of the union region is blocking',
'action of the union region is blowing',
'action of the union region is boarding',
'action of the union region is breaking',
'action of the union region is brushing with',
'action of the union region is buying',
'action of the union region is carrying',
'action of the union region is catching',
'action of the union region is chasing',
'action of the union region is checking',
'action of the union region is cleaning',
'action of the union region is controling',
'action of the union region is cooking',
'action of the union region is cutting',
'action of the union region is cutting with',
'action of the union region is directing',
'action of the union region is draging',
'action of the union region is dribbling',
'action of the union region is drinking with',
'action of the union region is driving',
'action of the union region is drying',
'action of the union region is eating',
'action of the union region is eating at',
'action of the union region is exiting',
'action of the union region is feeding',
'action of the union region is filling',
'action of the union region is flipping',
'action of the union region is flushing',
'action of the union region is flying',
'action of the union region is greeting',
'action of the union region is grinding',
'action of the union region is grooming',
'action of the union region is herding',
'action of the union region is hiting',
'action of the union region is holding',
'action of the union region is hopping on',
'action of the union region is hosing',
'action of the union region is hugging',
'action of the union region is hunting',
'action of the union region is inspecting',
'action of the union region is installing',
'action of the union region is jumping',
'action of the union region is kicking',
'action of the union region is kissing',
'action of the union region is lassoing',
'action of the union region is launching',
'action of the union region is licking',
'action of the union region is lying on',
'action of the union region is lifting',
'action of the union region is lighting',
'action of the union region is loading',
'action of the union region is losing',
'action of the union region is making',
'action of the union region is milking',
'action of the union region is moving',
'action of the union region is the object with',
'action of the union region is opening',
'action of the union region is operating',
'action of the union region is packing',
'action of the union region is painting',
'action of the union region is parking',
'action of the union region is paying',
'action of the union region is peeling',
'action of the union region is petting',
'action of the union region is picking',
'action of the union region is picking up',
'action of the union region is pointing',
'action of the union region is pouring',
'action of the union region is pulling',
'action of the union region is pushing',
'action of the union region is racing',
'action of the union region is reading',
'action of the union region is releasing',
'action of the union region is repairing',
'action of the union region is riding',
'action of the union region is rowing',
'action of the union region is running',
'action of the union region is sailing',
'action of the union region is scratching',
'action of the union region is serving',
'action of the union region is setting',
'action of the union region is shearing',
'action of the union region is signing',
'action of the union region is siping',
'action of the union region is sitting at',
'action of the union region is sitting on',
'action of the union region is sliding',
'action of the union region is smelling',
'action of the union region is spining',
'action of the union region is squeezing',
'action of the union region is stabbing',
'action of the union region is standing on',
'action of the union region is standing under',
'action of the union region is sticking',
'action of the union region is stirring',
'action of the union region is stopping at',
'action of the union region is straddling',
'action of the union region is swinging',
'action of the union region is tagging',
'action of the union region is talking on',
'action of the union region is teaching',
'action of the union region is texting on',
'action of the union region is throwing',
'action of the union region is tying',
'action of the union region is toasting',
'action of the union region is training',
'action of the union region is turning',
'action of the union region is typing on',
'action of the union region is walking',
'action of the union region is washing',
'action of the union region is watching',
'action of the union region is waving',
'action of the union region is wearing',
'action of the union region is wielding',
'action of the union region is zipping']