-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.json
2452 lines (2452 loc) · 79 KB
/
test.json
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
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"input": "data/magicbrush/images/242679/242679-input.png",
"output": "data/magicbrush/images/242679/242679-output1.png",
"instruction": "Put a cat on the seat.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/368667/368667-input.png",
"output": "data/magicbrush/images/368667/368667-output1.png",
"instruction": "Have there be a stream running through the field",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/368667/368667-output1.png",
"output": "data/magicbrush/images/368667/368667-output2.png",
"instruction": "Add a giraffe in the field",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/368667/368667-output2.png",
"output": "data/magicbrush/images/368667/368667-output3.png",
"instruction": "Add a supernova explosion in the sky",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/385042/385042-input.png",
"output": "data/magicbrush/images/385042/385042-output1.png",
"instruction": "Make the hydrant all white.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/385042/385042-output1.png",
"output": "data/magicbrush/images/385042/385042-output2.png",
"instruction": "Put the hydrant on asphalt.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/385042/385042-output2.png",
"output": "data/magicbrush/images/385042/385042-output3.png",
"instruction": "Add a leashed dog to the hydrant.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/483348/483348-input.png",
"output": "data/magicbrush/images/483348/483348-output1.png",
"instruction": "Put down the seat.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/483348/483348-output1.png",
"output": "data/magicbrush/images/483348/483348-output2.png",
"instruction": "Put a frog in the toilet.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/483348/483348-output2.png",
"output": "data/magicbrush/images/483348/483348-output3.png",
"instruction": "Repair the floor.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/141946/141946-input.png",
"output": "data/magicbrush/images/141946/141946-output1.png",
"instruction": "let the laptop screen be blank",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/141946/141946-output1.png",
"output": "data/magicbrush/images/141946/141946-output2.png",
"instruction": "let the chair be red",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/141946/141946-output2.png",
"output": "data/magicbrush/images/141946/141946-output3.png",
"instruction": "let the desktop be black",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/408425/408425-input.png",
"output": "data/magicbrush/images/408425/408425-output1.png",
"instruction": "change the bright lime green curtains to white curtains",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/408425/408425-output1.png",
"output": "data/magicbrush/images/408425/408425-output2.png",
"instruction": "change the bed to a bean bag",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/408425/408425-output2.png",
"output": "data/magicbrush/images/408425/408425-output3.png",
"instruction": "let the table be wooden",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/352290/352290-input.png",
"output": "data/magicbrush/images/352290/352290-output1.png",
"instruction": "What if the horse was using a hat?",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/352290/352290-output1.png",
"output": "data/magicbrush/images/352290/352290-output2.png",
"instruction": "Let's add birds to the sky",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/385037/385037-input.png",
"output": "data/magicbrush/images/385037/385037-output1.png",
"instruction": "Remove the man.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/385037/385037-output1.png",
"output": "data/magicbrush/images/385037/385037-output2.png",
"instruction": "Make the woman obese.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/385037/385037-output2.png",
"output": "data/magicbrush/images/385037/385037-output3.png",
"instruction": "Give the woman a helmet.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/464144/464144-input.png",
"output": "data/magicbrush/images/464144/464144-output1.png",
"instruction": "Let a boy ski.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/578213/578213-input.png",
"output": "data/magicbrush/images/578213/578213-output1.png",
"instruction": "put banana shaped candles in the candle holder",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/127515/127515-input.png",
"output": "data/magicbrush/images/127515/127515-output1.png",
"instruction": "let the player catch a ball",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/308332/308332-input.png",
"output": "data/magicbrush/images/308332/308332-output1.png",
"instruction": "Have there be a mermaid in the picture on the wall",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/308332/308332-output1.png",
"output": "data/magicbrush/images/308332/308332-output2.png",
"instruction": "Have the mermaid be reading a book",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/308332/308332-output2.png",
"output": "data/magicbrush/images/308332/308332-output3.png",
"instruction": "Have there be a lobster on the bed",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/284725/284725-input.png",
"output": "data/magicbrush/images/284725/284725-output1.png",
"instruction": "Remove the car in front of the bus.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/284725/284725-output1.png",
"output": "data/magicbrush/images/284725/284725-output2.png",
"instruction": "Put a small cat on top of the bus.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/560472/560472-input.png",
"output": "data/magicbrush/images/560472/560472-output1.png",
"instruction": "let there be patties in the pan",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/560472/560472-output1.png",
"output": "data/magicbrush/images/560472/560472-output2.png",
"instruction": "let there be pancakes on the pan",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/560472/560472-output2.png",
"output": "data/magicbrush/images/560472/560472-output3.png",
"instruction": "let there be a bottle of wine",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/441483/441483-input.png",
"output": "data/magicbrush/images/441483/441483-output1.png",
"instruction": "Let the toilet bowl have a lid.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/116518/116518-input.png",
"output": "data/magicbrush/images/116518/116518-output1.png",
"instruction": "Make the teddy bear black.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/116518/116518-output1.png",
"output": "data/magicbrush/images/116518/116518-output2.png",
"instruction": "Have the dog lick the teddy bear.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/116518/116518-output2.png",
"output": "data/magicbrush/images/116518/116518-output3.png",
"instruction": "Put a dragonfly on the dog's ear.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/103966/103966-input.png",
"output": "data/magicbrush/images/103966/103966-output1.png",
"instruction": "replace the tennis rackets with a shovel",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/103966/103966-output1.png",
"output": "data/magicbrush/images/103966/103966-output2.png",
"instruction": "change the bench into a wooden pew",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/103966/103966-output2.png",
"output": "data/magicbrush/images/103966/103966-output3.png",
"instruction": "let there be a bucket of the dirt",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/258155/258155-input.png",
"output": "data/magicbrush/images/258155/258155-output1.png",
"instruction": "Let the blanket be longer and hang over the bed.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/495146/495146-input.png",
"output": "data/magicbrush/images/495146/495146-output1.png",
"instruction": "Add a helicopter.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/70491/70491-input.png",
"output": "data/magicbrush/images/70491/70491-output1.png",
"instruction": "let the remote turn into a VR headset",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/70491/70491-output1.png",
"output": "data/magicbrush/images/70491/70491-output2.png",
"instruction": "let there be a movie poster on the wall",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/70491/70491-output2.png",
"output": "data/magicbrush/images/70491/70491-output3.png",
"instruction": "let there be a credit card on the table",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/296012/296012-input.png",
"output": "data/magicbrush/images/296012/296012-output1.png",
"instruction": "transform the car into a red sports car",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/221187/221187-input.png",
"output": "data/magicbrush/images/221187/221187-output1.png",
"instruction": "Change the banana to a microphone.",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/160864/160864-input.png",
"output": "data/magicbrush/images/160864/160864-output1.png",
"instruction": "make the baseball players hold swords",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/160864/160864-output1.png",
"output": "data/magicbrush/images/160864/160864-output2.png",
"instruction": "make the catcher laugh",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/160864/160864-output2.png",
"output": "data/magicbrush/images/160864/160864-output3.png",
"instruction": "let the catcher wear a clown costume",
"task": "magicbrush"
},
{
"input": "data/magicbrush/images/51746/51746-input.png",
"output": "data/magicbrush/images/51746/51746-output1.png",
"instruction": "change the white couch to a brown couch",
"task": "magicbrush"
},
{
"instruction": "Make her close the door",
"input": "data/ag/images/ZY2B1.mp4_27_left.png",
"output": "data/ag/images/ZY2B1.mp4_27_right.png",
"task": "ag"
},
{
"instruction": "Make her pick up the glass",
"input": "data/ag/images/W4MEA.mp4_0_left.png",
"output": "data/ag/images/W4MEA.mp4_0_right.png",
"task": "ag"
},
{
"instruction": "Make her close her jacket fully",
"input": "data/ag/images/6ALEL.mp4_3_left.png",
"output": "data/ag/images/6ALEL.mp4_3_right.png",
"task": "ag"
},
{
"instruction": "Make him stand up",
"input": "data/ag/images/V2MHO.mp4_18_left.png",
"output": "data/ag/images/V2MHO.mp4_18_right.png",
"task": "ag"
},
{
"instruction": "Make her turn to the left",
"input": "data/ag/images/F5UVQ.mp4_6_left.png",
"output": "data/ag/images/F5UVQ.mp4_6_right.png",
"task": "ag"
},
{
"instruction": "Make her stand up",
"input": "data/ag/images/5RET1.mp4_0_left.png",
"output": "data/ag/images/5RET1.mp4_0_right.png",
"task": "ag"
},
{
"instruction": "Make him lift up the plastic bag",
"input": "data/ag/images/8D4ZT.mp4_245_left.png",
"output": "data/ag/images/8D4ZT.mp4_245_right.png",
"task": "ag"
},
{
"instruction": "Make the person stand up fully upright",
"input": "data/ag/images/W1SRN.mp4_0_left.png",
"output": "data/ag/images/W1SRN.mp4_0_right.png",
"task": "ag"
},
{
"instruction": "Move his hands towards his face",
"input": "data/ag/images/4KOBZ.mp4_12_left.png",
"output": "data/ag/images/4KOBZ.mp4_12_right.png",
"task": "ag"
},
{
"instruction": "Drop the bags onto the floor",
"input": "data/ag/images/I75CL.mp4_4_left.png",
"output": "data/ag/images/I75CL.mp4_4_right.png",
"task": "ag"
},
{
"instruction": "Make him stand up",
"input": "data/ag/images/R2KI4.mp4_15_left.png",
"output": "data/ag/images/R2KI4.mp4_15_right.png",
"task": "ag"
},
{
"instruction": "Open the door",
"input": "data/ag/images/HIJBX.mp4_16_left.png",
"output": "data/ag/images/HIJBX.mp4_16_right.png",
"task": "ag"
},
{
"instruction": "Make the woman lean forward towards the stick",
"input": "data/ag/images/QIBAJ.mp4_37_left.png",
"output": "data/ag/images/QIBAJ.mp4_37_right.png",
"task": "ag"
},
{
"instruction": "Make her face fully visible looking at the camera",
"input": "data/ag/images/LU82W.mp4_4_left.png",
"output": "data/ag/images/LU82W.mp4_4_right.png",
"task": "ag"
},
{
"instruction": "Show his hands on the plate to arrange the food",
"input": "data/ag/images/35ZZP.mp4_138_left.png",
"output": "data/ag/images/35ZZP.mp4_138_right.png",
"task": "ag"
},
{
"instruction": "Move both hands towards the cup",
"input": "data/ag/images/N4SA2.mp4_27_left.png",
"output": "data/ag/images/N4SA2.mp4_27_right.png",
"task": "ag"
},
{
"instruction": "Make her stand up",
"input": "data/ag/images/WJEVU.mp4_2_left.png",
"output": "data/ag/images/WJEVU.mp4_2_right.png",
"task": "ag"
},
{
"instruction": "Make him fully close the drawer",
"input": "data/ag/images/JJ47B.mp4_3_left.png",
"output": "data/ag/images/JJ47B.mp4_3_right.png",
"task": "ag"
},
{
"instruction": "Move the cloth up towards his face",
"input": "data/ag/images/7614L.mp4_45_left.png",
"output": "data/ag/images/7614L.mp4_45_right.png",
"task": "ag"
},
{
"instruction": "Make the person lean back further in their chair",
"input": "data/ag/images/JJZ1X.mp4_4_left.png",
"output": "data/ag/images/JJZ1X.mp4_4_right.png",
"task": "ag"
},
{
"instruction": "Make him lower both arms",
"input": "data/ag/images/9VZOY.mp4_39_left.png",
"output": "data/ag/images/9VZOY.mp4_39_right.png",
"task": "ag"
},
{
"instruction": "Make him face towards the left",
"input": "data/ag/images/1FX8Q.mp4_20_left.png",
"output": "data/ag/images/1FX8Q.mp4_20_right.png",
"task": "ag"
},
{
"instruction": "Make him close the door half way",
"input": "data/ag/images/6JLD4.mp4_12_left.png",
"output": "data/ag/images/6JLD4.mp4_12_right.png",
"task": "ag"
},
{
"instruction": "Make her put the laptop down",
"input": "data/ag/images/XVI3M.mp4_9_left.png",
"output": "data/ag/images/XVI3M.mp4_9_right.png",
"task": "ag"
},
{
"instruction": "Make her walk away from the table",
"input": "data/ag/images/S2S7I.mp4_14_left.png",
"output": "data/ag/images/S2S7I.mp4_14_right.png",
"task": "ag"
},
{
"instruction": "Make him turn facing towards the camera",
"input": "data/ag/images/VF3Y0.mp4_18_left.png",
"output": "data/ag/images/VF3Y0.mp4_18_right.png",
"task": "ag"
},
{
"instruction": "Make him type on the laptop",
"input": "data/ag/images/X28IF.mp4_14_left.png",
"output": "data/ag/images/X28IF.mp4_14_right.png",
"task": "ag"
},
{
"instruction": "Make the person step forward and close the door",
"input": "data/ag/images/3Q3YY.mp4_14_left.png",
"output": "data/ag/images/3Q3YY.mp4_14_right.png",
"task": "ag"
},
{
"instruction": "Make him turn forward while keeping the orange cup on the surface",
"input": "data/ag/images/AUYOZ.mp4_44_left.png",
"output": "data/ag/images/AUYOZ.mp4_44_right.png",
"task": "ag"
},
{
"instruction": "Make him put the plate down on the table",
"input": "data/ag/images/THW67.mp4_89_left.png",
"output": "data/ag/images/THW67.mp4_89_right.png",
"task": "ag"
},
{
"instruction": "Make him walk further towards the right",
"input": "data/ag/images/1VMZM.mp4_1_left.png",
"output": "data/ag/images/1VMZM.mp4_1_right.png",
"task": "ag"
},
{
"instruction": "Make the person walk down the stairs",
"input": "data/ag/images/14XKK.mp4_184_left.png",
"output": "data/ag/images/14XKK.mp4_184_right.png",
"task": "ag"
},
{
"instruction": "Make her grab the book from the shelf",
"input": "data/ag/images/RH44U.mp4_92_left.png",
"output": "data/ag/images/RH44U.mp4_92_right.png",
"task": "ag"
},
{
"instruction": "Make the man take a bite from the snack in his hand",
"input": "data/ag/images/J7TT5.mp4_9_left.png",
"output": "data/ag/images/J7TT5.mp4_9_right.png",
"task": "ag"
},
{
"instruction": "Move her hands with the bread down towards the table",
"input": "data/ag/images/KNN3G.mp4_97_left.png",
"output": "data/ag/images/KNN3G.mp4_97_right.png",
"task": "ag"
},
{
"instruction": "Make him put down the red shovel",
"input": "data/ag/images/7614L.mp4_56_left.png",
"output": "data/ag/images/7614L.mp4_56_right.png",
"task": "ag"
},
{
"instruction": "Close the laundry machine door",
"input": "data/ag/images/RRDAM.mp4_9_left.png",
"output": "data/ag/images/RRDAM.mp4_9_right.png",
"task": "ag"
},
{
"instruction": "Make the man partially stand up",
"input": "data/ag/images/ZVMAY.mp4_40_left.png",
"output": "data/ag/images/ZVMAY.mp4_40_right.png",
"task": "ag"
},
{
"instruction": "Make the man turn around",
"input": "data/ag/images/FVPMC.mp4_113_left.png",
"output": "data/ag/images/FVPMC.mp4_113_right.png",
"task": "ag"
},
{
"instruction": "Make the man put down the book on the sofa",
"input": "data/ag/images/2KGV3.mp4_126_left.png",
"output": "data/ag/images/2KGV3.mp4_126_right.png",
"task": "ag"
},
{
"instruction": "Make the person lift their left leg up",
"input": "data/ag/images/WXC7V.mp4_13_left.png",
"output": "data/ag/images/WXC7V.mp4_13_right.png",
"task": "ag"
},
{
"instruction": "Make the person spread their arms wide to both sides",
"input": "data/ag/images/9PAQ4.mp4_8_left.png",
"output": "data/ag/images/9PAQ4.mp4_8_right.png",
"task": "ag"
},
{
"instruction": "Make them look at the shelf behind them",
"input": "data/ag/images/BWZL2.mp4_26_left.png",
"output": "data/ag/images/BWZL2.mp4_26_right.png",
"task": "ag"
},
{
"instruction": "Open the door fully",
"input": "data/ag/images/YK49T.mp4_41_left.png",
"output": "data/ag/images/YK49T.mp4_41_right.png",
"task": "ag"
},
{
"instruction": "Open the door",
"input": "data/ag/images/KWQKH.mp4_8_left.png",
"output": "data/ag/images/KWQKH.mp4_8_right.png",
"task": "ag"
},
{
"instruction": "Make them stand up",
"input": "data/ag/images/YIK5I.mp4_92_left.png",
"output": "data/ag/images/YIK5I.mp4_92_right.png",
"task": "ag"
},
{
"instruction": "Put down the black piece of clothing onto the floor",
"input": "data/ag/images/VIN5T.mp4_5_left.png",
"output": "data/ag/images/VIN5T.mp4_5_right.png",
"task": "ag"
},
{
"instruction": "Make her sit down fully cross-legged reading the book",
"input": "data/ag/images/O1LOW.mp4_41_left.png",
"output": "data/ag/images/O1LOW.mp4_41_right.png",
"task": "ag"
},
{
"instruction": "Make them close the curtains",
"input": "data/ag/images/MFGLZ.mp4_30_left.png",
"output": "data/ag/images/MFGLZ.mp4_30_right.png",
"task": "ag"
},
{
"instruction": "Make them stand up fully upright looking at their hands",
"input": "data/ag/images/MZ3I3.mp4_67_left.png",
"output": "data/ag/images/MZ3I3.mp4_67_right.png",
"task": "ag"
},
{
"id": "36",
"instruction": "Make remote fall down",
"input": "data/something/images/36/first.jpg",
"output": "data/something/images/36/last.jpg",
"task": "something"
},
{
"id": "106",
"instruction": "Open waste basket",
"input": "data/something/images/106/first.jpg",
"output": "data/something/images/106/last.jpg",
"task": "something"
},
{
"id": "206",
"instruction": "Unfold cloth",
"input": "data/something/images/206/first.jpg",
"output": "data/something/images/206/last.jpg",
"task": "something"
},
{
"id": "220",
"instruction": "Drop a peg next to the wallet",
"input": "data/something/images/220/first.jpg",
"output": "data/something/images/220/last.jpg",
"task": "something"
},
{
"id": "219962",
"instruction": "Move hand away from container",
"input": "data/something/images/219962/first.jpg",
"output": "data/something/images/219962/last.jpg",
"task": "something"
},
{
"id": "219925",
"instruction": "Move medicine bottle closer to the edge",
"input": "data/something/images/219925/first.jpg",
"output": "data/something/images/219925/last.jpg",
"task": "something"
},
{
"id": "219866",
"instruction": "Add an orange",
"input": "data/something/images/219866/first.jpg",
"output": "data/something/images/219866/last.jpg",
"task": "something"
},
{
"id": "219411",
"instruction": "Lift the surface up on the left side",
"input": "data/something/images/219411/first.jpg",
"output": "data/something/images/219411/last.jpg",
"task": "something"
},
{
"id": "219259",
"instruction": "Make the shampoo bottle fall down and land horizontally",
"input": "data/something/images/219259/first.jpg",
"output": "data/something/images/219259/last.jpg",
"task": "something"
},
{
"id": "218705",
"instruction": "Flip the bottle upside down",
"input": "data/something/images/218705/first.jpg",
"output": "data/something/images/218705/last.jpg",
"task": "something"
},
{
"id": "218699",
"instruction": "Put keys into bowl",
"input": "data/something/images/218699/first.jpg",
"output": "data/something/images/218699/last.jpg",
"task": "something"
},
{
"id": "218363",
"instruction": "Add lid onto jar",
"input": "data/something/images/218363/first.jpg",
"output": "data/something/images/218363/last.jpg",
"task": "something"
},
{
"id": "218016",
"instruction": "Lift phone up",
"input": "data/something/images/218016/first.jpg",
"output": "data/something/images/218016/last.jpg",
"task": "something"
},
{
"id": "217555",
"instruction": "Flip the bottle upside down",
"input": "data/something/images/217555/first.jpg",
"output": "data/something/images/217555/last.jpg",
"task": "something"
},
{
"id": "217432",
"instruction": "Put wallet next to remote",
"input": "data/something/images/217432/first.jpg",
"output": "data/something/images/217432/last.jpg",
"task": "something"
},
{
"id": "217421",
"instruction": "Tear paper apart",
"input": "data/something/images/217421/first.jpg",
"output": "data/something/images/217421/last.jpg",
"task": "something"
},
{
"id": "217177",
"instruction": "Tear the paper into two pieces",
"input": "data/something/images/217177/first.jpg",
"output": "data/something/images/217177/last.jpg",
"task": "something"
},
{
"id": "217129",
"instruction": "Twist the cloth",
"input": "data/something/images/217129/first.jpg",
"output": "data/something/images/217129/last.jpg",
"task": "something"
},
{
"id": "217077",
"instruction": "Move the cutting board in front of the clock",
"input": "data/something/images/217077/first.jpg",
"output": "data/something/images/217077/last.jpg",
"task": "something"
},
{
"id": "217013",
"instruction": "Drop the glass on top of the pills",
"input": "data/something/images/217013/first.jpg",
"output": "data/something/images/217013/last.jpg",
"task": "something"
},
{
"id": "216998",
"instruction": "Put the book down on the table and remove the hand",
"input": "data/something/images/216998/first.jpg",
"output": "data/something/images/216998/last.jpg",
"task": "something"
},
{
"id": "216970",
"instruction": "Put a comb into the box",
"input": "data/something/images/216970/first.jpg",
"output": "data/something/images/216970/last.jpg",
"task": "something"
},
{
"id": "216852",
"instruction": "Tear the paper apart into two pieces",
"input": "data/something/images/216852/first.jpg",
"output": "data/something/images/216852/last.jpg",
"task": "something"
},
{
"id": "216236",
"instruction": "Stuffing the paper into the cup",
"input": "data/something/images/216236/first.jpg",
"output": "data/something/images/216236/last.jpg",
"task": "something"
},
{
"id": "216153",
"instruction": "Push the chair closer to the desk",
"input": "data/something/images/216153/first.jpg",
"output": "data/something/images/216153/last.jpg",
"task": "something"
},
{
"id": "216106",
"instruction": "Move the candles close to each other",
"input": "data/something/images/216106/first.jpg",
"output": "data/something/images/216106/last.jpg",
"task": "something"
},
{
"id": "216074",
"instruction": "moving nail clipper and sponge closer to each other",
"input": "data/something/images/216074/first.jpg",
"output": "data/something/images/216074/last.jpg",
"task": "something"
},
{
"id": "216042",
"instruction": "Flip the bottle upside down",
"input": "data/something/images/216042/first.jpg",
"output": "data/something/images/216042/last.jpg",
"task": "something"
},
{
"id": "215962",
"instruction": "Tear the paper into two pieces",
"input": "data/something/images/215962/first.jpg",
"output": "data/something/images/215962/last.jpg",
"task": "something"
},
{
"id": "215692",
"instruction": "Tipping sign over",
"input": "data/something/images/215692/first.jpg",
"output": "data/something/images/215692/last.jpg",
"task": "something"
},
{
"id": "215668",
"instruction": "Moving cup away from pen",
"input": "data/something/images/215668/first.jpg",
"output": "data/something/images/215668/last.jpg",
"task": "something"
},
{
"id": "215405",
"instruction": "Dropping the battery next to the mug",
"input": "data/something/images/215405/first.jpg",
"output": "data/something/images/215405/last.jpg",
"task": "something"
},
{
"id": "215371",
"instruction": "Tear the paper apart into two pieces",
"input": "data/something/images/215371/first.jpg",
"output": "data/something/images/215371/last.jpg",
"task": "something"
},
{
"id": "215270",
"instruction": "Flip the cup upside down",
"input": "data/something/images/215270/first.jpg",
"output": "data/something/images/215270/last.jpg",
"task": "something"
},
{
"id": "215221",
"instruction": "Take one match box away",
"input": "data/something/images/215221/first.jpg",
"output": "data/something/images/215221/last.jpg",
"task": "something"
},
{
"id": "214831",
"instruction": "Putting the bottle upright",
"input": "data/something/images/214831/first.jpg",
"output": "data/something/images/214831/last.jpg",
"task": "something"
},
{
"id": "214816",
"instruction": "Making the marker fall down to lie horizontally",
"input": "data/something/images/214816/first.jpg",
"output": "data/something/images/214816/last.jpg",
"task": "something"
},
{
"id": "214773",
"instruction": "Tear paper apart",
"input": "data/something/images/214773/first.jpg",
"output": "data/something/images/214773/last.jpg",
"task": "something"
},
{
"id": "214723",
"instruction": "Remove the black marker",
"input": "data/something/images/214723/first.jpg",
"output": "data/something/images/214723/last.jpg",
"task": "something"
},
{
"id": "214198",
"instruction": "Putting egg into the bowl",
"input": "data/something/images/214198/first.jpg",
"output": "data/something/images/214198/last.jpg",
"task": "something"
},
{
"id": "214157",
"instruction": "Adding another coaster of the same type",
"input": "data/something/images/214157/first.jpg",
"output": "data/something/images/214157/last.jpg",
"task": "something"
},
{
"id": "214021",
"instruction": "Lifting up the purse with a hand",
"input": "data/something/images/214021/first.jpg",
"output": "data/something/images/214021/last.jpg",
"task": "something"
},
{
"id": "213978",
"instruction": "Plugging USB into the port fully",
"input": "data/something/images/213978/first.jpg",
"output": "data/something/images/213978/last.jpg",
"task": "something"
},
{
"id": "213751",
"instruction": "Opening the book with the hands",
"input": "data/something/images/213751/first.jpg",
"output": "data/something/images/213751/last.jpg",
"task": "something"
},
{
"id": "213743",
"instruction": "Putting a bottle and card on the table",
"input": "data/something/images/213743/first.jpg",
"output": "data/something/images/213743/last.jpg",
"task": "something"
},
{
"id": "213518",
"instruction": "Lift her hands up to show a piece of paper",
"input": "data/something/images/213518/first.jpg",
"output": "data/something/images/213518/last.jpg",
"task": "something"
},
{
"id": "213403",
"instruction": "Wiping further towards the left with the cloth",
"input": "data/something/images/213403/first.jpg",
"output": "data/something/images/213403/last.jpg",
"task": "something"
},
{
"id": "213316",
"instruction": "Remove the lid of the left bottle with the hand",
"input": "data/something/images/213316/first.jpg",
"output": "data/something/images/213316/last.jpg",
"task": "something"
},
{
"id": "213259",
"instruction": "Rip paper apart into two pieces",
"input": "data/something/images/213259/first.jpg",
"output": "data/something/images/213259/last.jpg",
"task": "something"
},
{
"id": "213068",
"instruction": "Add a hand that pushes the hat further to the right",
"input": "data/something/images/213068/first.jpg",
"output": "data/something/images/213068/last.jpg",
"task": "something"
},
{
"id": "005422",
"instruction": "the tiny yellow cylinder turns brown",
"input": "data/clevr/images/CLEVR_default_005422.png",
"task": "clevr"
},
{
"id": "000031",
"instruction": "change the large green matte ball behind the large shiny cylinder to red",
"input": "data/clevr/images/CLEVR_default_000031.png",
"task": "clevr"
},
{
"id": "033588",
"instruction": "move the large purple metal ball to the left of the yellow cube",
"input": "data/clevr/images/CLEVR_default_033588.png",
"task": "clevr"
},
{
"id": "035238",
"instruction": "move the green ball to the right of the brown cylinder",
"input": "data/clevr/images/CLEVR_default_035238.png",
"task": "clevr"
},
{
"id": "003468",
"instruction": "the large red rubber ball that is to the right of the green matte object becomes gray",
"input": "data/clevr/images/CLEVR_default_003468.png",
"task": "clevr"
},
{
"id": "000831",
"instruction": "the cyan shiny cylinder turns purple",
"input": "data/clevr/images/CLEVR_default_000831.png",
"task": "clevr"
},
{
"id": "007896",
"instruction": "the tiny blue thing changes to red",
"input": "data/clevr/images/CLEVR_default_007896.png",
"task": "clevr"
},
{
"id": "027232",
"instruction": "remove the small green block",
"input": "data/clevr/images/CLEVR_default_027232.png",
"task": "clevr"
},
{