Datasets:
File size: 420,632 Bytes
3d82248 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 | {"image_file": "000000239417.jpg", "image_link": "http://images.cocodataset.org/train2017/000000239417.jpg", "width": 640, "height": 426, "caption": "The bench is at the right side of the train.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["bench", "train"], "label_positions": [[4, 9], [38, 43]], "bboxes": [[58.53, 146.8, 571.83, 220.67], [0.95, 0.0, 639.05, 260.27]]}}
{"image_file": "000000224670.jpg", "image_link": "http://images.cocodataset.org/train2017/000000224670.jpg", "width": 640, "height": 480, "caption": "The train contains the laptop.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["train", "laptop"], "label_positions": [[4, 9], [23, 29]], "bboxes": [[0.0, 96.31, 617.99, 93.17], [12.94, 20.49, 481.08, 448.72]]}}
{"image_file": "000000266622.jpg", "image_link": "http://images.cocodataset.org/train2017/000000266622.jpg", "width": 612, "height": 612, "caption": "The bowl is at the left side of the banana.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["bowl", "banana"], "label_positions": [[4, 8], [36, 42]], "bboxes": [[49.59, 90.52, 279.76, 282.71], [251.68, 148.62, 323.19, 332.82]]}}
{"image_file": "000000546264.jpg", "image_link": "http://images.cocodataset.org/train2017/000000546264.jpg", "width": 375, "height": 500, "caption": "The cat is under the motorcycle.", "label": 0, "relation": "under", "ref_exp": {"labels": ["cat", "motorcycle"], "label_positions": [[4, 7], [21, 31]], "bboxes": [[69.11, 285.91, 272.14, 168.46], [0.0, 2.37, 348.31, 488.77]]}}
{"image_file": "000000490624.jpg", "image_link": "http://images.cocodataset.org/train2017/000000490624.jpg", "width": 640, "height": 488, "caption": "The bicycle is near the tv.", "label": 0, "relation": "near", "ref_exp": {"labels": ["bicycle", "tv"], "label_positions": [[4, 11], [24, 26]], "bboxes": [[196.44, 241.16, 44.41, 56.79], [83.34, 141.47, 353.12, 297.18]]}}
{"image_file": "000000080336.jpg", "image_link": "http://images.cocodataset.org/train2017/000000080336.jpg", "width": 640, "height": 480, "caption": "The person is ahead of the cow.", "label": 1, "relation": "ahead of", "ref_exp": {"labels": ["person", "cow"], "label_positions": [[4, 10], [27, 30]], "bboxes": [[470.46, 106.72, 132.24, 246.71], [8.75, 159.38, 408.75, 252.5]]}}
{"image_file": "000000563615.jpg", "image_link": "http://images.cocodataset.org/train2017/000000563615.jpg", "width": 640, "height": 480, "caption": "The hair drier is in front of the person.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["hair drier", "person"], "label_positions": [[4, 14], [34, 40]], "bboxes": [[93.51, 2.49, 407.68, 300.47], [1.08, 19.42, 638.92, 453.03]]}}
{"image_file": "000000194528.jpg", "image_link": "http://images.cocodataset.org/train2017/000000194528.jpg", "width": 640, "height": 480, "caption": "The giraffe is on the bench.", "label": 1, "relation": "on", "ref_exp": {"labels": ["giraffe", "bench"], "label_positions": [[4, 11], [22, 27]], "bboxes": [[137.69, 180.71, 61.24, 72.15], [1.08, 124.04, 634.25, 349.49]]}}
{"image_file": "000000557254.jpg", "image_link": "http://images.cocodataset.org/train2017/000000557254.jpg", "width": 640, "height": 640, "caption": "The bed is below the sheep.", "label": 1, "relation": "below", "ref_exp": {"labels": ["bed", "sheep"], "label_positions": [[4, 7], [21, 26]], "bboxes": [[13.3, 211.12, 610.08, 251.01], [189.94, 231.23, 283.52, 97.72]]}}
{"image_file": "000000383211.jpg", "image_link": "http://images.cocodataset.org/train2017/000000383211.jpg", "width": 500, "height": 375, "caption": "The person is touching the handbag.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "handbag"], "label_positions": [[4, 10], [27, 34]], "bboxes": [[190.45, 91.01, 243.54, 278.09], [354.91, 241.34, 87.79, 133.22]]}}
{"image_file": "000000438253.jpg", "image_link": "http://images.cocodataset.org/train2017/000000438253.jpg", "width": 500, "height": 375, "caption": "The bed is on top of the dog.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["bed", "dog"], "label_positions": [[4, 7], [25, 28]], "bboxes": [[20.22, 0.0, 478.66, 321.07], [163.85, 132.84, 111.32, 88.07]]}}
{"image_file": "000000013943.jpg", "image_link": "http://images.cocodataset.org/train2017/000000013943.jpg", "width": 640, "height": 480, "caption": "The bus is in front of the horse.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["bus", "horse"], "label_positions": [[4, 7], [27, 32]], "bboxes": [[0.0, 0.0, 292.31, 333.3], [17.55, 96.86, 300.39, 332.39]]}}
{"image_file": "000000558388.jpg", "image_link": "http://images.cocodataset.org/train2017/000000558388.jpg", "width": 640, "height": 640, "caption": "The person is touching the cake.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "cake"], "label_positions": [[4, 10], [27, 31]], "bboxes": [[0.0, 0.0, 227.24, 279.01], [27.33, 126.56, 582.47, 409.89]]}}
{"image_file": "000000166742.jpg", "image_link": "http://images.cocodataset.org/train2017/000000166742.jpg", "width": 478, "height": 640, "caption": "The cell phone is at the right side of the bowl.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["cell phone", "bowl"], "label_positions": [[4, 14], [43, 47]], "bboxes": [[4.31, 266.07, 222.93, 326.47], [45.92, 31.5, 430.49, 239.64]]}}
{"image_file": "000000107664.jpg", "image_link": "http://images.cocodataset.org/train2017/000000107664.jpg", "width": 500, "height": 448, "caption": "The cat is on top of the laptop.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "laptop"], "label_positions": [[4, 7], [25, 31]], "bboxes": [[115.61, 24.33, 359.37, 351.65], [108.97, 101.41, 299.68, 336.0]]}}
{"image_file": "000000309568.jpg", "image_link": "http://images.cocodataset.org/train2017/000000309568.jpg", "width": 640, "height": 480, "caption": "The cat is at the right side of the laptop.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["cat", "laptop"], "label_positions": [[4, 7], [36, 42]], "bboxes": [[124.46, 112.19, 334.4, 336.7], [162.88, 266.25, 386.15, 208.18]]}}
{"image_file": "000000011696.jpg", "image_link": "http://images.cocodataset.org/train2017/000000011696.jpg", "width": 640, "height": 480, "caption": "The dog is above the laptop.", "label": 1, "relation": "above", "ref_exp": {"labels": ["dog", "laptop"], "label_positions": [[4, 7], [21, 27]], "bboxes": [[0.0, 175.01, 353.43, 298.9], [355.96, 365.48, 198.47, 105.71]]}}
{"image_file": "000000229472.jpg", "image_link": "http://images.cocodataset.org/train2017/000000229472.jpg", "width": 640, "height": 480, "caption": "The motorcycle is ahead of the truck.", "label": 1, "relation": "ahead of", "ref_exp": {"labels": ["motorcycle", "truck"], "label_positions": [[4, 14], [31, 36]], "bboxes": [[220.44, 240.59, 398.23, 225.19], [361.55, 0.19, 278.45, 336.95]]}}
{"image_file": "000000008383.jpg", "image_link": "http://images.cocodataset.org/train2017/000000008383.jpg", "width": 479, "height": 640, "caption": "The laptop is below the person.", "label": 1, "relation": "below", "ref_exp": {"labels": ["laptop", "person"], "label_positions": [[4, 10], [24, 30]], "bboxes": [[20.36, 439.36, 297.58, 142.14], [67.82, 61.63, 399.66, 481.87]]}}
{"image_file": "000000303546.jpg", "image_link": "http://images.cocodataset.org/train2017/000000303546.jpg", "width": 500, "height": 375, "caption": "The horse is on the bed.", "label": 0, "relation": "on", "ref_exp": {"labels": ["horse", "bed"], "label_positions": [[4, 9], [20, 23]], "bboxes": [[445.43, 171.1, 34.32, 25.28], [6.88, 206.21, 411.34, 168.79]]}}
{"image_file": "000000209558.jpg", "image_link": "http://images.cocodataset.org/train2017/000000209558.jpg", "width": 500, "height": 375, "caption": "The tv is beside the cat.", "label": 1, "relation": "beside", "ref_exp": {"labels": ["tv", "cat"], "label_positions": [[4, 6], [21, 24]], "bboxes": [[0.84, 1.9, 448.32, 275.56], [191.94, 260.48, 308.06, 97.58]]}}
{"image_file": "000000013943.jpg", "image_link": "http://images.cocodataset.org/train2017/000000013943.jpg", "width": 640, "height": 480, "caption": "The horse is on the bus.", "label": 0, "relation": "on", "ref_exp": {"labels": ["horse", "bus"], "label_positions": [[4, 9], [20, 23]], "bboxes": [[17.55, 96.86, 300.39, 332.39], [0.0, 0.0, 292.31, 333.3]]}}
{"image_file": "000000438851.jpg", "image_link": "http://images.cocodataset.org/train2017/000000438851.jpg", "width": 457, "height": 640, "caption": "The handbag is touching the umbrella.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["handbag", "umbrella"], "label_positions": [[4, 11], [28, 36]], "bboxes": [[12.28, 7.26, 397.65, 330.97], [341.84, 319.71, 77.25, 134.4]]}}
{"image_file": "000000198429.jpg", "image_link": "http://images.cocodataset.org/train2017/000000198429.jpg", "width": 375, "height": 500, "caption": "The teddy bear is part of the cake.", "label": 1, "relation": "part of", "ref_exp": {"labels": ["teddy bear", "cake"], "label_positions": [[4, 14], [30, 34]], "bboxes": [[111.24, 166.29, 119.1, 204.5], [24.74, 48.83, 335.94, 425.78]]}}
{"image_file": "000000076970.jpg", "image_link": "http://images.cocodataset.org/train2017/000000076970.jpg", "width": 500, "height": 366, "caption": "The cow is behind the sheep.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["cow", "sheep"], "label_positions": [[4, 7], [22, 27]], "bboxes": [[0.0, 183.11, 94.44, 79.17], [0.79, 114.92, 283.35, 237.7]]}}
{"image_file": "000000251974.jpg", "image_link": "http://images.cocodataset.org/train2017/000000251974.jpg", "width": 640, "height": 480, "caption": "The cup is far away from the bus.", "label": 0, "relation": "far away from", "ref_exp": {"labels": ["cup", "bus"], "label_positions": [[4, 7], [29, 32]], "bboxes": [[610.93, 41.82, 15.28, 17.36], [1.19, 1.19, 638.81, 299.85]]}}
{"image_file": "000000298985.jpg", "image_link": "http://images.cocodataset.org/train2017/000000298985.jpg", "width": 640, "height": 427, "caption": "The teddy bear is touching the bench.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["teddy bear", "bench"], "label_positions": [[4, 14], [31, 36]], "bboxes": [[435.66, 253.41, 100.98, 120.22], [175.42, 126.69, 464.58, 300.31]]}}
{"image_file": "000000423455.jpg", "image_link": "http://images.cocodataset.org/train2017/000000423455.jpg", "width": 640, "height": 480, "caption": "The cow is past the person.", "label": 1, "relation": "past", "ref_exp": {"labels": ["cow", "person"], "label_positions": [[4, 7], [20, 26]], "bboxes": [[77.71, 12.34, 327.76, 467.22], [280.45, 35.6, 355.95, 437.93]]}}
{"image_file": "000000556341.jpg", "image_link": "http://images.cocodataset.org/train2017/000000556341.jpg", "width": 480, "height": 640, "caption": "The zebra is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["zebra", "person"], "label_positions": [[4, 9], [26, 32]], "bboxes": [[175.08, 273.41, 244.43, 366.59], [49.61, 98.6, 177.26, 541.4]]}}
{"image_file": "000000195163.jpg", "image_link": "http://images.cocodataset.org/train2017/000000195163.jpg", "width": 640, "height": 480, "caption": "The person is touching the teddy bear.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "teddy bear"], "label_positions": [[4, 10], [27, 37]], "bboxes": [[95.53, 202.46, 382.45, 277.54], [357.39, 209.73, 43.68, 44.3]]}}
{"image_file": "000000501323.jpg", "image_link": "http://images.cocodataset.org/train2017/000000501323.jpg", "width": 428, "height": 640, "caption": "The dog is part of the vase.", "label": 0, "relation": "part of", "ref_exp": {"labels": ["dog", "vase"], "label_positions": [[4, 7], [23, 27]], "bboxes": [[6.45, 352.19, 398.71, 287.81], [250.3, 374.45, 122.92, 202.41]]}}
{"image_file": "000000350522.jpg", "image_link": "http://images.cocodataset.org/train2017/000000350522.jpg", "width": 640, "height": 428, "caption": "The potted plant is next to the cat.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["potted plant", "cat"], "label_positions": [[4, 16], [32, 35]], "bboxes": [[0.0, 0.0, 562.51, 426.89], [1.92, 99.07, 511.68, 287.57]]}}
{"image_file": "000000447941.jpg", "image_link": "http://images.cocodataset.org/train2017/000000447941.jpg", "width": 640, "height": 457, "caption": "The cake is far from the airplane.", "label": 1, "relation": "far from", "ref_exp": {"labels": ["cake", "airplane"], "label_positions": [[4, 8], [25, 33]], "bboxes": [[0.0, 219.77, 457.0, 231.07], [0.0, 30.21, 193.28, 85.55]]}}
{"image_file": "000000543747.jpg", "image_link": "http://images.cocodataset.org/train2017/000000543747.jpg", "width": 640, "height": 480, "caption": "The horse is at the back of the truck.", "label": 0, "relation": "at the back of", "ref_exp": {"labels": ["horse", "truck"], "label_positions": [[4, 9], [32, 37]], "bboxes": [[102.69, 181.38, 369.33, 257.32], [435.44, 185.81, 126.31, 58.83]]}}
{"image_file": "000000034482.jpg", "image_link": "http://images.cocodataset.org/train2017/000000034482.jpg", "width": 308, "height": 500, "caption": "The parking meter is behind the car.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["parking meter", "car"], "label_positions": [[4, 17], [32, 35]], "bboxes": [[148.31, 5.62, 138.21, 422.47], [107.62, 0.0, 199.55, 437.89]]}}
{"image_file": "000000290204.jpg", "image_link": "http://images.cocodataset.org/train2017/000000290204.jpg", "width": 640, "height": 480, "caption": "The cat is at the back of the toilet.", "label": 0, "relation": "at the back of", "ref_exp": {"labels": ["cat", "toilet"], "label_positions": [[4, 7], [30, 36]], "bboxes": [[164.45, 16.54, 268.27, 446.09], [1.08, 0.0, 638.92, 474.61]]}}
{"image_file": "000000012698.jpg", "image_link": "http://images.cocodataset.org/train2017/000000012698.jpg", "width": 640, "height": 480, "caption": "The sandwich is in the middle of the bowl.", "label": 0, "relation": "in the middle of", "ref_exp": {"labels": ["sandwich", "bowl"], "label_positions": [[4, 12], [37, 41]], "bboxes": [[257.8, 77.66, 338.69, 366.74], [18.75, 63.12, 595.0, 393.76]]}}
{"image_file": "000000011091.jpg", "image_link": "http://images.cocodataset.org/train2017/000000011091.jpg", "width": 640, "height": 431, "caption": "The person is touching the bed.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "bed"], "label_positions": [[4, 10], [27, 30]], "bboxes": [[71.67, 212.92, 560.79, 213.08], [0.0, 194.92, 545.29, 232.45]]}}
{"image_file": "000000443177.jpg", "image_link": "http://images.cocodataset.org/train2017/000000443177.jpg", "width": 480, "height": 640, "caption": "The bowl is in front of the sandwich.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["bowl", "sandwich"], "label_positions": [[4, 8], [28, 36]], "bboxes": [[20.96, 396.39, 336.04, 243.61], [233.19, 25.1, 246.81, 252.12]]}}
{"image_file": "000000521169.jpg", "image_link": "http://images.cocodataset.org/train2017/000000521169.jpg", "width": 482, "height": 640, "caption": "The pizza is connected to the bicycle.", "label": 0, "relation": "connected to", "ref_exp": {"labels": ["pizza", "bicycle"], "label_positions": [[4, 9], [30, 37]], "bboxes": [[6.16, 405.51, 448.72, 232.99], [238.42, 40.86, 243.58, 307.81]]}}
{"image_file": "000000577283.jpg", "image_link": "http://images.cocodataset.org/train2017/000000577283.jpg", "width": 480, "height": 640, "caption": "The hot dog is at the side of the dining table.", "label": 1, "relation": "at the side of", "ref_exp": {"labels": ["hot dog", "dining table"], "label_positions": [[4, 11], [34, 46]], "bboxes": [[61.26, 265.43, 143.98, 90.6], [2.88, 332.22, 477.12, 300.59]]}}
{"image_file": "000000424912.jpg", "image_link": "http://images.cocodataset.org/train2017/000000424912.jpg", "width": 640, "height": 480, "caption": "The person is on top of the horse.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["person", "horse"], "label_positions": [[4, 10], [28, 33]], "bboxes": [[216.81, 61.3, 175.82, 382.92], [89.13, 238.49, 441.34, 236.24]]}}
{"image_file": "000000284873.jpg", "image_link": "http://images.cocodataset.org/train2017/000000284873.jpg", "width": 640, "height": 426, "caption": "The boat is on the train.", "label": 1, "relation": "on", "ref_exp": {"labels": ["boat", "train"], "label_positions": [[4, 8], [19, 24]], "bboxes": [[70.84, 60.31, 459.51, 172.31], [4.21, 64.16, 618.49, 351.32]]}}
{"image_file": "000000096378.jpg", "image_link": "http://images.cocodataset.org/train2017/000000096378.jpg", "width": 375, "height": 500, "caption": "The sheep is beneath the person.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["sheep", "person"], "label_positions": [[4, 9], [25, 31]], "bboxes": [[1.07, 231.33, 373.93, 248.93], [5.62, 56.25, 368.54, 408.99]]}}
{"image_file": "000000158354.jpg", "image_link": "http://images.cocodataset.org/train2017/000000158354.jpg", "width": 640, "height": 480, "caption": "The cat is touching the umbrella.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cat", "umbrella"], "label_positions": [[4, 7], [24, 32]], "bboxes": [[287.79, 134.33, 352.21, 280.27], [1.08, 0.0, 638.92, 407.73]]}}
{"image_file": "000000015953.jpg", "image_link": "http://images.cocodataset.org/train2017/000000015953.jpg", "width": 480, "height": 640, "caption": "The apple is behind the cake.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["apple", "cake"], "label_positions": [[4, 9], [24, 28]], "bboxes": [[0.0, 56.45, 271.14, 307.97], [204.01, 268.6, 241.85, 241.85]]}}
{"image_file": "000000061946.jpg", "image_link": "http://images.cocodataset.org/train2017/000000061946.jpg", "width": 640, "height": 429, "caption": "The teddy bear is in front of the dining table.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["teddy bear", "dining table"], "label_positions": [[4, 14], [34, 46]], "bboxes": [[216.91, 67.48, 207.27, 213.06], [0.0, 0.7, 639.27, 422.66]]}}
{"image_file": "000000159072.jpg", "image_link": "http://images.cocodataset.org/train2017/000000159072.jpg", "width": 640, "height": 377, "caption": "The sheep is on top of the chair.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["sheep", "chair"], "label_positions": [[4, 9], [27, 32]], "bboxes": [[32.42, 126.62, 356.83, 148.6], [530.44, 50.53, 99.61, 61.27]]}}
{"image_file": "000000009002.jpg", "image_link": "http://images.cocodataset.org/train2017/000000009002.jpg", "width": 640, "height": 480, "caption": "The person is touching the pizza.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "pizza"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[3.24, 1.62, 577.3, 216.22], [55.34, 109.36, 501.46, 203.3]]}}
{"image_file": "000000558618.jpg", "image_link": "http://images.cocodataset.org/train2017/000000558618.jpg", "width": 640, "height": 360, "caption": "The person is touching the couch.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "couch"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[142.38, 16.99, 243.51, 338.97], [0.0, 26.41, 120.77, 223.74]]}}
{"image_file": "000000012681.jpg", "image_link": "http://images.cocodataset.org/train2017/000000012681.jpg", "width": 612, "height": 612, "caption": "The dining table is under the train.", "label": 1, "relation": "under", "ref_exp": {"labels": ["dining table", "train"], "label_positions": [[4, 16], [30, 35]], "bboxes": [[19.73, 108.93, 569.17, 482.84], [59.62, 141.24, 460.69, 376.89]]}}
{"image_file": "000000081827.jpg", "image_link": "http://images.cocodataset.org/train2017/000000081827.jpg", "width": 396, "height": 640, "caption": "The umbrella is over the person.", "label": 1, "relation": "over", "ref_exp": {"labels": ["umbrella", "person"], "label_positions": [[4, 12], [25, 31]], "bboxes": [[4.32, 33.87, 391.68, 171.54], [94.92, 207.1, 215.73, 425.71]]}}
{"image_file": "000000185502.jpg", "image_link": "http://images.cocodataset.org/train2017/000000185502.jpg", "width": 640, "height": 360, "caption": "The bus is far away from the potted plant.", "label": 0, "relation": "far away from", "ref_exp": {"labels": ["bus", "potted plant"], "label_positions": [[4, 7], [29, 41]], "bboxes": [[64.72, 78.47, 503.19, 199.01], [568.34, 168.87, 61.69, 41.35]]}}
{"image_file": "000000378655.jpg", "image_link": "http://images.cocodataset.org/train2017/000000378655.jpg", "width": 640, "height": 480, "caption": "The bowl is away from the hot dog.", "label": 1, "relation": "away from", "ref_exp": {"labels": ["bowl", "hot dog"], "label_positions": [[4, 8], [26, 33]], "bboxes": [[559.06, 144.56, 80.94, 100.28], [118.71, 193.03, 300.39, 286.97]]}}
{"image_file": "000000363325.jpg", "image_link": "http://images.cocodataset.org/train2017/000000363325.jpg", "width": 640, "height": 485, "caption": "The cat is on top of the pizza.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["cat", "pizza"], "label_positions": [[4, 7], [25, 30]], "bboxes": [[0.0, 1.33, 402.15, 326.12], [282.28, 208.17, 357.48, 270.29]]}}
{"image_file": "000000059501.jpg", "image_link": "http://images.cocodataset.org/train2017/000000059501.jpg", "width": 500, "height": 375, "caption": "The cup is at the right side of the cat.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["cup", "cat"], "label_positions": [[4, 7], [36, 39]], "bboxes": [[52.08, 108.53, 66.19, 34.47], [5.65, 16.94, 494.35, 318.54]]}}
{"image_file": "000000169660.jpg", "image_link": "http://images.cocodataset.org/train2017/000000169660.jpg", "width": 640, "height": 480, "caption": "The cake is in the oven.", "label": 1, "relation": "in", "ref_exp": {"labels": ["cake", "oven"], "label_positions": [[4, 8], [19, 23]], "bboxes": [[149.93, 139.15, 321.44, 277.21], [0.0, 3.56, 640.0, 470.51]]}}
{"image_file": "000000220485.jpg", "image_link": "http://images.cocodataset.org/train2017/000000220485.jpg", "width": 640, "height": 640, "caption": "The person is facing away from the pizza.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["person", "pizza"], "label_positions": [[4, 10], [35, 40]], "bboxes": [[2.88, 20.13, 516.31, 499.06], [138.24, 523.26, 309.13, 116.74]]}}
{"image_file": "000000150958.jpg", "image_link": "http://images.cocodataset.org/train2017/000000150958.jpg", "width": 640, "height": 483, "caption": "The car is parallel to the train.", "label": 1, "relation": "parallel to", "ref_exp": {"labels": ["car", "train"], "label_positions": [[4, 7], [27, 32]], "bboxes": [[434.4, 188.91, 119.02, 91.32], [181.87, 136.08, 423.69, 188.4]]}}
{"image_file": "000000391685.jpg", "image_link": "http://images.cocodataset.org/train2017/000000391685.jpg", "width": 425, "height": 640, "caption": "The couch is behind the skateboard.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["couch", "skateboard"], "label_positions": [[4, 9], [24, 34]], "bboxes": [[0.0, 46.8, 425.0, 399.14], [143.02, 299.41, 247.05, 330.84]]}}
{"image_file": "000000439546.jpg", "image_link": "http://images.cocodataset.org/train2017/000000439546.jpg", "width": 640, "height": 379, "caption": "The truck is on the couch.", "label": 1, "relation": "on", "ref_exp": {"labels": ["truck", "couch"], "label_positions": [[4, 9], [20, 25]], "bboxes": [[158.3, 116.49, 183.45, 164.82], [0.0, 28.92, 640.0, 345.14]]}}
{"image_file": "000000475306.jpg", "image_link": "http://images.cocodataset.org/train2017/000000475306.jpg", "width": 640, "height": 480, "caption": "The cup is behind the cake.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["cup", "cake"], "label_positions": [[4, 7], [22, 26]], "bboxes": [[99.02, 48.38, 170.9, 237.57], [303.1, 211.42, 240.54, 166.11]]}}
{"image_file": "000000338091.jpg", "image_link": "http://images.cocodataset.org/train2017/000000338091.jpg", "width": 500, "height": 375, "caption": "The couch is under the cat.", "label": 1, "relation": "under", "ref_exp": {"labels": ["couch", "cat"], "label_positions": [[4, 9], [23, 26]], "bboxes": [[1.31, 0.57, 498.69, 374.32], [51.52, 9.71, 448.48, 281.25]]}}
{"image_file": "000000212868.jpg", "image_link": "http://images.cocodataset.org/train2017/000000212868.jpg", "width": 640, "height": 631, "caption": "The backpack is on the cat.", "label": 1, "relation": "on", "ref_exp": {"labels": ["backpack", "cat"], "label_positions": [[4, 12], [23, 26]], "bboxes": [[255.24, 70.9, 277.92, 313.37], [28.5, 38.0, 611.5, 555.0]]}}
{"image_file": "000000005139.jpg", "image_link": "http://images.cocodataset.org/train2017/000000005139.jpg", "width": 640, "height": 444, "caption": "The tennis racket is below the person.", "label": 0, "relation": "below", "ref_exp": {"labels": ["tennis racket", "person"], "label_positions": [[4, 17], [31, 37]], "bboxes": [[99.0, 44.5, 315.0, 319.0], [3.0, 39.0, 434.0, 399.0]]}}
{"image_file": "000000029575.jpg", "image_link": "http://images.cocodataset.org/train2017/000000029575.jpg", "width": 612, "height": 612, "caption": "The bed is under the umbrella.", "label": 0, "relation": "under", "ref_exp": {"labels": ["bed", "umbrella"], "label_positions": [[4, 7], [21, 29]], "bboxes": [[21.91, 59.0, 573.66, 533.96], [126.98, 20.35, 103.2, 34.72]]}}
{"image_file": "000000135866.jpg", "image_link": "http://images.cocodataset.org/train2017/000000135866.jpg", "width": 640, "height": 428, "caption": "The bed is right of the potted plant.", "label": 1, "relation": "right of", "ref_exp": {"labels": ["bed", "potted plant"], "label_positions": [[4, 7], [24, 36]], "bboxes": [[162.54, 235.64, 443.39, 187.55], [0.0, 281.67, 66.57, 88.62]]}}
{"image_file": "000000293372.jpg", "image_link": "http://images.cocodataset.org/train2017/000000293372.jpg", "width": 640, "height": 525, "caption": "The person is on top of the bed.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["person", "bed"], "label_positions": [[4, 10], [28, 31]], "bboxes": [[74.66, 165.16, 343.68, 347.24], [0.0, 184.51, 401.68, 334.41]]}}
{"image_file": "000000511668.jpg", "image_link": "http://images.cocodataset.org/train2017/000000511668.jpg", "width": 640, "height": 480, "caption": "The hot dog is at the right side of the person.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["hot dog", "person"], "label_positions": [[4, 11], [40, 46]], "bboxes": [[63.4, 74.15, 576.6, 219.62], [118.92, 277.3, 219.46, 125.4]]}}
{"image_file": "000000307547.jpg", "image_link": "http://images.cocodataset.org/train2017/000000307547.jpg", "width": 427, "height": 640, "caption": "The giraffe is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["giraffe", "person"], "label_positions": [[4, 11], [28, 34]], "bboxes": [[1.44, 93.48, 204.22, 264.63], [187.24, 234.15, 239.76, 405.85]]}}
{"image_file": "000000469152.jpg", "image_link": "http://images.cocodataset.org/train2017/000000469152.jpg", "width": 455, "height": 552, "caption": "The book is at the right side of the teddy bear.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["book", "teddy bear"], "label_positions": [[4, 8], [37, 47]], "bboxes": [[23.48, 251.21, 411.63, 300.79], [8.68, 1.03, 445.32, 280.35]]}}
{"image_file": "000000401802.jpg", "image_link": "http://images.cocodataset.org/train2017/000000401802.jpg", "width": 427, "height": 640, "caption": "The dining table is under the train.", "label": 0, "relation": "under", "ref_exp": {"labels": ["dining table", "train"], "label_positions": [[4, 16], [30, 35]], "bboxes": [[0.0, 411.94, 427.0, 228.06], [2.87, 2.3, 424.13, 337.22]]}}
{"image_file": "000000277162.jpg", "image_link": "http://images.cocodataset.org/train2017/000000277162.jpg", "width": 500, "height": 375, "caption": "The bench is under the hot dog.", "label": 1, "relation": "under", "ref_exp": {"labels": ["bench", "hot dog"], "label_positions": [[4, 9], [23, 30]], "bboxes": [[0.0, 20.22, 141.57, 343.82], [115.35, 84.78, 353.43, 219.35]]}}
{"image_file": "000000248363.jpg", "image_link": "http://images.cocodataset.org/train2017/000000248363.jpg", "width": 427, "height": 640, "caption": "The cat is touching the dining table.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["cat", "dining table"], "label_positions": [[4, 7], [24, 36]], "bboxes": [[33.08, 0.0, 142.38, 205.66], [0.0, 1.13, 427.0, 630.93]]}}
{"image_file": "000000407617.jpg", "image_link": "http://images.cocodataset.org/train2017/000000407617.jpg", "width": 480, "height": 640, "caption": "The refrigerator is behind the person.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["refrigerator", "person"], "label_positions": [[4, 16], [31, 37]], "bboxes": [[50.34, 130.88, 375.37, 385.43], [104.99, 156.76, 156.76, 350.93]]}}
{"image_file": "000000217458.jpg", "image_link": "http://images.cocodataset.org/train2017/000000217458.jpg", "width": 640, "height": 427, "caption": "The teddy bear is on the bed.", "label": 0, "relation": "on", "ref_exp": {"labels": ["teddy bear", "bed"], "label_positions": [[4, 14], [25, 28]], "bboxes": [[102.32, 45.06, 521.21, 344.24], [0.0, 279.35, 640.0, 147.65]]}}
{"image_file": "000000115400.jpg", "image_link": "http://images.cocodataset.org/train2017/000000115400.jpg", "width": 480, "height": 640, "caption": "The car is in front of the bus.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["car", "bus"], "label_positions": [[4, 7], [27, 30]], "bboxes": [[1.88, 344.41, 478.12, 286.53], [255.46, 252.55, 224.54, 169.86]]}}
{"image_file": "000000036417.jpg", "image_link": "http://images.cocodataset.org/train2017/000000036417.jpg", "width": 640, "height": 480, "caption": "The apple is on top of the banana.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["apple", "banana"], "label_positions": [[4, 9], [27, 33]], "bboxes": [[105.04, 167.15, 166.02, 126.5], [36.83, 113.68, 564.39, 283.22]]}}
{"image_file": "000000136559.jpg", "image_link": "http://images.cocodataset.org/train2017/000000136559.jpg", "width": 500, "height": 375, "caption": "The cat is touching the keyboard.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cat", "keyboard"], "label_positions": [[4, 7], [24, 32]], "bboxes": [[128.64, 5.84, 371.36, 194.23], [0.0, 202.3, 407.68, 172.7]]}}
{"image_file": "000000346614.jpg", "image_link": "http://images.cocodataset.org/train2017/000000346614.jpg", "width": 640, "height": 452, "caption": "The cat is on top of the laptop.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "laptop"], "label_positions": [[4, 7], [25, 31]], "bboxes": [[81.83, 155.38, 353.61, 212.36], [23.41, 293.19, 593.51, 137.43]]}}
{"image_file": "000000024223.jpg", "image_link": "http://images.cocodataset.org/train2017/000000024223.jpg", "width": 640, "height": 480, "caption": "The person is touching the pizza.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "pizza"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[111.54, 330.55, 528.46, 144.12], [129.44, 88.45, 453.03, 304.18]]}}
{"image_file": "000000440455.jpg", "image_link": "http://images.cocodataset.org/train2017/000000440455.jpg", "width": 640, "height": 425, "caption": "The tv is at the left side of the person.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["tv", "person"], "label_positions": [[4, 6], [34, 40]], "bboxes": [[0.0, 126.74, 142.94, 293.5], [114.86, 32.07, 238.35, 344.59]]}}
{"image_file": "000000032533.jpg", "image_link": "http://images.cocodataset.org/train2017/000000032533.jpg", "width": 634, "height": 640, "caption": "The motorcycle is parallel to the bus.", "label": 0, "relation": "parallel to", "ref_exp": {"labels": ["motorcycle", "bus"], "label_positions": [[4, 14], [34, 37]], "bboxes": [[264.38, 274.59, 293.4, 290.18], [21.57, 179.78, 214.3, 115.05]]}}
{"image_file": "000000427615.jpg", "image_link": "http://images.cocodataset.org/train2017/000000427615.jpg", "width": 640, "height": 480, "caption": "The teddy bear is on top of the person.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["teddy bear", "person"], "label_positions": [[4, 14], [32, 38]], "bboxes": [[174.13, 128.88, 248.5, 351.12], [197.39, 0.0, 415.28, 473.2]]}}
{"image_file": "000000029128.jpg", "image_link": "http://images.cocodataset.org/train2017/000000029128.jpg", "width": 479, "height": 640, "caption": "The bicycle is in front of the cat.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["bicycle", "cat"], "label_positions": [[4, 11], [31, 34]], "bboxes": [[3.38, 0.0, 473.33, 325.28], [0.0, 202.07, 413.79, 335.17]]}}
{"image_file": "000000482002.jpg", "image_link": "http://images.cocodataset.org/train2017/000000482002.jpg", "width": 427, "height": 640, "caption": "The person is at the left side of the umbrella.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["person", "umbrella"], "label_positions": [[4, 10], [38, 46]], "bboxes": [[95.85, 181.57, 199.72, 456.49], [37.31, 42.48, 389.69, 261.16]]}}
{"image_file": "000000054399.jpg", "image_link": "http://images.cocodataset.org/train2017/000000054399.jpg", "width": 480, "height": 640, "caption": "The handbag is beneath the cat.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["handbag", "cat"], "label_positions": [[4, 11], [27, 30]], "bboxes": [[84.17, 242.36, 342.5, 268.48], [178.92, 260.13, 154.16, 165.16]]}}
{"image_file": "000000110488.jpg", "image_link": "http://images.cocodataset.org/train2017/000000110488.jpg", "width": 640, "height": 480, "caption": "The oven is at the left side of the person.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["oven", "person"], "label_positions": [[4, 8], [36, 42]], "bboxes": [[480.0, 340.85, 159.64, 131.6], [217.4, 7.66, 145.29, 462.78]]}}
{"image_file": "000000294083.jpg", "image_link": "http://images.cocodataset.org/train2017/000000294083.jpg", "width": 640, "height": 427, "caption": "The person is at the right side of the laptop.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["person", "laptop"], "label_positions": [[4, 10], [39, 45]], "bboxes": [[74.84, 79.64, 322.41, 341.6], [342.37, 271.68, 297.63, 145.22]]}}
{"image_file": "000000486397.jpg", "image_link": "http://images.cocodataset.org/train2017/000000486397.jpg", "width": 640, "height": 427, "caption": "The person is connected to the sheep.", "label": 1, "relation": "connected to", "ref_exp": {"labels": ["person", "sheep"], "label_positions": [[4, 10], [31, 36]], "bboxes": [[28.79, 77.56, 162.16, 274.44], [213.06, 154.26, 422.99, 193.84]]}}
{"image_file": "000000012698.jpg", "image_link": "http://images.cocodataset.org/train2017/000000012698.jpg", "width": 640, "height": 480, "caption": "The sandwich is at the edge of the bowl.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["sandwich", "bowl"], "label_positions": [[4, 12], [35, 39]], "bboxes": [[257.8, 77.66, 338.69, 366.74], [18.75, 63.12, 595.0, 393.76]]}}
{"image_file": "000000106657.jpg", "image_link": "http://images.cocodataset.org/train2017/000000106657.jpg", "width": 480, "height": 640, "caption": "The cake is in front of the teddy bear.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["cake", "teddy bear"], "label_positions": [[4, 8], [28, 38]], "bboxes": [[14.35, 357.02, 465.65, 281.26], [0.0, 71.75, 375.96, 327.17]]}}
{"image_file": "000000144746.jpg", "image_link": "http://images.cocodataset.org/train2017/000000144746.jpg", "width": 640, "height": 480, "caption": "The backpack is beside the cat.", "label": 0, "relation": "beside", "ref_exp": {"labels": ["backpack", "cat"], "label_positions": [[4, 12], [27, 30]], "bboxes": [[82.29, 148.36, 461.29, 236.89], [152.44, 39.56, 249.06, 283.02]]}}
{"image_file": "000000392111.jpg", "image_link": "http://images.cocodataset.org/train2017/000000392111.jpg", "width": 640, "height": 427, "caption": "The bus is beside the train.", "label": 0, "relation": "beside", "ref_exp": {"labels": ["bus", "train"], "label_positions": [[4, 7], [22, 27]], "bboxes": [[351.09, 1.79, 288.91, 255.14], [354.07, 13.43, 238.93, 196.71]]}}
{"image_file": "000000172297.jpg", "image_link": "http://images.cocodataset.org/train2017/000000172297.jpg", "width": 640, "height": 383, "caption": "The person is left of the cow.", "label": 0, "relation": "left of", "ref_exp": {"labels": ["person", "cow"], "label_positions": [[4, 10], [26, 29]], "bboxes": [[500.38, 261.9, 139.62, 115.67], [2.58, 53.36, 490.59, 323.62]]}}
{"image_file": "000000454818.jpg", "image_link": "http://images.cocodataset.org/train2017/000000454818.jpg", "width": 640, "height": 480, "caption": "The dog is out of the car.", "label": 0, "relation": "out of", "ref_exp": {"labels": ["dog", "car"], "label_positions": [[4, 7], [22, 25]], "bboxes": [[187.36, 128.59, 356.38, 189.29], [2.06, 1.72, 637.94, 473.82]]}}
{"image_file": "000000001561.jpg", "image_link": "http://images.cocodataset.org/train2017/000000001561.jpg", "width": 640, "height": 480, "caption": "The couch is behind the skateboard.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["couch", "skateboard"], "label_positions": [[4, 9], [24, 34]], "bboxes": [[1.25, 1.25, 637.09, 468.78], [0.0, 162.7, 615.14, 163.25]]}}
{"image_file": "000000211449.jpg", "image_link": "http://images.cocodataset.org/train2017/000000211449.jpg", "width": 427, "height": 640, "caption": "The dog is in front of the motorcycle.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["dog", "motorcycle"], "label_positions": [[4, 7], [27, 37]], "bboxes": [[27.15, 27.15, 355.56, 355.56], [0.0, 0.0, 427.0, 631.37]]}}
{"image_file": "000000111727.jpg", "image_link": "http://images.cocodataset.org/train2017/000000111727.jpg", "width": 375, "height": 500, "caption": "The cat is at the edge of the sink.", "label": 0, "relation": "at the edge of", "ref_exp": {"labels": ["cat", "sink"], "label_positions": [[4, 7], [30, 34]], "bboxes": [[119.35, 139.78, 182.8, 237.64], [0.86, 110.35, 349.15, 358.05]]}}
{"image_file": "000000022962.jpg", "image_link": "http://images.cocodataset.org/train2017/000000022962.jpg", "width": 640, "height": 480, "caption": "The laptop is under the cat.", "label": 1, "relation": "under", "ref_exp": {"labels": ["laptop", "cat"], "label_positions": [[4, 10], [24, 27]], "bboxes": [[2.16, 34.52, 325.75, 237.3], [0.0, 100.86, 540.0, 297.93]]}}
{"image_file": "000000028134.jpg", "image_link": "http://images.cocodataset.org/train2017/000000028134.jpg", "width": 480, "height": 640, "caption": "The bird is above the book.", "label": 0, "relation": "above", "ref_exp": {"labels": ["bird", "book"], "label_positions": [[4, 8], [22, 26]], "bboxes": [[129.82, 196.26, 199.49, 385.22], [41.26, 234.59, 38.26, 38.84]]}}
{"image_file": "000000365139.jpg", "image_link": "http://images.cocodataset.org/train2017/000000365139.jpg", "width": 480, "height": 640, "caption": "The dog is inside the sink.", "label": 1, "relation": "inside", "ref_exp": {"labels": ["dog", "sink"], "label_positions": [[4, 7], [22, 26]], "bboxes": [[90.57, 189.63, 222.8, 325.22], [1.44, 148.13, 447.28, 384.0]]}}
{"image_file": "000000101194.jpg", "image_link": "http://images.cocodataset.org/train2017/000000101194.jpg", "width": 640, "height": 427, "caption": "The pizza is across from the person.", "label": 0, "relation": "across from", "ref_exp": {"labels": ["pizza", "person"], "label_positions": [[4, 9], [29, 35]], "bboxes": [[392.78, 144.84, 125.16, 68.23], [0.97, 0.0, 518.01, 301.13]]}}
{"image_file": "000000092575.jpg", "image_link": "http://images.cocodataset.org/train2017/000000092575.jpg", "width": 427, "height": 640, "caption": "The teddy bear is far from the car.", "label": 1, "relation": "far from", "ref_exp": {"labels": ["teddy bear", "car"], "label_positions": [[4, 14], [31, 34]], "bboxes": [[149.57, 257.44, 231.55, 270.38], [75.31, 66.66, 223.4, 124.38]]}}
{"image_file": "000000563178.jpg", "image_link": "http://images.cocodataset.org/train2017/000000563178.jpg", "width": 640, "height": 545, "caption": "The bowl contains the cat.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["bowl", "cat"], "label_positions": [[4, 8], [22, 25]], "bboxes": [[445.54, 118.21, 35.47, 17.62], [0.0, 100.48, 546.17, 417.79]]}}
{"image_file": "000000572441.jpg", "image_link": "http://images.cocodataset.org/train2017/000000572441.jpg", "width": 640, "height": 427, "caption": "The orange is touching the dining table.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["orange", "dining table"], "label_positions": [[4, 10], [27, 39]], "bboxes": [[25.87, 169.3, 121.52, 97.89], [0.0, 0.0, 640.0, 427.0]]}}
{"image_file": "000000469912.jpg", "image_link": "http://images.cocodataset.org/train2017/000000469912.jpg", "width": 480, "height": 640, "caption": "The person is away from the sandwich.", "label": 1, "relation": "away from", "ref_exp": {"labels": ["person", "sandwich"], "label_positions": [[4, 10], [28, 36]], "bboxes": [[279.01, 5.75, 126.56, 126.56], [90.61, 257.44, 343.73, 330.78]]}}
{"image_file": "000000440136.jpg", "image_link": "http://images.cocodataset.org/train2017/000000440136.jpg", "width": 612, "height": 612, "caption": "The person is in the middle of the bench.", "label": 1, "relation": "in the middle of", "ref_exp": {"labels": ["person", "bench"], "label_positions": [[4, 10], [35, 40]], "bboxes": [[151.11, 155.24, 176.95, 80.66], [26.19, 186.77, 574.78, 293.59]]}}
{"image_file": "000000032586.jpg", "image_link": "http://images.cocodataset.org/train2017/000000032586.jpg", "width": 640, "height": 480, "caption": "The cat is in front of the potted plant.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["cat", "potted plant"], "label_positions": [[4, 7], [27, 39]], "bboxes": [[177.55, 75.61, 461.42, 210.58], [2.49, 11.22, 155.85, 245.61]]}}
{"image_file": "000000316581.jpg", "image_link": "http://images.cocodataset.org/train2017/000000316581.jpg", "width": 640, "height": 478, "caption": "The couch is far away from the sandwich.", "label": 1, "relation": "far away from", "ref_exp": {"labels": ["couch", "sandwich"], "label_positions": [[4, 9], [31, 39]], "bboxes": [[298.41, 32.22, 103.36, 32.66], [323.92, 203.56, 251.81, 215.27]]}}
{"image_file": "000000091057.jpg", "image_link": "http://images.cocodataset.org/train2017/000000091057.jpg", "width": 480, "height": 640, "caption": "The dog is touching the pizza.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["dog", "pizza"], "label_positions": [[4, 7], [24, 29]], "bboxes": [[146.1, 70.72, 258.59, 296.08], [135.19, 192.72, 220.05, 240.18]]}}
{"image_file": "000000473779.jpg", "image_link": "http://images.cocodataset.org/train2017/000000473779.jpg", "width": 640, "height": 480, "caption": "The teddy bear is below the umbrella.", "label": 0, "relation": "below", "ref_exp": {"labels": ["teddy bear", "umbrella"], "label_positions": [[4, 14], [28, 36]], "bboxes": [[393.71, 77.06, 189.84, 303.3], [228.1, 139.57, 95.18, 257.75]]}}
{"image_file": "000000151959.jpg", "image_link": "http://images.cocodataset.org/train2017/000000151959.jpg", "width": 640, "height": 427, "caption": "The dining table is perpendicular to the surfboard.", "label": 0, "relation": "perpendicular to", "ref_exp": {"labels": ["dining table", "surfboard"], "label_positions": [[4, 16], [41, 50]], "bboxes": [[47.69, 114.24, 505.75, 307.21], [43.18, 116.11, 509.52, 277.31]]}}
{"image_file": "000000117764.jpg", "image_link": "http://images.cocodataset.org/train2017/000000117764.jpg", "width": 375, "height": 500, "caption": "The laptop is touching the teddy bear.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["laptop", "teddy bear"], "label_positions": [[4, 10], [27, 37]], "bboxes": [[134.83, 280.9, 240.17, 212.36], [99.19, 131.46, 110.92, 88.02]]}}
{"image_file": "000000528832.jpg", "image_link": "http://images.cocodataset.org/train2017/000000528832.jpg", "width": 640, "height": 428, "caption": "The teddy bear is behind the bird.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["teddy bear", "bird"], "label_positions": [[4, 14], [29, 33]], "bboxes": [[197.43, 46.72, 348.5, 318.08], [22.09, 42.34, 217.22, 313.87]]}}
{"image_file": "000000560368.jpg", "image_link": "http://images.cocodataset.org/train2017/000000560368.jpg", "width": 640, "height": 427, "caption": "The bed is across from the handbag.", "label": 1, "relation": "across from", "ref_exp": {"labels": ["bed", "handbag"], "label_positions": [[4, 7], [27, 34]], "bboxes": [[233.08, 105.17, 349.63, 264.61], [54.21, 289.05, 111.64, 82.87]]}}
{"image_file": "000000500018.jpg", "image_link": "http://images.cocodataset.org/train2017/000000500018.jpg", "width": 640, "height": 400, "caption": "The person is touching the elephant.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "elephant"], "label_positions": [[4, 10], [27, 35]], "bboxes": [[22.69, 0.0, 277.87, 400.0], [87.81, 153.34, 552.04, 246.66]]}}
{"image_file": "000000424588.jpg", "image_link": "http://images.cocodataset.org/train2017/000000424588.jpg", "width": 375, "height": 500, "caption": "The oven is at the right side of the pizza.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["oven", "pizza"], "label_positions": [[4, 8], [37, 42]], "bboxes": [[135.42, 0.65, 239.58, 220.05], [29.28, 173.99, 345.72, 277.02]]}}
{"image_file": "000000147270.jpg", "image_link": "http://images.cocodataset.org/train2017/000000147270.jpg", "width": 480, "height": 640, "caption": "The fire hydrant is facing away from the person.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["fire hydrant", "person"], "label_positions": [[4, 16], [41, 47]], "bboxes": [[119.32, 61.84, 222.73, 385.66], [0.0, 0.09, 123.83, 233.14]]}}
{"image_file": "000000359834.jpg", "image_link": "http://images.cocodataset.org/train2017/000000359834.jpg", "width": 640, "height": 480, "caption": "The cat is next to the bear.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["cat", "bear"], "label_positions": [[4, 7], [23, 27]], "bboxes": [[146.58, 54.71, 440.77, 276.64], [152.78, 50.65, 473.5, 287.14]]}}
{"image_file": "000000446917.jpg", "image_link": "http://images.cocodataset.org/train2017/000000446917.jpg", "width": 640, "height": 427, "caption": "The person is touching the banana.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "banana"], "label_positions": [[4, 10], [27, 33]], "bboxes": [[0.0, 0.57, 490.19, 421.26], [398.03, 134.44, 124.72, 130.59]]}}
{"image_file": "000000279829.jpg", "image_link": "http://images.cocodataset.org/train2017/000000279829.jpg", "width": 640, "height": 479, "caption": "The cat is in the sink.", "label": 1, "relation": "in", "ref_exp": {"labels": ["cat", "sink"], "label_positions": [[4, 7], [18, 22]], "bboxes": [[85.73, 29.04, 235.75, 377.2], [19.36, 122.71, 441.34, 327.23]]}}
{"image_file": "000000193168.jpg", "image_link": "http://images.cocodataset.org/train2017/000000193168.jpg", "width": 640, "height": 428, "caption": "The broccoli is on the oven.", "label": 0, "relation": "on", "ref_exp": {"labels": ["broccoli", "oven"], "label_positions": [[4, 12], [23, 27]], "bboxes": [[153.82, 244.69, 44.21, 66.31], [0.0, 0.96, 640.0, 421.27]]}}
{"image_file": "000000574696.jpg", "image_link": "http://images.cocodataset.org/train2017/000000574696.jpg", "width": 640, "height": 480, "caption": "The car is far away from the zebra.", "label": 1, "relation": "far away from", "ref_exp": {"labels": ["car", "zebra"], "label_positions": [[4, 7], [29, 34]], "bboxes": [[574.7, 145.75, 43.32, 13.49], [120.0, 61.95, 410.36, 346.07]]}}
{"image_file": "000000393375.jpg", "image_link": "http://images.cocodataset.org/train2017/000000393375.jpg", "width": 640, "height": 427, "caption": "The laptop is at the left side of the cake.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["laptop", "cake"], "label_positions": [[4, 10], [38, 42]], "bboxes": [[0.96, 0.67, 126.66, 332.96], [250.1, 207.13, 114.74, 109.4]]}}
{"image_file": "000000290942.jpg", "image_link": "http://images.cocodataset.org/train2017/000000290942.jpg", "width": 640, "height": 480, "caption": "The dog is at the right side of the apple.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["dog", "apple"], "label_positions": [[4, 7], [36, 41]], "bboxes": [[379.72, 64.02, 236.59, 409.89], [105.21, 224.33, 129.83, 181.11]]}}
{"image_file": "000000423668.jpg", "image_link": "http://images.cocodataset.org/train2017/000000423668.jpg", "width": 640, "height": 484, "caption": "The person is at the edge of the boat.", "label": 0, "relation": "at the edge of", "ref_exp": {"labels": ["person", "boat"], "label_positions": [[4, 10], [33, 37]], "bboxes": [[306.71, 94.62, 129.43, 358.93], [0.0, 88.1, 364.36, 212.09]]}}
{"image_file": "000000579815.jpg", "image_link": "http://images.cocodataset.org/train2017/000000579815.jpg", "width": 640, "height": 480, "caption": "The person is beneath the umbrella.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["person", "umbrella"], "label_positions": [[4, 10], [26, 34]], "bboxes": [[97.96, 217.66, 344.19, 262.34], [119.73, 92.76, 468.14, 305.26]]}}
{"image_file": "000000238455.jpg", "image_link": "http://images.cocodataset.org/train2017/000000238455.jpg", "width": 640, "height": 399, "caption": "The clock is above the bird.", "label": 0, "relation": "above", "ref_exp": {"labels": ["clock", "bird"], "label_positions": [[4, 9], [23, 27]], "bboxes": [[0.0, 27.8, 222.36, 220.57], [373.84, 62.46, 266.0, 278.58]]}}
{"image_file": "000000201186.jpg", "image_link": "http://images.cocodataset.org/train2017/000000201186.jpg", "width": 480, "height": 640, "caption": "The person is on top of the bed.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["person", "bed"], "label_positions": [[4, 10], [28, 31]], "bboxes": [[145.59, 148.47, 332.97, 484.32], [0.0, 252.88, 271.82, 332.23]]}}
{"image_file": "000000444285.jpg", "image_link": "http://images.cocodataset.org/train2017/000000444285.jpg", "width": 640, "height": 480, "caption": "The umbrella is on the bed.", "label": 0, "relation": "on", "ref_exp": {"labels": ["umbrella", "bed"], "label_positions": [[4, 12], [23, 26]], "bboxes": [[2.16, 0.07, 581.39, 387.24], [42.07, 46.06, 597.93, 418.52]]}}
{"image_file": "000000313520.jpg", "image_link": "http://images.cocodataset.org/train2017/000000313520.jpg", "width": 640, "height": 427, "caption": "The chair is over the dog.", "label": 1, "relation": "over", "ref_exp": {"labels": ["chair", "dog"], "label_positions": [[4, 9], [22, 25]], "bboxes": [[109.8, 2.22, 530.2, 229.58], [77.48, 81.74, 562.52, 314.23]]}}
{"image_file": "000000150691.jpg", "image_link": "http://images.cocodataset.org/train2017/000000150691.jpg", "width": 640, "height": 480, "caption": "The cat is at the right side of the remote.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["cat", "remote"], "label_positions": [[4, 7], [36, 42]], "bboxes": [[129.28, 11.02, 507.62, 397.75], [2.16, 245.81, 525.11, 227.72]]}}
{"image_file": "000000272713.jpg", "image_link": "http://images.cocodataset.org/train2017/000000272713.jpg", "width": 640, "height": 480, "caption": "The cat is at the left side of the vase.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["cat", "vase"], "label_positions": [[4, 7], [35, 39]], "bboxes": [[24.83, 178.45, 248.27, 295.86], [283.69, 224.36, 239.46, 220.04]]}}
{"image_file": "000000522909.jpg", "image_link": "http://images.cocodataset.org/train2017/000000522909.jpg", "width": 500, "height": 375, "caption": "The suitcase is under the cat.", "label": 0, "relation": "under", "ref_exp": {"labels": ["suitcase", "cat"], "label_positions": [[4, 12], [26, 29]], "bboxes": [[51.34, 0.0, 74.92, 197.64], [156.45, 13.71, 308.07, 361.29]]}}
{"image_file": "000000095100.jpg", "image_link": "http://images.cocodataset.org/train2017/000000095100.jpg", "width": 375, "height": 500, "caption": "The person is above the pizza.", "label": 1, "relation": "above", "ref_exp": {"labels": ["person", "pizza"], "label_positions": [[4, 10], [24, 29]], "bboxes": [[0.0, 0.0, 212.53, 335.68], [65.17, 292.92, 292.13, 200.0]]}}
{"image_file": "000000534887.jpg", "image_link": "http://images.cocodataset.org/train2017/000000534887.jpg", "width": 480, "height": 640, "caption": "The hot dog is on the dining table.", "label": 0, "relation": "on", "ref_exp": {"labels": ["hot dog", "dining table"], "label_positions": [[4, 11], [22, 34]], "bboxes": [[242.21, 286.13, 117.79, 134.03], [4.52, 390.02, 471.34, 242.45]]}}
{"image_file": "000000137514.jpg", "image_link": "http://images.cocodataset.org/train2017/000000137514.jpg", "width": 500, "height": 375, "caption": "The cat is on top of the microwave.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["cat", "microwave"], "label_positions": [[4, 7], [25, 34]], "bboxes": [[221.44, 51.72, 274.79, 291.76], [0.0, 0.0, 375.97, 297.08]]}}
{"image_file": "000000328838.jpg", "image_link": "http://images.cocodataset.org/train2017/000000328838.jpg", "width": 640, "height": 480, "caption": "The cake is at the edge of the oven.", "label": 0, "relation": "at the edge of", "ref_exp": {"labels": ["cake", "oven"], "label_positions": [[4, 8], [31, 35]], "bboxes": [[151.31, 134.61, 327.74, 242.21], [1.25, 53.24, 458.8, 420.15]]}}
{"image_file": "000000183964.jpg", "image_link": "http://images.cocodataset.org/train2017/000000183964.jpg", "width": 640, "height": 480, "caption": "The fire hydrant is close to the motorcycle.", "label": 1, "relation": "close to", "ref_exp": {"labels": ["fire hydrant", "motorcycle"], "label_positions": [[4, 16], [33, 43]], "bboxes": [[107.38, 46.28, 208.32, 401.61], [0.21, 37.45, 156.22, 201.29]]}}
{"image_file": "000000154202.jpg", "image_link": "http://images.cocodataset.org/train2017/000000154202.jpg", "width": 640, "height": 480, "caption": "The bed is adjacent to the umbrella.", "label": 0, "relation": "adjacent to", "ref_exp": {"labels": ["bed", "umbrella"], "label_positions": [[4, 7], [27, 35]], "bboxes": [[2.16, 1.08, 636.4, 473.53], [456.41, 181.2, 114.34, 116.06]]}}
{"image_file": "000000284851.jpg", "image_link": "http://images.cocodataset.org/train2017/000000284851.jpg", "width": 640, "height": 360, "caption": "The cat is touching the dog.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["cat", "dog"], "label_positions": [[4, 7], [24, 27]], "bboxes": [[0.0, 54.97, 347.61, 265.55], [326.55, 32.73, 313.45, 323.63]]}}
{"image_file": "000000177532.jpg", "image_link": "http://images.cocodataset.org/train2017/000000177532.jpg", "width": 375, "height": 500, "caption": "The teddy bear is at the right side of the dog.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["teddy bear", "dog"], "label_positions": [[4, 14], [43, 46]], "bboxes": [[101.12, 0.0, 273.04, 500.0], [0.0, 173.14, 173.04, 321.93]]}}
{"image_file": "000000455608.jpg", "image_link": "http://images.cocodataset.org/train2017/000000455608.jpg", "width": 468, "height": 640, "caption": "The fork is touching the cake.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["fork", "cake"], "label_positions": [[4, 8], [25, 29]], "bboxes": [[118.88, 231.73, 349.12, 114.64], [77.66, 300.58, 336.54, 204.23]]}}
{"image_file": "000000028320.jpg", "image_link": "http://images.cocodataset.org/train2017/000000028320.jpg", "width": 640, "height": 478, "caption": "The laptop is far away from the sandwich.", "label": 1, "relation": "far away from", "ref_exp": {"labels": ["laptop", "sandwich"], "label_positions": [[4, 10], [32, 40]], "bboxes": [[349.39, 1.02, 163.98, 65.37], [47.26, 76.27, 443.63, 322.24]]}}
{"image_file": "000000451018.jpg", "image_link": "http://images.cocodataset.org/train2017/000000451018.jpg", "width": 612, "height": 612, "caption": "The person is facing the book.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["person", "book"], "label_positions": [[4, 10], [25, 29]], "bboxes": [[24.81, 124.05, 441.08, 385.95], [32.73, 416.45, 412.36, 176.73]]}}
{"image_file": "000000279917.jpg", "image_link": "http://images.cocodataset.org/train2017/000000279917.jpg", "width": 640, "height": 427, "caption": "The dog is parallel to the person.", "label": 1, "relation": "parallel to", "ref_exp": {"labels": ["dog", "person"], "label_positions": [[4, 7], [27, 33]], "bboxes": [[340.91, 203.17, 280.65, 218.66], [39.25, 50.36, 329.35, 372.43]]}}
{"image_file": "000000502949.jpg", "image_link": "http://images.cocodataset.org/train2017/000000502949.jpg", "width": 640, "height": 427, "caption": "The pizza is far away from the tv.", "label": 1, "relation": "far away from", "ref_exp": {"labels": ["pizza", "tv"], "label_positions": [[4, 9], [31, 33]], "bboxes": [[27.42, 227.42, 454.58, 160.16], [212.11, 21.32, 27.57, 51.37]]}}
{"image_file": "000000471039.jpg", "image_link": "http://images.cocodataset.org/train2017/000000471039.jpg", "width": 612, "height": 612, "caption": "The person is facing away from the banana.", "label": 0, "relation": "facing away from", "ref_exp": {"labels": ["person", "banana"], "label_positions": [[4, 10], [35, 41]], "bboxes": [[300.65, 19.17, 95.28, 145.17], [96.56, 455.37, 411.18, 139.03]]}}
{"image_file": "000000557245.jpg", "image_link": "http://images.cocodataset.org/train2017/000000557245.jpg", "width": 640, "height": 425, "caption": "The couch is above the laptop.", "label": 0, "relation": "above", "ref_exp": {"labels": ["couch", "laptop"], "label_positions": [[4, 9], [23, 29]], "bboxes": [[0.0, 122.85, 138.5, 179.0], [403.0, 114.16, 237.0, 251.44]]}}
{"image_file": "000000294102.jpg", "image_link": "http://images.cocodataset.org/train2017/000000294102.jpg", "width": 640, "height": 480, "caption": "The donut is at the edge of the dining table.", "label": 0, "relation": "at the edge of", "ref_exp": {"labels": ["donut", "dining table"], "label_positions": [[4, 9], [32, 44]], "bboxes": [[14.21, 101.95, 368.89, 273.0], [141.3, 0.0, 498.7, 186.61]]}}
{"image_file": "000000060320.jpg", "image_link": "http://images.cocodataset.org/train2017/000000060320.jpg", "width": 635, "height": 640, "caption": "The bus is in front of the book.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["bus", "book"], "label_positions": [[4, 7], [27, 31]], "bboxes": [[22.97, 293.58, 441.35, 182.29], [138.21, 417.04, 25.64, 27.08]]}}
{"image_file": "000000495055.jpg", "image_link": "http://images.cocodataset.org/train2017/000000495055.jpg", "width": 640, "height": 581, "caption": "The bed is connected to the teddy bear.", "label": 0, "relation": "connected to", "ref_exp": {"labels": ["bed", "teddy bear"], "label_positions": [[4, 7], [28, 38]], "bboxes": [[9.05, 322.48, 630.95, 249.0], [334.06, 207.22, 187.06, 207.67]]}}
{"image_file": "000000181296.jpg", "image_link": "http://images.cocodataset.org/train2017/000000181296.jpg", "width": 640, "height": 436, "caption": "The motorcycle is in front of the dining table.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["motorcycle", "dining table"], "label_positions": [[4, 14], [34, 46]], "bboxes": [[4.91, 106.55, 635.09, 325.03], [77.72, 82.32, 82.42, 21.26]]}}
{"image_file": "000000126073.jpg", "image_link": "http://images.cocodataset.org/train2017/000000126073.jpg", "width": 640, "height": 428, "caption": "The laptop is touching the person.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["laptop", "person"], "label_positions": [[4, 10], [27, 33]], "bboxes": [[262.3, 183.89, 331.65, 207.29], [0.0, 41.26, 334.17, 329.38]]}}
{"image_file": "000000513733.jpg", "image_link": "http://images.cocodataset.org/train2017/000000513733.jpg", "width": 480, "height": 640, "caption": "The car is part of the cake.", "label": 0, "relation": "part of", "ref_exp": {"labels": ["car", "cake"], "label_positions": [[4, 7], [23, 27]], "bboxes": [[355.66, 6.42, 124.34, 93.34], [70.63, 38.92, 371.89, 454.05]]}}
{"image_file": "000000374904.jpg", "image_link": "http://images.cocodataset.org/train2017/000000374904.jpg", "width": 640, "height": 480, "caption": "The bicycle is across from the cow.", "label": 0, "relation": "across from", "ref_exp": {"labels": ["bicycle", "cow"], "label_positions": [[4, 11], [31, 34]], "bboxes": [[319.64, 218.12, 86.43, 221.14], [202.47, 179.9, 308.18, 300.1]]}}
{"image_file": "000000058677.jpg", "image_link": "http://images.cocodataset.org/train2017/000000058677.jpg", "width": 480, "height": 640, "caption": "The oven is away from the hot dog.", "label": 1, "relation": "away from", "ref_exp": {"labels": ["oven", "hot dog"], "label_positions": [[4, 8], [26, 33]], "bboxes": [[349.62, 92.58, 130.38, 151.28], [68.16, 369.04, 379.01, 262.65]]}}
{"image_file": "000000065836.jpg", "image_link": "http://images.cocodataset.org/train2017/000000065836.jpg", "width": 640, "height": 617, "caption": "The banana is above the bird.", "label": 1, "relation": "above", "ref_exp": {"labels": ["banana", "bird"], "label_positions": [[4, 10], [24, 28]], "bboxes": [[140.04, 260.67, 305.03, 348.01], [1.66, 237.47, 136.32, 176.43]]}}
{"image_file": "000000086133.jpg", "image_link": "http://images.cocodataset.org/train2017/000000086133.jpg", "width": 640, "height": 480, "caption": "The fire hydrant is in front of the train.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["fire hydrant", "train"], "label_positions": [[4, 16], [36, 41]], "bboxes": [[9.12, 174.93, 230.7, 305.07], [105.71, 8.63, 506.96, 434.7]]}}
{"image_file": "000000186635.jpg", "image_link": "http://images.cocodataset.org/train2017/000000186635.jpg", "width": 640, "height": 480, "caption": "The bowl is under the cat.", "label": 1, "relation": "under", "ref_exp": {"labels": ["bowl", "cat"], "label_positions": [[4, 8], [22, 25]], "bboxes": [[109.53, 221.31, 502.55, 253.42], [126.97, 104.26, 414.97, 368.51]]}}
{"image_file": "000000162355.jpg", "image_link": "http://images.cocodataset.org/train2017/000000162355.jpg", "width": 640, "height": 480, "caption": "The bicycle is adjacent to the cow.", "label": 0, "relation": "adjacent to", "ref_exp": {"labels": ["bicycle", "cow"], "label_positions": [[4, 11], [31, 34]], "bboxes": [[147.93, 192.93, 380.69, 261.73], [2.36, 171.31, 76.61, 46.35]]}}
{"image_file": "000000033904.jpg", "image_link": "http://images.cocodataset.org/train2017/000000033904.jpg", "width": 640, "height": 480, "caption": "The teddy bear is in the middle of the chair.", "label": 1, "relation": "in the middle of", "ref_exp": {"labels": ["teddy bear", "chair"], "label_positions": [[4, 14], [39, 44]], "bboxes": [[203.87, 73.17, 248.09, 169.35], [2.49, 3.74, 630.86, 468.78]]}}
{"image_file": "000000407390.jpg", "image_link": "http://images.cocodataset.org/train2017/000000407390.jpg", "width": 640, "height": 585, "caption": "The cat is in the refrigerator.", "label": 0, "relation": "in", "ref_exp": {"labels": ["cat", "refrigerator"], "label_positions": [[4, 7], [18, 30]], "bboxes": [[25.16, 39.0, 383.71, 539.71], [0.0, 38.45, 145.92, 348.37]]}}
{"image_file": "000000511133.jpg", "image_link": "http://images.cocodataset.org/train2017/000000511133.jpg", "width": 640, "height": 427, "caption": "The banana is at the left side of the bowl.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["banana", "bowl"], "label_positions": [[4, 10], [38, 42]], "bboxes": [[23.03, 101.78, 564.21, 316.65], [0.0, 0.06, 640.0, 420.29]]}}
{"image_file": "000000286660.jpg", "image_link": "http://images.cocodataset.org/val2017/000000286660.jpg", "width": 371, "height": 500, "caption": "The teddy bear is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["teddy bear", "person"], "label_positions": [[4, 14], [31, 37]], "bboxes": [[6.33, 85.13, 244.1, 414.87], [96.41, 1.79, 274.59, 497.76]]}}
{"image_file": "000000497320.jpg", "image_link": "http://images.cocodataset.org/train2017/000000497320.jpg", "width": 640, "height": 480, "caption": "The cat is at the back of the keyboard.", "label": 1, "relation": "at the back of", "ref_exp": {"labels": ["cat", "keyboard"], "label_positions": [[4, 7], [30, 38]], "bboxes": [[0.0, 0.0, 639.41, 420.37], [0.0, 299.87, 596.49, 174.74]]}}
{"image_file": "000000554291.jpg", "image_link": "http://images.cocodataset.org/val2017/000000554291.jpg", "width": 640, "height": 428, "caption": "The couch is below the dog.", "label": 0, "relation": "below", "ref_exp": {"labels": ["couch", "dog"], "label_positions": [[4, 9], [23, 26]], "bboxes": [[443.81, 38.89, 196.19, 201.14], [209.54, 69.66, 290.91, 345.52]]}}
{"image_file": "000000479563.jpg", "image_link": "http://images.cocodataset.org/train2017/000000479563.jpg", "width": 425, "height": 640, "caption": "The teddy bear is enclosed by the cake.", "label": 0, "relation": "enclosed by", "ref_exp": {"labels": ["teddy bear", "cake"], "label_positions": [[4, 14], [34, 38]], "bboxes": [[154.51, 86.3, 157.71, 165.99], [86.71, 84.82, 275.69, 456.9]]}}
{"image_file": "000000100542.jpg", "image_link": "http://images.cocodataset.org/train2017/000000100542.jpg", "width": 640, "height": 424, "caption": "The cup is at the left side of the bowl.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["cup", "bowl"], "label_positions": [[4, 7], [35, 39]], "bboxes": [[377.31, 223.62, 143.88, 158.17], [221.5, 63.71, 372.47, 208.31]]}}
{"image_file": "000000302349.jpg", "image_link": "http://images.cocodataset.org/train2017/000000302349.jpg", "width": 374, "height": 500, "caption": "The tv is above the dog.", "label": 1, "relation": "above", "ref_exp": {"labels": ["tv", "dog"], "label_positions": [[4, 6], [20, 23]], "bboxes": [[32.02, 22.21, 248.97, 143.6], [1.01, 213.13, 372.73, 279.8]]}}
{"image_file": "000000259498.jpg", "image_link": "http://images.cocodataset.org/train2017/000000259498.jpg", "width": 500, "height": 333, "caption": "The teddy bear is in the car.", "label": 0, "relation": "in", "ref_exp": {"labels": ["teddy bear", "car"], "label_positions": [[4, 14], [25, 28]], "bboxes": [[228.24, 27.69, 218.5, 288.85], [0.0, 1.5, 499.13, 130.95]]}}
{"image_file": "000000215592.jpg", "image_link": "http://images.cocodataset.org/train2017/000000215592.jpg", "width": 500, "height": 375, "caption": "The dining table is touching the oven.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["dining table", "oven"], "label_positions": [[4, 16], [33, 37]], "bboxes": [[0.84, 80.9, 498.88, 289.89], [208.99, 1.74, 246.91, 100.28]]}}
{"image_file": "000000353970.jpg", "image_link": "http://images.cocodataset.org/val2017/000000353970.jpg", "width": 640, "height": 426, "caption": "The cat is touching the chair.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["cat", "chair"], "label_positions": [[4, 7], [24, 29]], "bboxes": [[43.15, 0.46, 439.77, 381.01], [0.0, 0.0, 640.0, 421.42]]}}
{"image_file": "000000237031.jpg", "image_link": "http://images.cocodataset.org/train2017/000000237031.jpg", "width": 640, "height": 427, "caption": "The backpack is at the side of the bed.", "label": 0, "relation": "at the side of", "ref_exp": {"labels": ["backpack", "bed"], "label_positions": [[4, 12], [35, 38]], "bboxes": [[47.76, 132.46, 172.9, 167.17], [0.0, 46.86, 640.0, 380.14]]}}
{"image_file": "000000183964.jpg", "image_link": "http://images.cocodataset.org/train2017/000000183964.jpg", "width": 640, "height": 480, "caption": "The fire hydrant is far away from the car.", "label": 1, "relation": "far away from", "ref_exp": {"labels": ["fire hydrant", "car"], "label_positions": [[4, 16], [38, 41]], "bboxes": [[107.38, 46.28, 208.32, 401.61], [45.0, 87.21, 92.57, 44.1]]}}
{"image_file": "000000353893.jpg", "image_link": "http://images.cocodataset.org/train2017/000000353893.jpg", "width": 426, "height": 640, "caption": "The dog is under the dining table.", "label": 1, "relation": "under", "ref_exp": {"labels": ["dog", "dining table"], "label_positions": [[4, 7], [21, 33]], "bboxes": [[157.1, 408.39, 115.9, 202.18], [0.94, 139.15, 425.06, 500.73]]}}
{"image_file": "000000102439.jpg", "image_link": "http://images.cocodataset.org/train2017/000000102439.jpg", "width": 375, "height": 500, "caption": "The person is facing the tv.", "label": 1, "relation": "facing", "ref_exp": {"labels": ["person", "tv"], "label_positions": [[4, 10], [25, 27]], "bboxes": [[168.54, 248.31, 206.46, 246.07], [5.61, 26.85, 330.71, 228.7]]}}
{"image_file": "000000153832.jpg", "image_link": "http://images.cocodataset.org/train2017/000000153832.jpg", "width": 640, "height": 480, "caption": "The train is at the right side of the potted plant.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["train", "potted plant"], "label_positions": [[4, 9], [38, 50]], "bboxes": [[158.21, 136.25, 377.75, 236.77], [3.24, 105.71, 122.96, 138.07]]}}
{"image_file": "000000069866.jpg", "image_link": "http://images.cocodataset.org/train2017/000000069866.jpg", "width": 640, "height": 640, "caption": "The person is toward the couch.", "label": 0, "relation": "toward", "ref_exp": {"labels": ["person", "couch"], "label_positions": [[4, 10], [25, 30]], "bboxes": [[214.29, 86.29, 358.11, 527.82], [216.09, 242.24, 423.91, 246.36]]}}
{"image_file": "000000408491.jpg", "image_link": "http://images.cocodataset.org/train2017/000000408491.jpg", "width": 640, "height": 480, "caption": "The person is facing away from the hot dog.", "label": 0, "relation": "facing away from", "ref_exp": {"labels": ["person", "hot dog"], "label_positions": [[4, 10], [35, 42]], "bboxes": [[0.0, 1.62, 637.84, 473.52], [23.5, 248.0, 309.5, 201.0]]}}
{"image_file": "000000163394.jpg", "image_link": "http://images.cocodataset.org/train2017/000000163394.jpg", "width": 640, "height": 631, "caption": "The cat is above the handbag.", "label": 0, "relation": "above", "ref_exp": {"labels": ["cat", "handbag"], "label_positions": [[4, 7], [21, 28]], "bboxes": [[134.34, 184.55, 397.6, 309.39], [501.18, 17.25, 138.82, 386.16]]}}
{"image_file": "000000423201.jpg", "image_link": "http://images.cocodataset.org/train2017/000000423201.jpg", "width": 640, "height": 480, "caption": "The dog is under the keyboard.", "label": 1, "relation": "under", "ref_exp": {"labels": ["dog", "keyboard"], "label_positions": [[4, 7], [21, 29]], "bboxes": [[214.44, 174.55, 334.13, 299.22], [0.0, 93.84, 149.93, 261.04]]}}
{"image_file": "000000158806.jpg", "image_link": "http://images.cocodataset.org/train2017/000000158806.jpg", "width": 640, "height": 359, "caption": "The dog is touching the sandwich.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["dog", "sandwich"], "label_positions": [[4, 7], [24, 32]], "bboxes": [[0.73, 0.0, 308.23, 355.98], [376.75, 143.6, 263.25, 179.9]]}}
{"image_file": "000000299326.jpg", "image_link": "http://images.cocodataset.org/train2017/000000299326.jpg", "width": 640, "height": 480, "caption": "The oven is below the cake.", "label": 1, "relation": "below", "ref_exp": {"labels": ["oven", "cake"], "label_positions": [[4, 8], [22, 26]], "bboxes": [[1.08, 1.35, 638.92, 474.61], [55.01, 32.36, 546.88, 420.67]]}}
{"image_file": "000000185571.jpg", "image_link": "http://images.cocodataset.org/train2017/000000185571.jpg", "width": 500, "height": 375, "caption": "The pizza is left of the laptop.", "label": 1, "relation": "left of", "ref_exp": {"labels": ["pizza", "laptop"], "label_positions": [[4, 9], [25, 31]], "bboxes": [[95.22, 234.13, 159.27, 84.27], [285.0, 0.0, 215.0, 274.0]]}}
{"image_file": "000000126967.jpg", "image_link": "http://images.cocodataset.org/train2017/000000126967.jpg", "width": 640, "height": 360, "caption": "The laptop is at the right side of the person.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["laptop", "person"], "label_positions": [[4, 10], [39, 45]], "bboxes": [[0.0, 63.97, 380.66, 296.03], [257.26, 72.74, 223.98, 246.0]]}}
{"image_file": "000000247553.jpg", "image_link": "http://images.cocodataset.org/train2017/000000247553.jpg", "width": 480, "height": 640, "caption": "The microwave is facing the person.", "label": 1, "relation": "facing", "ref_exp": {"labels": ["microwave", "person"], "label_positions": [[4, 13], [28, 34]], "bboxes": [[69.03, 230.11, 410.97, 353.8], [0.0, 274.26, 297.71, 356.67]]}}
{"image_file": "000000014226.jpg", "image_link": "http://images.cocodataset.org/val2017/000000014226.jpg", "width": 640, "height": 480, "caption": "The laptop is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["laptop", "person"], "label_positions": [[4, 10], [27, 33]], "bboxes": [[221.54, 236.56, 213.04, 133.31], [208.65, 30.81, 332.97, 339.46]]}}
{"image_file": "000000551166.jpg", "image_link": "http://images.cocodataset.org/train2017/000000551166.jpg", "width": 640, "height": 428, "caption": "The cat is with the teddy bear.", "label": 1, "relation": "with", "ref_exp": {"labels": ["cat", "teddy bear"], "label_positions": [[4, 7], [20, 30]], "bboxes": [[234.62, 114.26, 405.38, 308.85], [7.41, 29.26, 296.97, 364.87]]}}
{"image_file": "000000537382.jpg", "image_link": "http://images.cocodataset.org/train2017/000000537382.jpg", "width": 427, "height": 640, "caption": "The sandwich is touching the banana.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["sandwich", "banana"], "label_positions": [[4, 12], [29, 35]], "bboxes": [[67.9, 194.65, 304.11, 204.34], [1.64, 327.65, 425.36, 298.36]]}}
{"image_file": "000000332943.jpg", "image_link": "http://images.cocodataset.org/train2017/000000332943.jpg", "width": 640, "height": 512, "caption": "The umbrella is surrounding the teddy bear.", "label": 1, "relation": "surrounding", "ref_exp": {"labels": ["umbrella", "teddy bear"], "label_positions": [[4, 12], [32, 42]], "bboxes": [[1.51, 0.01, 562.89, 450.49], [72.49, 140.37, 301.44, 357.82]]}}
{"image_file": "000000183735.jpg", "image_link": "http://images.cocodataset.org/train2017/000000183735.jpg", "width": 640, "height": 422, "caption": "The potted plant is on the dining table.", "label": 1, "relation": "on", "ref_exp": {"labels": ["potted plant", "dining table"], "label_positions": [[4, 16], [27, 39]], "bboxes": [[422.0, 25.21, 218.0, 383.64], [0.0, 1.75, 640.0, 415.01]]}}
{"image_file": "000000454177.jpg", "image_link": "http://images.cocodataset.org/train2017/000000454177.jpg", "width": 478, "height": 640, "caption": "The bus is far away from the bicycle.", "label": 1, "relation": "far away from", "ref_exp": {"labels": ["bus", "bicycle"], "label_positions": [[4, 7], [29, 36]], "bboxes": [[190.91, 228.62, 67.19, 71.98], [67.37, 198.74, 284.58, 240.94]]}}
{"image_file": "000000286785.jpg", "image_link": "http://images.cocodataset.org/train2017/000000286785.jpg", "width": 426, "height": 640, "caption": "The car is touching the zebra.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["car", "zebra"], "label_positions": [[4, 7], [24, 29]], "bboxes": [[0.0, 3.6, 393.51, 524.69], [102.57, 3.97, 323.43, 530.21]]}}
{"image_file": "000000137281.jpg", "image_link": "http://images.cocodataset.org/train2017/000000137281.jpg", "width": 500, "height": 375, "caption": "The stop sign is above the bicycle.", "label": 0, "relation": "above", "ref_exp": {"labels": ["stop sign", "bicycle"], "label_positions": [[4, 13], [27, 34]], "bboxes": [[234.98, 82.96, 9.48, 10.48], [1.69, 174.44, 498.31, 196.35]]}}
{"image_file": "000000317619.jpg", "image_link": "http://images.cocodataset.org/train2017/000000317619.jpg", "width": 640, "height": 478, "caption": "The horse is beneath the person.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["horse", "person"], "label_positions": [[4, 9], [25, 31]], "bboxes": [[167.56, 42.15, 351.56, 430.71], [111.01, 86.63, 162.16, 391.37]]}}
{"image_file": "000000528832.jpg", "image_link": "http://images.cocodataset.org/train2017/000000528832.jpg", "width": 640, "height": 428, "caption": "The bird is left of the teddy bear.", "label": 1, "relation": "left of", "ref_exp": {"labels": ["bird", "teddy bear"], "label_positions": [[4, 8], [24, 34]], "bboxes": [[22.09, 42.34, 217.22, 313.87], [197.43, 46.72, 348.5, 318.08]]}}
{"image_file": "000000090010.jpg", "image_link": "http://images.cocodataset.org/train2017/000000090010.jpg", "width": 640, "height": 427, "caption": "The backpack is beside the cat.", "label": 1, "relation": "beside", "ref_exp": {"labels": ["backpack", "cat"], "label_positions": [[4, 12], [27, 30]], "bboxes": [[322.28, 0.12, 317.72, 241.73], [179.21, 32.13, 254.19, 256.02]]}}
{"image_file": "000000276610.jpg", "image_link": "http://images.cocodataset.org/train2017/000000276610.jpg", "width": 512, "height": 640, "caption": "The car is beneath the surfboard.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["car", "surfboard"], "label_positions": [[4, 7], [23, 32]], "bboxes": [[183.15, 194.97, 228.72, 260.99], [58.17, 214.98, 136.78, 425.02]]}}
{"image_file": "000000447345.jpg", "image_link": "http://images.cocodataset.org/train2017/000000447345.jpg", "width": 640, "height": 486, "caption": "The truck is ahead of the motorcycle.", "label": 1, "relation": "ahead of", "ref_exp": {"labels": ["truck", "motorcycle"], "label_positions": [[4, 9], [26, 36]], "bboxes": [[2.03, 0.35, 76.96, 339.09], [115.77, 73.17, 353.85, 361.5]]}}
{"image_file": "000000511523.jpg", "image_link": "http://images.cocodataset.org/train2017/000000511523.jpg", "width": 480, "height": 640, "caption": "The laptop is behind the sandwich.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["laptop", "sandwich"], "label_positions": [[4, 10], [25, 33]], "bboxes": [[0.0, 1.13, 465.19, 122.14], [0.0, 120.45, 478.91, 417.96]]}}
{"image_file": "000000213054.jpg", "image_link": "http://images.cocodataset.org/train2017/000000213054.jpg", "width": 500, "height": 333, "caption": "The scissors is against the person.", "label": 0, "relation": "against", "ref_exp": {"labels": ["scissors", "person"], "label_positions": [[4, 12], [28, 34]], "bboxes": [[93.75, 7.5, 369.0, 321.0], [0.75, 0.0, 499.25, 328.51]]}}
{"image_file": "000000197870.jpg", "image_link": "http://images.cocodataset.org/val2017/000000197870.jpg", "width": 640, "height": 425, "caption": "The bench is beneath the bird.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["bench", "bird"], "label_positions": [[4, 9], [25, 29]], "bboxes": [[0.96, 130.66, 505.4, 222.07], [49.67, 190.9, 158.81, 188.35]]}}
{"image_file": "000000503996.jpg", "image_link": "http://images.cocodataset.org/train2017/000000503996.jpg", "width": 640, "height": 480, "caption": "The teddy bear is at the left side of the book.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["teddy bear", "book"], "label_positions": [[4, 14], [42, 46]], "bboxes": [[141.62, 25.41, 441.08, 449.73], [508.04, 226.52, 131.96, 71.19]]}}
{"image_file": "000000002459.jpg", "image_link": "http://images.cocodataset.org/train2017/000000002459.jpg", "width": 640, "height": 427, "caption": "The laptop is at the right side of the person.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["laptop", "person"], "label_positions": [[4, 10], [39, 45]], "bboxes": [[298.42, 75.8, 341.58, 344.48], [2.22, 12.41, 432.58, 414.59]]}}
{"image_file": "000000306069.jpg", "image_link": "http://images.cocodataset.org/train2017/000000306069.jpg", "width": 640, "height": 426, "caption": "The couch is adjacent to the pizza.", "label": 0, "relation": "adjacent to", "ref_exp": {"labels": ["couch", "pizza"], "label_positions": [[4, 9], [29, 34]], "bboxes": [[189.55, 122.24, 68.87, 30.5], [82.74, 218.81, 339.73, 141.22]]}}
{"image_file": "000000009820.jpg", "image_link": "http://images.cocodataset.org/train2017/000000009820.jpg", "width": 640, "height": 381, "caption": "The bench is on top of the elephant.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["bench", "elephant"], "label_positions": [[4, 9], [27, 35]], "bboxes": [[342.3, 87.05, 77.17, 78.85], [217.3, 117.95, 224.31, 263.05]]}}
{"image_file": "000000125407.jpg", "image_link": "http://images.cocodataset.org/train2017/000000125407.jpg", "width": 612, "height": 612, "caption": "The motorcycle is along the dining table.", "label": 0, "relation": "along", "ref_exp": {"labels": ["motorcycle", "dining table"], "label_positions": [[4, 14], [28, 40]], "bboxes": [[190.8, 0.0, 154.27, 105.69], [0.0, 119.26, 612.0, 486.89]]}}
{"image_file": "000000401007.jpg", "image_link": "http://images.cocodataset.org/train2017/000000401007.jpg", "width": 640, "height": 354, "caption": "The bowl is under the pizza.", "label": 0, "relation": "under", "ref_exp": {"labels": ["bowl", "pizza"], "label_positions": [[4, 8], [22, 27]], "bboxes": [[1.59, 1.59, 148.76, 35.0], [93.87, 93.87, 388.21, 158.31]]}}
{"image_file": "000000580052.jpg", "image_link": "http://images.cocodataset.org/train2017/000000580052.jpg", "width": 500, "height": 375, "caption": "The handbag is along the couch.", "label": 1, "relation": "along", "ref_exp": {"labels": ["handbag", "couch"], "label_positions": [[4, 11], [25, 30]], "bboxes": [[70.81, 149.26, 80.7, 82.17], [0.0, 48.26, 500.0, 322.0]]}}
{"image_file": "000000059406.jpg", "image_link": "http://images.cocodataset.org/train2017/000000059406.jpg", "width": 640, "height": 512, "caption": "The bed is perpendicular to the teddy bear.", "label": 0, "relation": "perpendicular to", "ref_exp": {"labels": ["bed", "teddy bear"], "label_positions": [[4, 7], [32, 42]], "bboxes": [[0.0, 84.87, 640.0, 420.37], [28.76, 294.54, 318.71, 150.73]]}}
{"image_file": "000000114861.jpg", "image_link": "http://images.cocodataset.org/train2017/000000114861.jpg", "width": 640, "height": 480, "caption": "The cup is next to the keyboard.", "label": 1, "relation": "next to", "ref_exp": {"labels": ["cup", "keyboard"], "label_positions": [[4, 7], [23, 31]], "bboxes": [[23.68, 27.77, 480.0, 449.86], [496.38, 1.19, 143.62, 368.03]]}}
{"image_file": "000000316871.jpg", "image_link": "http://images.cocodataset.org/train2017/000000316871.jpg", "width": 640, "height": 427, "caption": "The cat is inside the suitcase.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["cat", "suitcase"], "label_positions": [[4, 7], [22, 30]], "bboxes": [[2.75, 81.73, 462.82, 264.46], [0.0, 63.14, 564.56, 359.18]]}}
{"image_file": "000000466680.jpg", "image_link": "http://images.cocodataset.org/train2017/000000466680.jpg", "width": 480, "height": 360, "caption": "The cat is on top of the refrigerator.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "refrigerator"], "label_positions": [[4, 7], [25, 37]], "bboxes": [[182.18, 113.75, 72.79, 85.31], [94.65, 179.8, 283.96, 176.36]]}}
{"image_file": "000000230224.jpg", "image_link": "http://images.cocodataset.org/train2017/000000230224.jpg", "width": 640, "height": 480, "caption": "The cat is under the car.", "label": 1, "relation": "under", "ref_exp": {"labels": ["cat", "car"], "label_positions": [[4, 7], [21, 24]], "bboxes": [[236.9, 213.62, 156.2, 88.97], [1.03, 0.0, 569.81, 474.84]]}}
{"image_file": "000000140388.jpg", "image_link": "http://images.cocodataset.org/train2017/000000140388.jpg", "width": 431, "height": 640, "caption": "The cake is down from the person.", "label": 1, "relation": "down from", "ref_exp": {"labels": ["cake", "person"], "label_positions": [[4, 8], [26, 32]], "bboxes": [[0.0, 421.16, 399.58, 204.46], [93.48, 28.76, 300.59, 412.77]]}}
{"image_file": "000000077980.jpg", "image_link": "http://images.cocodataset.org/train2017/000000077980.jpg", "width": 480, "height": 640, "caption": "The cake is outside the refrigerator.", "label": 0, "relation": "outside", "ref_exp": {"labels": ["cake", "refrigerator"], "label_positions": [[4, 8], [24, 36]], "bboxes": [[381.59, 176.65, 43.71, 50.01], [4.32, 2.16, 471.36, 627.03]]}}
{"image_file": "000000294831.jpg", "image_link": "http://images.cocodataset.org/val2017/000000294831.jpg", "width": 640, "height": 361, "caption": "The pizza is in front of the laptop.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["pizza", "laptop"], "label_positions": [[4, 9], [29, 35]], "bboxes": [[171.98, 112.76, 351.27, 197.94], [484.56, 10.23, 141.33, 113.87]]}}
{"image_file": "000000138022.jpg", "image_link": "http://images.cocodataset.org/train2017/000000138022.jpg", "width": 612, "height": 612, "caption": "The truck is touching the surfboard.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["truck", "surfboard"], "label_positions": [[4, 9], [26, 35]], "bboxes": [[55.03, 250.58, 469.88, 320.04], [127.97, 243.7, 277.64, 89.82]]}}
{"image_file": "000000155198.jpg", "image_link": "http://images.cocodataset.org/train2017/000000155198.jpg", "width": 427, "height": 640, "caption": "The truck is next to the umbrella.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["truck", "umbrella"], "label_positions": [[4, 9], [25, 33]], "bboxes": [[0.91, 180.41, 110.77, 112.66], [0.0, 320.0, 209.51, 311.39]]}}
{"image_file": "000000525851.jpg", "image_link": "http://images.cocodataset.org/train2017/000000525851.jpg", "width": 612, "height": 612, "caption": "The bicycle is behind the cat.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["bicycle", "cat"], "label_positions": [[4, 11], [26, 29]], "bboxes": [[0.0, 0.0, 476.32, 482.93], [8.21, 193.18, 308.06, 412.11]]}}
{"image_file": "000000530945.jpg", "image_link": "http://images.cocodataset.org/train2017/000000530945.jpg", "width": 360, "height": 640, "caption": "The person is touching the pizza.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "pizza"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[91.84, 119.03, 150.67, 167.89], [27.33, 297.71, 286.2, 222.92]]}}
{"image_file": "000000169200.jpg", "image_link": "http://images.cocodataset.org/train2017/000000169200.jpg", "width": 418, "height": 640, "caption": "The parking meter is in front of the car.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["parking meter", "car"], "label_positions": [[4, 17], [37, 40]], "bboxes": [[23.12, 1.08, 96.79, 249.94], [0.77, 0.0, 417.23, 396.14]]}}
{"image_file": "000000380525.jpg", "image_link": "http://images.cocodataset.org/train2017/000000380525.jpg", "width": 513, "height": 640, "caption": "The cat is touching the donut.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["cat", "donut"], "label_positions": [[4, 7], [24, 29]], "bboxes": [[20.18, 2.16, 492.82, 423.79], [14.92, 370.74, 472.54, 252.02]]}}
{"image_file": "000000385259.jpg", "image_link": "http://images.cocodataset.org/train2017/000000385259.jpg", "width": 640, "height": 427, "caption": "The teddy bear is at the right side of the bench.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["teddy bear", "bench"], "label_positions": [[4, 14], [43, 48]], "bboxes": [[293.32, 78.86, 232.02, 332.75], [0.0, 344.1, 507.14, 82.9]]}}
{"image_file": "000000539683.jpg", "image_link": "http://images.cocodataset.org/train2017/000000539683.jpg", "width": 640, "height": 480, "caption": "The cat is in the sink.", "label": 1, "relation": "in", "ref_exp": {"labels": ["cat", "sink"], "label_positions": [[4, 7], [18, 22]], "bboxes": [[158.97, 86.71, 285.93, 316.9], [0.0, 3.2, 582.37, 471.68]]}}
{"image_file": "000000217339.jpg", "image_link": "http://images.cocodataset.org/train2017/000000217339.jpg", "width": 640, "height": 427, "caption": "The banana is at the right side of the person.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["banana", "person"], "label_positions": [[4, 10], [39, 45]], "bboxes": [[189.14, 197.42, 158.57, 164.3], [100.75, 16.02, 452.91, 403.97]]}}
{"image_file": "000000026281.jpg", "image_link": "http://images.cocodataset.org/train2017/000000026281.jpg", "width": 480, "height": 640, "caption": "The cat is at the right side of the remote.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["cat", "remote"], "label_positions": [[4, 7], [36, 42]], "bboxes": [[36.68, 113.34, 443.32, 526.66], [10.94, 188.57, 92.74, 217.74]]}}
{"image_file": "000000307474.jpg", "image_link": "http://images.cocodataset.org/train2017/000000307474.jpg", "width": 340, "height": 505, "caption": "The giraffe is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["giraffe", "person"], "label_positions": [[4, 11], [28, 34]], "bboxes": [[147.53, 39.72, 179.3, 451.66], [39.03, 35.59, 229.44, 454.15]]}}
{"image_file": "000000219418.jpg", "image_link": "http://images.cocodataset.org/train2017/000000219418.jpg", "width": 576, "height": 640, "caption": "The teddy bear is parallel to the cat.", "label": 1, "relation": "parallel to", "ref_exp": {"labels": ["teddy bear", "cat"], "label_positions": [[4, 14], [34, 37]], "bboxes": [[54.46, 155.7, 227.62, 326.88], [137.04, 35.76, 438.55, 604.24]]}}
{"image_file": "000000041453.jpg", "image_link": "http://images.cocodataset.org/train2017/000000041453.jpg", "width": 640, "height": 480, "caption": "The car is near the truck.", "label": 1, "relation": "near", "ref_exp": {"labels": ["car", "truck"], "label_positions": [[4, 7], [20, 25]], "bboxes": [[315.87, 189.94, 289.03, 283.87], [27.5, 1.88, 470.0, 407.5]]}}
{"image_file": "000000542054.jpg", "image_link": "http://images.cocodataset.org/train2017/000000542054.jpg", "width": 333, "height": 500, "caption": "The cup is enclosed by the cat.", "label": 0, "relation": "enclosed by", "ref_exp": {"labels": ["cup", "cat"], "label_positions": [[4, 7], [27, 30]], "bboxes": [[33.07, 246.02, 68.34, 82.17], [40.86, 40.86, 286.02, 292.47]]}}
{"image_file": "000000257458.jpg", "image_link": "http://images.cocodataset.org/train2017/000000257458.jpg", "width": 480, "height": 640, "caption": "The cat is at the right side of the oven.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["cat", "oven"], "label_positions": [[4, 7], [36, 40]], "bboxes": [[306.22, 28.85, 117.71, 118.87], [0.0, 431.46, 238.74, 198.47]]}}
{"image_file": "000000018903.jpg", "image_link": "http://images.cocodataset.org/train2017/000000018903.jpg", "width": 640, "height": 480, "caption": "The cat is on top of the laptop.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["cat", "laptop"], "label_positions": [[4, 7], [25, 31]], "bboxes": [[3.1, 1.03, 559.48, 245.68], [132.97, 90.27, 507.03, 382.7]]}}
{"image_file": "000000038426.jpg", "image_link": "http://images.cocodataset.org/train2017/000000038426.jpg", "width": 612, "height": 612, "caption": "The person is touching the donut.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "donut"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[27.51, 13.84, 536.36, 484.1], [121.3, 391.46, 159.89, 118.54]]}}
{"image_file": "000000076588.jpg", "image_link": "http://images.cocodataset.org/train2017/000000076588.jpg", "width": 640, "height": 480, "caption": "The cat is within the vase.", "label": 0, "relation": "within", "ref_exp": {"labels": ["cat", "vase"], "label_positions": [[4, 7], [22, 26]], "bboxes": [[0.0, 115.61, 554.32, 301.42], [14.9, 56.64, 46.32, 88.08]]}}
{"image_file": "000000087813.jpg", "image_link": "http://images.cocodataset.org/train2017/000000087813.jpg", "width": 640, "height": 393, "caption": "The cake has as a part the laptop.", "label": 1, "relation": "has as a part", "ref_exp": {"labels": ["cake", "laptop"], "label_positions": [[4, 8], [27, 33]], "bboxes": [[291.17, 2.41, 329.61, 390.59], [305.57, 4.42, 243.75, 228.73]]}}
{"image_file": "000000271949.jpg", "image_link": "http://images.cocodataset.org/train2017/000000271949.jpg", "width": 640, "height": 429, "caption": "The horse is in front of the person.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["horse", "person"], "label_positions": [[4, 9], [29, 35]], "bboxes": [[98.22, 190.64, 249.24, 227.94], [253.76, 298.34, 47.52, 51.33]]}}
{"image_file": "000000319354.jpg", "image_link": "http://images.cocodataset.org/train2017/000000319354.jpg", "width": 640, "height": 480, "caption": "The bus is across the car.", "label": 1, "relation": "across", "ref_exp": {"labels": ["bus", "car"], "label_positions": [[4, 7], [22, 25]], "bboxes": [[174.55, 20.49, 73.54, 78.41], [191.57, 26.48, 331.48, 258.29]]}}
{"image_file": "000000091006.jpg", "image_link": "http://images.cocodataset.org/train2017/000000091006.jpg", "width": 640, "height": 480, "caption": "The bed is touching the backpack.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["bed", "backpack"], "label_positions": [[4, 7], [24, 32]], "bboxes": [[487.89, 184.11, 152.11, 289.31], [231.59, 134.25, 319.44, 185.77]]}}
{"image_file": "000000426911.jpg", "image_link": "http://images.cocodataset.org/train2017/000000426911.jpg", "width": 640, "height": 480, "caption": "The laptop is next to the refrigerator.", "label": 1, "relation": "next to", "ref_exp": {"labels": ["laptop", "refrigerator"], "label_positions": [[4, 10], [26, 38]], "bboxes": [[380.36, 135.06, 91.59, 68.3], [462.74, 55.01, 177.26, 388.32]]}}
{"image_file": "000000216051.jpg", "image_link": "http://images.cocodataset.org/train2017/000000216051.jpg", "width": 640, "height": 502, "caption": "The person is on the bench.", "label": 1, "relation": "on", "ref_exp": {"labels": ["person", "bench"], "label_positions": [[4, 10], [21, 26]], "bboxes": [[161.32, 28.93, 347.46, 416.67], [190.11, 161.52, 432.97, 307.27]]}}
{"image_file": "000000367838.jpg", "image_link": "http://images.cocodataset.org/train2017/000000367838.jpg", "width": 640, "height": 481, "caption": "The bus is next to the umbrella.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["bus", "umbrella"], "label_positions": [[4, 7], [23, 31]], "bboxes": [[212.86, 1.03, 95.5, 90.15], [283.83, 16.79, 276.25, 252.42]]}}
{"image_file": "000000355159.jpg", "image_link": "http://images.cocodataset.org/train2017/000000355159.jpg", "width": 640, "height": 478, "caption": "The bus is behind the dining table.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["bus", "dining table"], "label_positions": [[4, 7], [22, 34]], "bboxes": [[0.0, 2.27, 640.0, 138.25], [1.07, 278.78, 638.76, 192.91]]}}
{"image_file": "000000044682.jpg", "image_link": "http://images.cocodataset.org/train2017/000000044682.jpg", "width": 612, "height": 612, "caption": "The sandwich is above the chair.", "label": 0, "relation": "above", "ref_exp": {"labels": ["sandwich", "chair"], "label_positions": [[4, 12], [26, 31]], "bboxes": [[2.74, 254.68, 389.71, 351.28], [135.56, 31.59, 476.44, 189.52]]}}
{"image_file": "000000127576.jpg", "image_link": "http://images.cocodataset.org/train2017/000000127576.jpg", "width": 640, "height": 425, "caption": "The chair is below the horse.", "label": 1, "relation": "below", "ref_exp": {"labels": ["chair", "horse"], "label_positions": [[4, 9], [23, 28]], "bboxes": [[44.78, 9.14, 360.11, 415.86], [260.47, 165.26, 153.53, 74.74]]}}
{"image_file": "000000127799.jpg", "image_link": "http://images.cocodataset.org/train2017/000000127799.jpg", "width": 640, "height": 562, "caption": "The cat is on the keyboard.", "label": 1, "relation": "on", "ref_exp": {"labels": ["cat", "keyboard"], "label_positions": [[4, 7], [18, 26]], "bboxes": [[288.86, 163.16, 193.37, 282.81], [67.74, 353.95, 489.31, 122.49]]}}
{"image_file": "000000192808.jpg", "image_link": "http://images.cocodataset.org/train2017/000000192808.jpg", "width": 375, "height": 500, "caption": "The cake is in the microwave.", "label": 0, "relation": "in", "ref_exp": {"labels": ["cake", "microwave"], "label_positions": [[4, 8], [19, 28]], "bboxes": [[16.85, 175.28, 323.6, 280.9], [194.38, 3.37, 178.65, 174.16]]}}
{"image_file": "000000318723.jpg", "image_link": "http://images.cocodataset.org/train2017/000000318723.jpg", "width": 500, "height": 375, "caption": "The cat is in the backpack.", "label": 1, "relation": "in", "ref_exp": {"labels": ["cat", "backpack"], "label_positions": [[4, 7], [18, 26]], "bboxes": [[192.18, 165.14, 108.58, 55.94], [109.9, 0.0, 389.26, 313.48]]}}
{"image_file": "000000343881.jpg", "image_link": "http://images.cocodataset.org/train2017/000000343881.jpg", "width": 640, "height": 480, "caption": "The couch is under the car.", "label": 1, "relation": "under", "ref_exp": {"labels": ["couch", "car"], "label_positions": [[4, 9], [23, 26]], "bboxes": [[267.38, 0.0, 372.62, 152.59], [160.72, 135.91, 350.56, 176.9]]}}
{"image_file": "000000564915.jpg", "image_link": "http://images.cocodataset.org/train2017/000000564915.jpg", "width": 480, "height": 640, "caption": "The cake is inside the oven.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["cake", "oven"], "label_positions": [[4, 8], [23, 27]], "bboxes": [[107.87, 384.0, 256.0, 179.78], [57.53, 250.25, 133.75, 163.95]]}}
{"image_file": "000000196619.jpg", "image_link": "http://images.cocodataset.org/train2017/000000196619.jpg", "width": 389, "height": 500, "caption": "The cat is behind the wine glass.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["cat", "wine glass"], "label_positions": [[4, 7], [22, 32]], "bboxes": [[1.08, 232.26, 305.37, 260.21], [251.64, 158.62, 66.44, 77.28]]}}
{"image_file": "000000526295.jpg", "image_link": "http://images.cocodataset.org/train2017/000000526295.jpg", "width": 500, "height": 332, "caption": "The teddy bear is at the right side of the dog.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["teddy bear", "dog"], "label_positions": [[4, 14], [43, 46]], "bboxes": [[22.38, 50.61, 279.78, 277.54], [21.46, 17.44, 478.54, 314.56]]}}
{"image_file": "000000330376.jpg", "image_link": "http://images.cocodataset.org/train2017/000000330376.jpg", "width": 480, "height": 640, "caption": "The person is inside the oven.", "label": 1, "relation": "inside", "ref_exp": {"labels": ["person", "oven"], "label_positions": [[4, 10], [25, 29]], "bboxes": [[148.68, 456.96, 118.91, 171.93], [2.88, 0.0, 477.12, 576.72]]}}
{"image_file": "000000147058.jpg", "image_link": "http://images.cocodataset.org/train2017/000000147058.jpg", "width": 640, "height": 480, "caption": "The book is at the edge of the bench.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["book", "bench"], "label_positions": [[4, 8], [31, 36]], "bboxes": [[244.32, 277.84, 143.79, 76.75], [134.53, 299.19, 339.01, 175.43]]}}
{"image_file": "000000518546.jpg", "image_link": "http://images.cocodataset.org/train2017/000000518546.jpg", "width": 640, "height": 483, "caption": "The potted plant is alongside the train.", "label": 1, "relation": "alongside", "ref_exp": {"labels": ["potted plant", "train"], "label_positions": [[4, 16], [34, 39]], "bboxes": [[277.11, 307.86, 361.88, 167.23], [0.0, 31.48, 375.55, 441.75]]}}
{"image_file": "000000279073.jpg", "image_link": "http://images.cocodataset.org/train2017/000000279073.jpg", "width": 640, "height": 425, "caption": "The bowl is on the truck.", "label": 1, "relation": "on", "ref_exp": {"labels": ["bowl", "truck"], "label_positions": [[4, 8], [19, 24]], "bboxes": [[124.63, 221.18, 39.13, 11.69], [83.09, 0.0, 556.91, 421.18]]}}
{"image_file": "000000179392.jpg", "image_link": "http://images.cocodataset.org/val2017/000000179392.jpg", "width": 480, "height": 640, "caption": "The tv is above the dog.", "label": 0, "relation": "above", "ref_exp": {"labels": ["tv", "dog"], "label_positions": [[4, 6], [20, 23]], "bboxes": [[61.84, 1.8, 418.16, 260.31], [112.48, 49.13, 365.9, 497.78]]}}
{"image_file": "000000017312.jpg", "image_link": "http://images.cocodataset.org/train2017/000000017312.jpg", "width": 640, "height": 480, "caption": "The toaster is near the sandwich.", "label": 1, "relation": "near", "ref_exp": {"labels": ["toaster", "sandwich"], "label_positions": [[4, 11], [24, 32]], "bboxes": [[464.18, 109.06, 112.44, 118.85], [26.97, 109.69, 475.68, 220.05]]}}
{"image_file": "000000053629.jpg", "image_link": "http://images.cocodataset.org/train2017/000000053629.jpg", "width": 640, "height": 480, "caption": "The tv is under the cat.", "label": 1, "relation": "under", "ref_exp": {"labels": ["tv", "cat"], "label_positions": [[4, 6], [20, 23]], "bboxes": [[127.67, 178.14, 470.1, 301.86], [107.2, 58.87, 484.55, 397.3]]}}
{"image_file": "000000496826.jpg", "image_link": "http://images.cocodataset.org/train2017/000000496826.jpg", "width": 640, "height": 480, "caption": "The dining table is beneath the cup.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["dining table", "cup"], "label_positions": [[4, 16], [32, 35]], "bboxes": [[1.08, 27.04, 638.92, 445.48], [28.04, 28.04, 325.76, 322.52]]}}
{"image_file": "000000022656.jpg", "image_link": "http://images.cocodataset.org/train2017/000000022656.jpg", "width": 480, "height": 640, "caption": "The handbag is attached to the person.", "label": 0, "relation": "attached to", "ref_exp": {"labels": ["handbag", "person"], "label_positions": [[4, 11], [31, 37]], "bboxes": [[0.0, 395.18, 344.41, 244.82], [183.37, 71.91, 173.41, 173.4]]}}
{"image_file": "000000284644.jpg", "image_link": "http://images.cocodataset.org/train2017/000000284644.jpg", "width": 640, "height": 480, "caption": "The teddy bear is in front of the dog.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["teddy bear", "dog"], "label_positions": [[4, 14], [34, 37]], "bboxes": [[147.04, 230.05, 179.49, 135.52], [114.19, 153.98, 425.81, 193.55]]}}
{"image_file": "000000153259.jpg", "image_link": "http://images.cocodataset.org/train2017/000000153259.jpg", "width": 640, "height": 588, "caption": "The cake is on the teddy bear.", "label": 1, "relation": "on", "ref_exp": {"labels": ["cake", "teddy bear"], "label_positions": [[4, 8], [19, 29]], "bboxes": [[90.05, 212.55, 295.33, 238.38], [92.49, 72.67, 438.69, 463.8]]}}
{"image_file": "000000407548.jpg", "image_link": "http://images.cocodataset.org/train2017/000000407548.jpg", "width": 640, "height": 480, "caption": "The sheep is facing away from the person.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["sheep", "person"], "label_positions": [[4, 9], [34, 40]], "bboxes": [[0.0, 131.43, 475.88, 190.56], [373.45, 109.14, 260.69, 366.2]]}}
{"image_file": "000000516535.jpg", "image_link": "http://images.cocodataset.org/train2017/000000516535.jpg", "width": 640, "height": 480, "caption": "The umbrella is opposite to the bed.", "label": 0, "relation": "opposite to", "ref_exp": {"labels": ["umbrella", "bed"], "label_positions": [[4, 12], [32, 35]], "bboxes": [[51.78, 86.36, 553.34, 387.24], [147.89, 386.88, 137.06, 55.88]]}}
{"image_file": "000000426377.jpg", "image_link": "http://images.cocodataset.org/train2017/000000426377.jpg", "width": 480, "height": 640, "caption": "The refrigerator is facing the dining table.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["refrigerator", "dining table"], "label_positions": [[4, 16], [31, 43]], "bboxes": [[192.72, 149.57, 178.34, 404.14], [0.0, 448.5, 138.25, 121.36]]}}
{"image_file": "000000348091.jpg", "image_link": "http://images.cocodataset.org/train2017/000000348091.jpg", "width": 640, "height": 480, "caption": "The bed is beneath the umbrella.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["bed", "umbrella"], "label_positions": [[4, 7], [23, 31]], "bboxes": [[0.0, 374.87, 439.19, 99.86], [259.55, 243.85, 87.8, 85.96]]}}
{"image_file": "000000268141.jpg", "image_link": "http://images.cocodataset.org/train2017/000000268141.jpg", "width": 640, "height": 480, "caption": "The cat is under the dining table.", "label": 1, "relation": "under", "ref_exp": {"labels": ["cat", "dining table"], "label_positions": [[4, 7], [21, 33]], "bboxes": [[210.41, 170.21, 271.25, 212.93], [1.13, 47.27, 312.11, 425.91]]}}
{"image_file": "000000250730.jpg", "image_link": "http://images.cocodataset.org/train2017/000000250730.jpg", "width": 480, "height": 640, "caption": "The motorcycle is by the person.", "label": 0, "relation": "by", "ref_exp": {"labels": ["motorcycle", "person"], "label_positions": [[4, 14], [25, 31]], "bboxes": [[87.09, 182.95, 232.48, 339.18], [81.98, 31.64, 228.67, 488.99]]}}
{"image_file": "000000382356.jpg", "image_link": "http://images.cocodataset.org/train2017/000000382356.jpg", "width": 640, "height": 480, "caption": "The person is behind the dog.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["person", "dog"], "label_positions": [[4, 10], [25, 28]], "bboxes": [[240.92, 103.85, 399.08, 205.02], [22.3, 188.93, 614.79, 278.3]]}}
{"image_file": "000000292463.jpg", "image_link": "http://images.cocodataset.org/train2017/000000292463.jpg", "width": 640, "height": 480, "caption": "The dog is behind the dining table.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["dog", "dining table"], "label_positions": [[4, 7], [22, 34]], "bboxes": [[368.89, 71.58, 239.98, 112.68], [137.79, 156.99, 299.29, 304.94]]}}
{"image_file": "000000014764.jpg", "image_link": "http://images.cocodataset.org/train2017/000000014764.jpg", "width": 640, "height": 480, "caption": "The laptop is at the edge of the bed.", "label": 0, "relation": "at the edge of", "ref_exp": {"labels": ["laptop", "bed"], "label_positions": [[4, 10], [33, 36]], "bboxes": [[0.0, 0.54, 411.89, 456.22], [0.0, 0.1, 640.0, 479.9]]}}
{"image_file": "000000448923.jpg", "image_link": "http://images.cocodataset.org/train2017/000000448923.jpg", "width": 640, "height": 480, "caption": "The sandwich is along the dining table.", "label": 1, "relation": "along", "ref_exp": {"labels": ["sandwich", "dining table"], "label_positions": [[4, 12], [26, 38]], "bboxes": [[43.05, 34.01, 298.12, 439.1], [0.0, 39.9, 467.53, 432.62]]}}
{"image_file": "000000450247.jpg", "image_link": "http://images.cocodataset.org/train2017/000000450247.jpg", "width": 640, "height": 425, "caption": "The cat is under the umbrella.", "label": 0, "relation": "under", "ref_exp": {"labels": ["cat", "umbrella"], "label_positions": [[4, 7], [21, 29]], "bboxes": [[97.3, 93.4, 465.39, 293.74], [253.11, 298.49, 192.81, 93.88]]}}
{"image_file": "000000486397.jpg", "image_link": "http://images.cocodataset.org/train2017/000000486397.jpg", "width": 640, "height": 427, "caption": "The sheep is connected to the person.", "label": 1, "relation": "connected to", "ref_exp": {"labels": ["sheep", "person"], "label_positions": [[4, 9], [30, 36]], "bboxes": [[213.06, 154.26, 422.99, 193.84], [28.79, 77.56, 162.16, 274.44]]}}
{"image_file": "000000113326.jpg", "image_link": "http://images.cocodataset.org/train2017/000000113326.jpg", "width": 480, "height": 640, "caption": "The cake consists of the car.", "label": 0, "relation": "consists of", "ref_exp": {"labels": ["cake", "car"], "label_positions": [[4, 8], [25, 28]], "bboxes": [[30.2, 109.3, 424.27, 464.54], [340.76, 4.43, 137.45, 113.11]]}}
{"image_file": "000000514864.jpg", "image_link": "http://images.cocodataset.org/train2017/000000514864.jpg", "width": 640, "height": 427, "caption": "The bus is attached to the surfboard.", "label": 0, "relation": "attached to", "ref_exp": {"labels": ["bus", "surfboard"], "label_positions": [[4, 7], [27, 36]], "bboxes": [[183.27, 0.96, 456.73, 326.25], [0.0, 231.08, 611.87, 177.84]]}}
{"image_file": "000000442785.jpg", "image_link": "http://images.cocodataset.org/train2017/000000442785.jpg", "width": 640, "height": 360, "caption": "The tv is away from the dining table.", "label": 1, "relation": "away from", "ref_exp": {"labels": ["tv", "dining table"], "label_positions": [[4, 6], [24, 36]], "bboxes": [[163.05, 59.73, 221.97, 172.74], [6.77, 98.78, 117.28, 7.44]]}}
{"image_file": "000000218774.jpg", "image_link": "http://images.cocodataset.org/train2017/000000218774.jpg", "width": 640, "height": 436, "caption": "The cow is far away from the umbrella.", "label": 1, "relation": "far away from", "ref_exp": {"labels": ["cow", "umbrella"], "label_positions": [[4, 7], [29, 37]], "bboxes": [[156.58, 87.98, 247.54, 343.18], [131.48, 138.3, 57.31, 12.76]]}}
{"image_file": "000000353919.jpg", "image_link": "http://images.cocodataset.org/train2017/000000353919.jpg", "width": 640, "height": 480, "caption": "The donut is touching the person.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["donut", "person"], "label_positions": [[4, 9], [26, 32]], "bboxes": [[408.81, 348.4, 201.71, 87.38], [11.87, 119.73, 523.14, 360.27]]}}
{"image_file": "000000268394.jpg", "image_link": "http://images.cocodataset.org/train2017/000000268394.jpg", "width": 640, "height": 396, "caption": "The car is near the cake.", "label": 1, "relation": "near", "ref_exp": {"labels": ["car", "cake"], "label_positions": [[4, 7], [20, 24]], "bboxes": [[42.15, 67.26, 378.68, 257.16], [288.32, 234.93, 325.7, 130.81]]}}
{"image_file": "000000330513.jpg", "image_link": "http://images.cocodataset.org/train2017/000000330513.jpg", "width": 640, "height": 480, "caption": "The pizza is in the toaster.", "label": 0, "relation": "in", "ref_exp": {"labels": ["pizza", "toaster"], "label_positions": [[4, 9], [20, 27]], "bboxes": [[72.27, 188.76, 312.81, 238.39], [1.08, 0.93, 175.42, 129.15]]}}
{"image_file": "000000201421.jpg", "image_link": "http://images.cocodataset.org/train2017/000000201421.jpg", "width": 480, "height": 640, "caption": "The cat is adjacent to the umbrella.", "label": 1, "relation": "adjacent to", "ref_exp": {"labels": ["cat", "umbrella"], "label_positions": [[4, 7], [27, 35]], "bboxes": [[119.37, 218.61, 309.21, 376.81], [5.75, 0.0, 474.25, 572.4]]}}
{"image_file": "000000373251.jpg", "image_link": "http://images.cocodataset.org/train2017/000000373251.jpg", "width": 640, "height": 457, "caption": "The cake is in the middle of the dining table.", "label": 1, "relation": "in the middle of", "ref_exp": {"labels": ["cake", "dining table"], "label_positions": [[4, 8], [33, 45]], "bboxes": [[212.58, 302.78, 385.11, 128.37], [1.03, 293.71, 638.97, 154.05]]}}
{"image_file": "000000248168.jpg", "image_link": "http://images.cocodataset.org/train2017/000000248168.jpg", "width": 480, "height": 640, "caption": "The suitcase is in front of the teddy bear.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["suitcase", "teddy bear"], "label_positions": [[4, 12], [32, 42]], "bboxes": [[23.75, 229.66, 112.05, 177.16], [103.55, 58.97, 309.21, 428.58]]}}
{"image_file": "000000221829.jpg", "image_link": "http://images.cocodataset.org/train2017/000000221829.jpg", "width": 429, "height": 640, "caption": "The bowl contains the cake.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["bowl", "cake"], "label_positions": [[4, 8], [22, 26]], "bboxes": [[130.88, 291.96, 280.45, 250.24], [50.71, 467.98, 136.1, 109.07]]}}
{"image_file": "000000084499.jpg", "image_link": "http://images.cocodataset.org/train2017/000000084499.jpg", "width": 500, "height": 333, "caption": "The cow is in front of the bus.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["cow", "bus"], "label_positions": [[4, 7], [27, 30]], "bboxes": [[191.52, 84.63, 218.26, 248.37], [0.75, 0.19, 290.34, 202.79]]}}
{"image_file": "000000168543.jpg", "image_link": "http://images.cocodataset.org/train2017/000000168543.jpg", "width": 471, "height": 640, "caption": "The cat is facing away from the toilet.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["cat", "toilet"], "label_positions": [[4, 7], [32, 38]], "bboxes": [[149.93, 248.97, 145.77, 227.68], [109.55, 359.64, 216.22, 270.99]]}}
{"image_file": "000000534519.jpg", "image_link": "http://images.cocodataset.org/train2017/000000534519.jpg", "width": 640, "height": 480, "caption": "The hot dog is left of the broccoli.", "label": 1, "relation": "left of", "ref_exp": {"labels": ["hot dog", "broccoli"], "label_positions": [[4, 11], [27, 35]], "bboxes": [[0.0, 8.73, 134.65, 445.09], [130.7, 125.07, 392.12, 348.17]]}}
{"image_file": "000000155604.jpg", "image_link": "http://images.cocodataset.org/train2017/000000155604.jpg", "width": 640, "height": 480, "caption": "The oven contains the pizza.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["oven", "pizza"], "label_positions": [[4, 8], [22, 27]], "bboxes": [[1.08, 2.16, 638.92, 470.29], [104.63, 199.55, 503.73, 106.79]]}}
{"image_file": "000000134238.jpg", "image_link": "http://images.cocodataset.org/train2017/000000134238.jpg", "width": 640, "height": 480, "caption": "The orange is touching the dining table.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["orange", "dining table"], "label_positions": [[4, 10], [27, 39]], "bboxes": [[1.25, 0.0, 98.11, 78.46], [1.08, 10.79, 638.92, 463.82]]}}
{"image_file": "000000054744.jpg", "image_link": "http://images.cocodataset.org/train2017/000000054744.jpg", "width": 640, "height": 428, "caption": "The dog is at the right side of the motorcycle.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["dog", "motorcycle"], "label_positions": [[4, 7], [36, 46]], "bboxes": [[0.0, 46.69, 428.86, 381.31], [1.92, 0.96, 635.75, 356.83]]}}
{"image_file": "000000204289.jpg", "image_link": "http://images.cocodataset.org/train2017/000000204289.jpg", "width": 612, "height": 612, "caption": "The donut is away from the dining table.", "label": 0, "relation": "away from", "ref_exp": {"labels": ["donut", "dining table"], "label_positions": [[4, 9], [27, 39]], "bboxes": [[135.68, 262.7, 324.76, 326.21], [0.0, 0.26, 612.0, 611.74]]}}
{"image_file": "000000257339.jpg", "image_link": "http://images.cocodataset.org/train2017/000000257339.jpg", "width": 480, "height": 640, "caption": "The cake is on the person.", "label": 1, "relation": "on", "ref_exp": {"labels": ["cake", "person"], "label_positions": [[4, 8], [19, 25]], "bboxes": [[177.56, 457.48, 56.46, 36.64], [4.31, 48.9, 475.69, 583.91]]}}
{"image_file": "000000416960.jpg", "image_link": "http://images.cocodataset.org/train2017/000000416960.jpg", "width": 640, "height": 480, "caption": "The cake is part of the sheep.", "label": 0, "relation": "part of", "ref_exp": {"labels": ["cake", "sheep"], "label_positions": [[4, 8], [24, 29]], "bboxes": [[44.22, 76.58, 569.53, 325.76], [118.42, 87.93, 43.6, 50.17]]}}
{"image_file": "000000078469.jpg", "image_link": "http://images.cocodataset.org/train2017/000000078469.jpg", "width": 640, "height": 502, "caption": "The truck is at the back of the airplane.", "label": 1, "relation": "at the back of", "ref_exp": {"labels": ["truck", "airplane"], "label_positions": [[4, 9], [32, 40]], "bboxes": [[2.37, 214.36, 433.77, 182.22], [0.0, 1.13, 640.0, 307.27]]}}
{"image_file": "000000452220.jpg", "image_link": "http://images.cocodataset.org/train2017/000000452220.jpg", "width": 640, "height": 480, "caption": "The motorcycle is touching the person.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["motorcycle", "person"], "label_positions": [[4, 14], [31, 37]], "bboxes": [[5.37, 0.0, 634.63, 480.0], [92.48, 254.87, 93.87, 125.17]]}}
{"image_file": "000000567106.jpg", "image_link": "http://images.cocodataset.org/train2017/000000567106.jpg", "width": 612, "height": 612, "caption": "The sandwich is beside the microwave.", "label": 0, "relation": "beside", "ref_exp": {"labels": ["sandwich", "microwave"], "label_positions": [[4, 12], [27, 36]], "bboxes": [[63.26, 356.2, 291.56, 154.03], [547.36, 6.46, 64.64, 108.65]]}}
{"image_file": "000000100273.jpg", "image_link": "http://images.cocodataset.org/train2017/000000100273.jpg", "width": 640, "height": 480, "caption": "The microwave is at the right side of the person.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["microwave", "person"], "label_positions": [[4, 13], [42, 48]], "bboxes": [[294.47, 1.08, 345.53, 211.41], [2.16, 5.18, 518.83, 469.22]]}}
{"image_file": "000000093031.jpg", "image_link": "http://images.cocodataset.org/train2017/000000093031.jpg", "width": 640, "height": 427, "caption": "The banana is part of the cake.", "label": 1, "relation": "part of", "ref_exp": {"labels": ["banana", "cake"], "label_positions": [[4, 10], [26, 30]], "bboxes": [[246.6, 5.76, 253.33, 346.4], [110.6, 0.98, 405.84, 420.25]]}}
{"image_file": "000000576295.jpg", "image_link": "http://images.cocodataset.org/train2017/000000576295.jpg", "width": 640, "height": 427, "caption": "The cat is in the middle of the bench.", "label": 0, "relation": "in the middle of", "ref_exp": {"labels": ["cat", "bench"], "label_positions": [[4, 7], [32, 37]], "bboxes": [[82.29, 152.87, 173.73, 222.18], [0.0, 120.9, 640.0, 301.3]]}}
{"image_file": "000000082894.jpg", "image_link": "http://images.cocodataset.org/train2017/000000082894.jpg", "width": 640, "height": 480, "caption": "The truck is across from the dining table.", "label": 1, "relation": "across from", "ref_exp": {"labels": ["truck", "dining table"], "label_positions": [[4, 9], [29, 41]], "bboxes": [[323.39, 15.71, 251.23, 102.92], [1.25, 187.01, 638.75, 286.76]]}}
{"image_file": "000000164786.jpg", "image_link": "http://images.cocodataset.org/train2017/000000164786.jpg", "width": 640, "height": 386, "caption": "The person is next to the train.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["person", "train"], "label_positions": [[4, 10], [26, 31]], "bboxes": [[573.19, 207.91, 14.1, 19.51], [29.49, 62.45, 603.72, 284.52]]}}
{"image_file": "000000575017.jpg", "image_link": "http://images.cocodataset.org/train2017/000000575017.jpg", "width": 480, "height": 640, "caption": "The cat is on the person.", "label": 1, "relation": "on", "ref_exp": {"labels": ["cat", "person"], "label_positions": [[4, 7], [18, 24]], "bboxes": [[167.9, 19.95, 197.81, 271.45], [1.44, 70.47, 438.65, 481.8]]}}
{"image_file": "000000313593.jpg", "image_link": "http://images.cocodataset.org/train2017/000000313593.jpg", "width": 640, "height": 480, "caption": "The laptop is above the bed.", "label": 1, "relation": "above", "ref_exp": {"labels": ["laptop", "bed"], "label_positions": [[4, 10], [24, 27]], "bboxes": [[0.0, 1.98, 616.99, 402.33], [0.0, 184.82, 640.0, 295.18]]}}
{"image_file": "000000002139.jpg", "image_link": "http://images.cocodataset.org/train2017/000000002139.jpg", "width": 640, "height": 427, "caption": "The umbrella is above the bed.", "label": 0, "relation": "above", "ref_exp": {"labels": ["umbrella", "bed"], "label_positions": [[4, 12], [26, 29]], "bboxes": [[547.97, 11.19, 61.75, 175.34], [1.11, 51.02, 557.87, 367.11]]}}
{"image_file": "000000109928.jpg", "image_link": "http://images.cocodataset.org/train2017/000000109928.jpg", "width": 640, "height": 480, "caption": "The bench is at the side of the bed.", "label": 0, "relation": "at the side of", "ref_exp": {"labels": ["bench", "bed"], "label_positions": [[4, 9], [32, 35]], "bboxes": [[292.31, 305.26, 296.63, 168.27], [149.93, 123.87, 450.88, 349.48]]}}
{"image_file": "000000489093.jpg", "image_link": "http://images.cocodataset.org/train2017/000000489093.jpg", "width": 640, "height": 361, "caption": "The refrigerator is facing the person.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["refrigerator", "person"], "label_positions": [[4, 16], [31, 37]], "bboxes": [[523.22, 0.0, 116.27, 78.61], [0.0, 0.81, 283.93, 360.19]]}}
{"image_file": "000000199021.jpg", "image_link": "http://images.cocodataset.org/train2017/000000199021.jpg", "width": 640, "height": 480, "caption": "The cup is at the right side of the tv.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["cup", "tv"], "label_positions": [[4, 7], [36, 38]], "bboxes": [[4.3, 81.79, 164.67, 283.05], [287.67, 38.42, 17.28, 30.92]]}}
{"image_file": "000000463670.jpg", "image_link": "http://images.cocodataset.org/train2017/000000463670.jpg", "width": 480, "height": 640, "caption": "The dog is on the teddy bear.", "label": 1, "relation": "on", "ref_exp": {"labels": ["dog", "teddy bear"], "label_positions": [[4, 7], [18, 28]], "bboxes": [[0.0, 26.64, 480.0, 613.36], [171.0, 388.12, 215.58, 234.02]]}}
{"image_file": "000000230567.jpg", "image_link": "http://images.cocodataset.org/train2017/000000230567.jpg", "width": 500, "height": 324, "caption": "The umbrella is behind the motorcycle.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["umbrella", "motorcycle"], "label_positions": [[4, 12], [27, 37]], "bboxes": [[5.81, 27.61, 316.01, 162.0], [226.47, 290.07, 74.44, 32.98]]}}
{"image_file": "000000499267.jpg", "image_link": "http://images.cocodataset.org/train2017/000000499267.jpg", "width": 375, "height": 500, "caption": "The bus is past the car.", "label": 1, "relation": "past", "ref_exp": {"labels": ["bus", "car"], "label_positions": [[4, 7], [20, 23]], "bboxes": [[1.12, 106.74, 373.88, 269.66], [0.0, 330.11, 373.12, 164.51]]}}
{"image_file": "000000000650.jpg", "image_link": "http://images.cocodataset.org/train2017/000000000650.jpg", "width": 640, "height": 427, "caption": "The cat is under the car.", "label": 0, "relation": "under", "ref_exp": {"labels": ["cat", "car"], "label_positions": [[4, 7], [21, 24]], "bboxes": [[179.98, 110.19, 304.87, 244.27], [2.38, 279.53, 637.62, 141.84]]}}
{"image_file": "000000010217.jpg", "image_link": "http://images.cocodataset.org/train2017/000000010217.jpg", "width": 640, "height": 480, "caption": "The mouse is in front of the pizza.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["mouse", "pizza"], "label_positions": [[4, 9], [29, 34]], "bboxes": [[443.41, 17.17, 196.59, 182.96], [211.89, 170.27, 291.89, 231.35]]}}
{"image_file": "000000366839.jpg", "image_link": "http://images.cocodataset.org/train2017/000000366839.jpg", "width": 640, "height": 480, "caption": "The train is behind the bench.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["train", "bench"], "label_positions": [[4, 9], [24, 29]], "bboxes": [[164.66, 125.2, 334.71, 249.69], [506.07, 216.71, 19.81, 16.18]]}}
{"image_file": "000000477061.jpg", "image_link": "http://images.cocodataset.org/train2017/000000477061.jpg", "width": 480, "height": 640, "caption": "The car is part of the bed.", "label": 0, "relation": "part of", "ref_exp": {"labels": ["car", "bed"], "label_positions": [[4, 7], [23, 26]], "bboxes": [[0.0, 0.75, 478.49, 629.44], [1.66, 297.56, 478.34, 247.69]]}}
{"image_file": "000000111347.jpg", "image_link": "http://images.cocodataset.org/train2017/000000111347.jpg", "width": 640, "height": 383, "caption": "The dining table is beneath the person.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["dining table", "person"], "label_positions": [[4, 16], [32, 38]], "bboxes": [[7.75, 0.07, 632.25, 366.19], [224.64, 77.52, 266.8, 305.48]]}}
{"image_file": "000000041041.jpg", "image_link": "http://images.cocodataset.org/train2017/000000041041.jpg", "width": 480, "height": 640, "caption": "The pizza is on the oven.", "label": 1, "relation": "on", "ref_exp": {"labels": ["pizza", "oven"], "label_positions": [[4, 9], [20, 24]], "bboxes": [[27.11, 81.32, 355.38, 515.01], [4.99, 0.0, 475.01, 608.42]]}}
{"image_file": "000000449770.jpg", "image_link": "http://images.cocodataset.org/train2017/000000449770.jpg", "width": 640, "height": 427, "caption": "The backpack is next to the cat.", "label": 1, "relation": "next to", "ref_exp": {"labels": ["backpack", "cat"], "label_positions": [[4, 12], [28, 31]], "bboxes": [[0.0, 2.85, 423.57, 419.01], [304.73, 0.09, 335.27, 426.91]]}}
{"image_file": "000000482808.jpg", "image_link": "http://images.cocodataset.org/train2017/000000482808.jpg", "width": 480, "height": 640, "caption": "The laptop is behind the sandwich.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["laptop", "sandwich"], "label_positions": [[4, 10], [25, 33]], "bboxes": [[192.72, 434.1, 287.28, 205.66], [119.1, 564.88, 78.43, 41.56]]}}
{"image_file": "000000157931.jpg", "image_link": "http://images.cocodataset.org/train2017/000000157931.jpg", "width": 640, "height": 480, "caption": "The suitcase contains the dog.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["suitcase", "dog"], "label_positions": [[4, 12], [26, 29]], "bboxes": [[284.76, 222.2, 355.24, 252.41], [0.97, 138.51, 510.06, 336.48]]}}
{"image_file": "000000537382.jpg", "image_link": "http://images.cocodataset.org/train2017/000000537382.jpg", "width": 427, "height": 640, "caption": "The sandwich is on top of the banana.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["sandwich", "banana"], "label_positions": [[4, 12], [30, 36]], "bboxes": [[67.9, 194.65, 304.11, 204.34], [1.64, 327.65, 425.36, 298.36]]}}
{"image_file": "000000248876.jpg", "image_link": "http://images.cocodataset.org/train2017/000000248876.jpg", "width": 500, "height": 345, "caption": "The cat is at the right side of the laptop.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["cat", "laptop"], "label_positions": [[4, 7], [36, 42]], "bboxes": [[273.03, 8.9, 186.97, 284.16], [0.77, 72.62, 277.08, 268.6]]}}
{"image_file": "000000083508.jpg", "image_link": "http://images.cocodataset.org/train2017/000000083508.jpg", "width": 640, "height": 457, "caption": "The person is at the left side of the dining table.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["person", "dining table"], "label_positions": [[4, 10], [38, 50]], "bboxes": [[210.65, 95.8, 211.84, 354.65], [390.25, 222.92, 249.75, 225.93]]}}
{"image_file": "000000481886.jpg", "image_link": "http://images.cocodataset.org/train2017/000000481886.jpg", "width": 480, "height": 640, "caption": "The book is at the left side of the pizza.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["book", "pizza"], "label_positions": [[4, 8], [36, 41]], "bboxes": [[294.83, 117.69, 178.34, 71.91], [119.37, 220.04, 221.48, 220.05]]}}
{"image_file": "000000520694.jpg", "image_link": "http://images.cocodataset.org/train2017/000000520694.jpg", "width": 640, "height": 535, "caption": "The bed is below the suitcase.", "label": 1, "relation": "below", "ref_exp": {"labels": ["bed", "suitcase"], "label_positions": [[4, 7], [21, 29]], "bboxes": [[1.2, 347.87, 638.8, 181.13], [3.61, 62.66, 636.39, 471.14]]}}
{"image_file": "000000522405.jpg", "image_link": "http://images.cocodataset.org/train2017/000000522405.jpg", "width": 640, "height": 480, "caption": "The keyboard is in front of the cat.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["keyboard", "cat"], "label_positions": [[4, 12], [32, 35]], "bboxes": [[0.36, 267.42, 192.96, 71.06], [96.86, 170.45, 437.06, 297.65]]}}
{"image_file": "000000447928.jpg", "image_link": "http://images.cocodataset.org/train2017/000000447928.jpg", "width": 640, "height": 426, "caption": "The dog is parallel to the cat.", "label": 1, "relation": "parallel to", "ref_exp": {"labels": ["dog", "cat"], "label_positions": [[4, 7], [27, 30]], "bboxes": [[197.48, 0.43, 433.76, 420.83], [18.92, 0.0, 305.06, 381.34]]}}
{"image_file": "000000531816.jpg", "image_link": "http://images.cocodataset.org/train2017/000000531816.jpg", "width": 426, "height": 640, "caption": "The teddy bear is on the bench.", "label": 0, "relation": "on", "ref_exp": {"labels": ["teddy bear", "bench"], "label_positions": [[4, 14], [25, 30]], "bboxes": [[95.17, 188.1, 248.75, 412.73], [362.29, 181.16, 62.47, 24.51]]}}
{"image_file": "000000087100.jpg", "image_link": "http://images.cocodataset.org/train2017/000000087100.jpg", "width": 640, "height": 516, "caption": "The airplane is behind the truck.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["airplane", "truck"], "label_positions": [[4, 12], [27, 32]], "bboxes": [[71.73, 206.63, 554.18, 139.99], [411.95, 320.84, 79.99, 36.46]]}}
{"image_file": "000000573052.jpg", "image_link": "http://images.cocodataset.org/train2017/000000573052.jpg", "width": 478, "height": 640, "caption": "The hot dog is inside the person.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["hot dog", "person"], "label_positions": [[4, 11], [26, 32]], "bboxes": [[51.32, 55.09, 320.0, 541.89], [0.0, 145.38, 96.4, 330.27]]}}
{"image_file": "000000033717.jpg", "image_link": "http://images.cocodataset.org/train2017/000000033717.jpg", "width": 640, "height": 480, "caption": "The bird is far from the elephant.", "label": 0, "relation": "far from", "ref_exp": {"labels": ["bird", "elephant"], "label_positions": [[4, 8], [25, 33]], "bboxes": [[388.33, 122.16, 71.07, 52.54], [270.41, 171.67, 285.32, 262.43]]}}
{"image_file": "000000067373.jpg", "image_link": "http://images.cocodataset.org/train2017/000000067373.jpg", "width": 480, "height": 640, "caption": "The donut is far away from the bus.", "label": 1, "relation": "far away from", "ref_exp": {"labels": ["donut", "bus"], "label_positions": [[4, 9], [31, 34]], "bboxes": [[58.97, 419.96, 293.39, 211.41], [188.62, 16.4, 157.76, 120.82]]}}
{"image_file": "000000440656.jpg", "image_link": "http://images.cocodataset.org/train2017/000000440656.jpg", "width": 640, "height": 423, "caption": "The pizza is on top of the oven.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["pizza", "oven"], "label_positions": [[4, 9], [27, 31]], "bboxes": [[161.25, 30.42, 365.36, 212.92], [0.0, 0.95, 638.78, 420.15]]}}
{"image_file": "000000069346.jpg", "image_link": "http://images.cocodataset.org/train2017/000000069346.jpg", "width": 640, "height": 480, "caption": "The oven is beneath the pizza.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["oven", "pizza"], "label_positions": [[4, 8], [24, 29]], "bboxes": [[1.08, 6.47, 638.56, 460.59], [168.93, 142.29, 267.78, 139.14]]}}
{"image_file": "000000464188.jpg", "image_link": "http://images.cocodataset.org/train2017/000000464188.jpg", "width": 640, "height": 540, "caption": "The cake consists of the dog.", "label": 0, "relation": "consists of", "ref_exp": {"labels": ["cake", "dog"], "label_positions": [[4, 8], [25, 28]], "bboxes": [[30.34, 330.07, 231.77, 174.74], [213.82, 1.09, 426.18, 404.73]]}}
{"image_file": "000000323164.jpg", "image_link": "http://images.cocodataset.org/train2017/000000323164.jpg", "width": 500, "height": 415, "caption": "The teddy bear is off the cat.", "label": 0, "relation": "off", "ref_exp": {"labels": ["teddy bear", "cat"], "label_positions": [[4, 14], [26, 29]], "bboxes": [[204.24, 12.12, 284.43, 366.51], [16.06, 49.09, 466.77, 354.31]]}}
{"image_file": "000000254984.jpg", "image_link": "http://images.cocodataset.org/train2017/000000254984.jpg", "width": 640, "height": 480, "caption": "The suitcase is on top of the bed.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["suitcase", "bed"], "label_positions": [[4, 12], [30, 33]], "bboxes": [[20.32, 94.89, 58.23, 79.66], [13.99, 56.13, 569.33, 423.87]]}}
{"image_file": "000000553378.jpg", "image_link": "http://images.cocodataset.org/train2017/000000553378.jpg", "width": 640, "height": 480, "caption": "The cat is in the handbag.", "label": 1, "relation": "in", "ref_exp": {"labels": ["cat", "handbag"], "label_positions": [[4, 7], [18, 25]], "bboxes": [[135.52, 60.52, 397.24, 237.93], [33.66, 28.68, 536.11, 442.59]]}}
{"image_file": "000000193599.jpg", "image_link": "http://images.cocodataset.org/train2017/000000193599.jpg", "width": 640, "height": 428, "caption": "The toilet contains the teddy bear.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["toilet", "teddy bear"], "label_positions": [[4, 10], [24, 34]], "bboxes": [[93.42, 2.72, 499.7, 420.39], [267.72, 232.15, 176.53, 157.92]]}}
{"image_file": "000000079512.jpg", "image_link": "http://images.cocodataset.org/train2017/000000079512.jpg", "width": 375, "height": 500, "caption": "The traffic light is far away from the person.", "label": 0, "relation": "far away from", "ref_exp": {"labels": ["traffic light", "person"], "label_positions": [[4, 17], [39, 45]], "bboxes": [[55.82, 0.26, 23.45, 51.38], [44.02, 36.96, 330.98, 454.86]]}}
{"image_file": "000000551494.jpg", "image_link": "http://images.cocodataset.org/train2017/000000551494.jpg", "width": 426, "height": 640, "caption": "The teddy bear is at the edge of the chair.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["teddy bear", "chair"], "label_positions": [[4, 14], [37, 42]], "bboxes": [[15.82, 372.49, 264.63, 253.13], [0.13, 151.08, 425.1, 488.92]]}}
{"image_file": "000000270083.jpg", "image_link": "http://images.cocodataset.org/train2017/000000270083.jpg", "width": 640, "height": 427, "caption": "The apple is connected to the dining table.", "label": 1, "relation": "connected to", "ref_exp": {"labels": ["apple", "dining table"], "label_positions": [[4, 9], [30, 42]], "bboxes": [[1.05, 1.15, 356.71, 386.08], [1.11, 215.16, 638.89, 202.97]]}}
{"image_file": "000000425859.jpg", "image_link": "http://images.cocodataset.org/train2017/000000425859.jpg", "width": 426, "height": 640, "caption": "The dining table is under the teddy bear.", "label": 0, "relation": "under", "ref_exp": {"labels": ["dining table", "teddy bear"], "label_positions": [[4, 16], [30, 40]], "bboxes": [[0.0, 137.12, 147.97, 75.95], [1.44, 79.1, 316.4, 453.03]]}}
{"image_file": "000000508555.jpg", "image_link": "http://images.cocodataset.org/train2017/000000508555.jpg", "width": 640, "height": 480, "caption": "The pizza is above the dog.", "label": 1, "relation": "above", "ref_exp": {"labels": ["pizza", "dog"], "label_positions": [[4, 9], [23, 26]], "bboxes": [[0.0, 94.92, 263.19, 239.46], [0.0, 3.08, 632.6, 476.14]]}}
{"image_file": "000000288729.jpg", "image_link": "http://images.cocodataset.org/train2017/000000288729.jpg", "width": 480, "height": 640, "caption": "The cake is next to the teddy bear.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["cake", "teddy bear"], "label_positions": [[4, 8], [24, 34]], "bboxes": [[4.32, 165.77, 475.68, 464.14], [218.86, 499.01, 123.62, 140.06]]}}
{"image_file": "000000539297.jpg", "image_link": "http://images.cocodataset.org/train2017/000000539297.jpg", "width": 640, "height": 426, "caption": "The pizza is next to the knife.", "label": 1, "relation": "next to", "ref_exp": {"labels": ["pizza", "knife"], "label_positions": [[4, 9], [25, 30]], "bboxes": [[262.66, 79.02, 377.34, 187.62], [0.0, 231.67, 640.0, 179.97]]}}
{"image_file": "000000075187.jpg", "image_link": "http://images.cocodataset.org/train2017/000000075187.jpg", "width": 640, "height": 427, "caption": "The bench is beneath the person.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["bench", "person"], "label_positions": [[4, 9], [25, 31]], "bboxes": [[403.07, 280.63, 236.93, 141.69], [163.35, 87.98, 316.19, 333.38]]}}
{"image_file": "000000250069.jpg", "image_link": "http://images.cocodataset.org/train2017/000000250069.jpg", "width": 640, "height": 480, "caption": "The dog is inside the handbag.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["dog", "handbag"], "label_positions": [[4, 7], [22, 29]], "bboxes": [[273.45, 289.94, 335.52, 183.27], [210.69, 283.17, 108.65, 94.03]]}}
{"image_file": "000000033111.jpg", "image_link": "http://images.cocodataset.org/train2017/000000033111.jpg", "width": 500, "height": 335, "caption": "The chair is at the right side of the dog.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["chair", "dog"], "label_positions": [[4, 9], [38, 41]], "bboxes": [[420.92, 0.97, 79.08, 159.69], [0.0, 74.09, 499.45, 260.91]]}}
{"image_file": "000000106229.jpg", "image_link": "http://images.cocodataset.org/train2017/000000106229.jpg", "width": 640, "height": 480, "caption": "The dog is touching the suitcase.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["dog", "suitcase"], "label_positions": [[4, 7], [24, 32]], "bboxes": [[207.1, 155.81, 350.32, 213.87], [0.0, 14.06, 294.23, 320.0]]}}
{"image_file": "000000158798.jpg", "image_link": "http://images.cocodataset.org/train2017/000000158798.jpg", "width": 640, "height": 480, "caption": "The cat is under the umbrella.", "label": 1, "relation": "under", "ref_exp": {"labels": ["cat", "umbrella"], "label_positions": [[4, 7], [21, 29]], "bboxes": [[245.65, 208.75, 200.43, 102.78], [2.15, 0.0, 637.85, 207.35]]}}
{"image_file": "000000369521.jpg", "image_link": "http://images.cocodataset.org/train2017/000000369521.jpg", "width": 640, "height": 480, "caption": "The dog is in the chair.", "label": 0, "relation": "in", "ref_exp": {"labels": ["dog", "chair"], "label_positions": [[4, 7], [18, 23]], "bboxes": [[143.23, 175.16, 449.03, 304.65], [459.82, 0.0, 180.18, 179.38]]}}
{"image_file": "000000107571.jpg", "image_link": "http://images.cocodataset.org/train2017/000000107571.jpg", "width": 640, "height": 427, "caption": "The teddy bear is on the chair.", "label": 1, "relation": "on", "ref_exp": {"labels": ["teddy bear", "chair"], "label_positions": [[4, 14], [25, 30]], "bboxes": [[214.94, 74.84, 182.31, 226.46], [2.22, 2.22, 637.78, 419.23]]}}
{"image_file": "000000579917.jpg", "image_link": "http://images.cocodataset.org/train2017/000000579917.jpg", "width": 640, "height": 480, "caption": "The banana is on top of the cake.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["banana", "cake"], "label_positions": [[4, 10], [28, 32]], "bboxes": [[99.01, 0.0, 291.66, 137.33], [70.11, 25.71, 492.95, 426.07]]}}
{"image_file": "000000544832.jpg", "image_link": "http://images.cocodataset.org/train2017/000000544832.jpg", "width": 640, "height": 480, "caption": "The tv is in front of the person.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["tv", "person"], "label_positions": [[4, 6], [26, 32]], "bboxes": [[438.32, 113.56, 125.36, 124.93], [78.39, 122.06, 271.68, 350.07]]}}
{"image_file": "000000101194.jpg", "image_link": "http://images.cocodataset.org/train2017/000000101194.jpg", "width": 640, "height": 427, "caption": "The oven is below the pizza.", "label": 0, "relation": "below", "ref_exp": {"labels": ["oven", "pizza"], "label_positions": [[4, 8], [22, 27]], "bboxes": [[0.0, 0.0, 640.0, 427.0], [392.78, 144.84, 125.16, 68.23]]}}
{"image_file": "000000439364.jpg", "image_link": "http://images.cocodataset.org/train2017/000000439364.jpg", "width": 426, "height": 640, "caption": "The cat is into the toilet.", "label": 1, "relation": "into", "ref_exp": {"labels": ["cat", "toilet"], "label_positions": [[4, 7], [20, 26]], "bboxes": [[1.38, 205.08, 316.56, 425.29], [156.76, 24.45, 269.24, 589.66]]}}
{"image_file": "000000563178.jpg", "image_link": "http://images.cocodataset.org/train2017/000000563178.jpg", "width": 640, "height": 545, "caption": "The bowl is next to the tv.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["bowl", "tv"], "label_positions": [[4, 8], [24, 26]], "bboxes": [[445.54, 118.21, 35.47, 17.62], [183.91, 0.0, 329.69, 164.85]]}}
{"image_file": "000000562291.jpg", "image_link": "http://images.cocodataset.org/train2017/000000562291.jpg", "width": 640, "height": 394, "caption": "The train is parallel to the boat.", "label": 1, "relation": "parallel to", "ref_exp": {"labels": ["train", "boat"], "label_positions": [[4, 9], [29, 33]], "bboxes": [[0.0, 172.55, 301.44, 197.44], [0.0, 59.19, 616.62, 181.98]]}}
{"image_file": "000000237903.jpg", "image_link": "http://images.cocodataset.org/train2017/000000237903.jpg", "width": 640, "height": 426, "caption": "The cat is at the edge of the couch.", "label": 0, "relation": "at the edge of", "ref_exp": {"labels": ["cat", "couch"], "label_positions": [[4, 7], [30, 35]], "bboxes": [[0.0, 0.13, 640.0, 420.53], [0.0, 0.0, 273.75, 426.0]]}}
{"image_file": "000000539406.jpg", "image_link": "http://images.cocodataset.org/train2017/000000539406.jpg", "width": 640, "height": 480, "caption": "The truck contains the cow.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["truck", "cow"], "label_positions": [[4, 9], [23, 26]], "bboxes": [[139.91, 109.9, 355.16, 363.77], [174.16, 170.31, 181.02, 162.49]]}}
{"image_file": "000000099619.jpg", "image_link": "http://images.cocodataset.org/train2017/000000099619.jpg", "width": 480, "height": 640, "caption": "The zebra is at the left side of the person.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["zebra", "person"], "label_positions": [[4, 9], [37, 43]], "bboxes": [[221.92, 170.5, 165.9, 446.35], [43.15, 63.04, 208.54, 569.53]]}}
{"image_file": "000000116696.jpg", "image_link": "http://images.cocodataset.org/train2017/000000116696.jpg", "width": 480, "height": 640, "caption": "The teddy bear is connected to the dining table.", "label": 0, "relation": "connected to", "ref_exp": {"labels": ["teddy bear", "dining table"], "label_positions": [[4, 14], [35, 47]], "bboxes": [[181.41, 64.3, 160.26, 150.24], [1.56, 275.03, 478.44, 364.97]]}}
{"image_file": "000000028134.jpg", "image_link": "http://images.cocodataset.org/train2017/000000028134.jpg", "width": 480, "height": 640, "caption": "The bird is facing the book.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["bird", "book"], "label_positions": [[4, 8], [23, 27]], "bboxes": [[129.82, 196.26, 199.49, 385.22], [41.26, 234.59, 38.26, 38.84]]}}
{"image_file": "000000185384.jpg", "image_link": "http://images.cocodataset.org/train2017/000000185384.jpg", "width": 612, "height": 612, "caption": "The cat is touching the cake.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cat", "cake"], "label_positions": [[4, 7], [24, 28]], "bboxes": [[273.75, 173.73, 218.48, 315.87], [39.7, 332.83, 260.14, 88.99]]}}
{"image_file": "000000166464.jpg", "image_link": "http://images.cocodataset.org/train2017/000000166464.jpg", "width": 480, "height": 640, "caption": "The dining table is at the right side of the teddy bear.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["dining table", "teddy bear"], "label_positions": [[4, 16], [45, 55]], "bboxes": [[163.76, 172.17, 316.24, 313.99], [163.92, 344.86, 93.68, 116.9]]}}
{"image_file": "000000516261.jpg", "image_link": "http://images.cocodataset.org/train2017/000000516261.jpg", "width": 640, "height": 480, "caption": "The dining table is at the left side of the dog.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["dining table", "dog"], "label_positions": [[4, 16], [44, 47]], "bboxes": [[158.12, 229.27, 283.48, 242.82], [409.21, 202.67, 108.61, 230.78]]}}
{"image_file": "000000378807.jpg", "image_link": "http://images.cocodataset.org/train2017/000000378807.jpg", "width": 640, "height": 437, "caption": "The laptop is touching the book.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["laptop", "book"], "label_positions": [[4, 10], [27, 31]], "bboxes": [[63.98, 53.64, 251.96, 307.08], [313.27, 214.08, 146.32, 99.19]]}}
{"image_file": "000000254806.jpg", "image_link": "http://images.cocodataset.org/train2017/000000254806.jpg", "width": 456, "height": 640, "caption": "The person is away from the zebra.", "label": 1, "relation": "away from", "ref_exp": {"labels": ["person", "zebra"], "label_positions": [[4, 10], [28, 33]], "bboxes": [[17.38, 401.38, 286.03, 208.6], [0.0, 34.5, 372.26, 276.33]]}}
{"image_file": "000000530653.jpg", "image_link": "http://images.cocodataset.org/train2017/000000530653.jpg", "width": 640, "height": 429, "caption": "The bus is in front of the person.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["bus", "person"], "label_positions": [[4, 7], [27, 33]], "bboxes": [[0.97, 0.73, 324.41, 423.19], [303.67, 160.03, 80.98, 185.1]]}}
{"image_file": "000000378428.jpg", "image_link": "http://images.cocodataset.org/train2017/000000378428.jpg", "width": 640, "height": 480, "caption": "The tv is beneath the cat.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["tv", "cat"], "label_positions": [[4, 6], [22, 25]], "bboxes": [[52.85, 177.17, 587.15, 297.71], [198.92, 54.59, 322.16, 340.55]]}}
{"image_file": "000000191016.jpg", "image_link": "http://images.cocodataset.org/train2017/000000191016.jpg", "width": 500, "height": 375, "caption": "The cat is on top of the refrigerator.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["cat", "refrigerator"], "label_positions": [[4, 7], [25, 37]], "bboxes": [[155.66, 73.08, 115.06, 138.19], [66.42, 0.0, 331.28, 369.96]]}}
{"image_file": "000000513733.jpg", "image_link": "http://images.cocodataset.org/train2017/000000513733.jpg", "width": 480, "height": 640, "caption": "The cake is adjacent to the car.", "label": 0, "relation": "adjacent to", "ref_exp": {"labels": ["cake", "car"], "label_positions": [[4, 8], [28, 31]], "bboxes": [[70.63, 38.92, 371.89, 454.05], [355.66, 6.42, 124.34, 93.34]]}}
{"image_file": "000000192575.jpg", "image_link": "http://images.cocodataset.org/train2017/000000192575.jpg", "width": 640, "height": 360, "caption": "The bed is beneath the teddy bear.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["bed", "teddy bear"], "label_positions": [[4, 7], [23, 33]], "bboxes": [[148.04, 0.2, 327.65, 216.81], [334.92, 1.48, 304.18, 355.15]]}}
{"image_file": "000000070211.jpg", "image_link": "http://images.cocodataset.org/train2017/000000070211.jpg", "width": 640, "height": 480, "caption": "The keyboard is under the cake.", "label": 0, "relation": "under", "ref_exp": {"labels": ["keyboard", "cake"], "label_positions": [[4, 12], [26, 30]], "bboxes": [[84.21, 62.85, 123.95, 45.08], [39.91, 84.13, 474.61, 196.32]]}}
{"image_file": "000000117108.jpg", "image_link": "http://images.cocodataset.org/train2017/000000117108.jpg", "width": 425, "height": 640, "caption": "The dog is at the right side of the vase.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["dog", "vase"], "label_positions": [[4, 7], [36, 40]], "bboxes": [[232.73, 464.16, 192.27, 169.38], [1.44, 234.43, 145.26, 398.38]]}}
{"image_file": "000000360948.jpg", "image_link": "http://images.cocodataset.org/train2017/000000360948.jpg", "width": 640, "height": 424, "caption": "The apple is on top of the banana.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["apple", "banana"], "label_positions": [[4, 9], [27, 33]], "bboxes": [[0.0, 48.88, 365.14, 350.18], [11.36, 24.43, 598.14, 390.88]]}}
{"image_file": "000000034113.jpg", "image_link": "http://images.cocodataset.org/train2017/000000034113.jpg", "width": 426, "height": 640, "caption": "The pizza is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["pizza", "person"], "label_positions": [[4, 9], [26, 32]], "bboxes": [[87.9, 292.07, 217.27, 176.92], [14.41, 433.87, 305.59, 198.92]]}}
{"image_file": "000000548962.jpg", "image_link": "http://images.cocodataset.org/train2017/000000548962.jpg", "width": 640, "height": 480, "caption": "The laptop is facing away from the couch.", "label": 0, "relation": "facing away from", "ref_exp": {"labels": ["laptop", "couch"], "label_positions": [[4, 10], [35, 40]], "bboxes": [[435.57, 281.32, 51.14, 49.09], [187.47, 304.93, 404.81, 174.37]]}}
{"image_file": "000000046686.jpg", "image_link": "http://images.cocodataset.org/train2017/000000046686.jpg", "width": 480, "height": 640, "caption": "The fire hydrant is below the tv.", "label": 1, "relation": "below", "ref_exp": {"labels": ["fire hydrant", "tv"], "label_positions": [[4, 16], [30, 32]], "bboxes": [[182.37, 171.29, 235.47, 462.44], [89.53, 49.66, 354.82, 285.18]]}}
{"image_file": "000000530811.jpg", "image_link": "http://images.cocodataset.org/train2017/000000530811.jpg", "width": 375, "height": 500, "caption": "The dog is beneath the cat.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["dog", "cat"], "label_positions": [[4, 7], [23, 26]], "bboxes": [[10.06, 184.25, 337.02, 299.8], [155.96, 154.5, 167.56, 149.97]]}}
{"image_file": "000000031082.jpg", "image_link": "http://images.cocodataset.org/train2017/000000031082.jpg", "width": 480, "height": 640, "caption": "The car is far from the chair.", "label": 1, "relation": "far from", "ref_exp": {"labels": ["car", "chair"], "label_positions": [[4, 7], [24, 29]], "bboxes": [[435.23, 431.14, 42.68, 29.97], [12.33, 35.76, 404.29, 535.85]]}}
{"image_file": "000000579016.jpg", "image_link": "http://images.cocodataset.org/train2017/000000579016.jpg", "width": 500, "height": 371, "caption": "The person is facing away from the car.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["person", "car"], "label_positions": [[4, 10], [35, 38]], "bboxes": [[44.29, 251.44, 19.89, 26.53], [0.8, 277.65, 499.2, 93.35]]}}
{"image_file": "000000093519.jpg", "image_link": "http://images.cocodataset.org/train2017/000000093519.jpg", "width": 640, "height": 480, "caption": "The truck is far from the toilet.", "label": 1, "relation": "far from", "ref_exp": {"labels": ["truck", "toilet"], "label_positions": [[4, 9], [26, 32]], "bboxes": [[239.46, 4.31, 142.38, 111.11], [394.79, 110.02, 170.42, 314.97]]}}
{"image_file": "000000287387.jpg", "image_link": "http://images.cocodataset.org/train2017/000000287387.jpg", "width": 640, "height": 480, "caption": "The teddy bear is in the middle of the dining table.", "label": 0, "relation": "in the middle of", "ref_exp": {"labels": ["teddy bear", "dining table"], "label_positions": [[4, 14], [39, 51]], "bboxes": [[147.78, 17.08, 292.31, 355.95], [0.0, 218.04, 640.0, 261.96]]}}
{"image_file": "000000076816.jpg", "image_link": "http://images.cocodataset.org/train2017/000000076816.jpg", "width": 640, "height": 484, "caption": "The bed is left of the tv.", "label": 1, "relation": "left of", "ref_exp": {"labels": ["bed", "tv"], "label_positions": [[4, 7], [23, 25]], "bboxes": [[8.7, 256.11, 363.27, 217.53], [562.87, 207.51, 69.36, 101.42]]}}
{"image_file": "000000333368.jpg", "image_link": "http://images.cocodataset.org/train2017/000000333368.jpg", "width": 640, "height": 480, "caption": "The suitcase is above the bed.", "label": 1, "relation": "above", "ref_exp": {"labels": ["suitcase", "bed"], "label_positions": [[4, 12], [26, 29]], "bboxes": [[6.47, 65.8, 633.53, 408.81], [0.0, 2.15, 640.0, 477.85]]}}
{"image_file": "000000041273.jpg", "image_link": "http://images.cocodataset.org/train2017/000000041273.jpg", "width": 640, "height": 539, "caption": "The suitcase contains the cat.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["suitcase", "cat"], "label_positions": [[4, 12], [26, 29]], "bboxes": [[3.63, 76.31, 636.37, 443.31], [213.43, 68.85, 160.37, 133.84]]}}
{"image_file": "000000058677.jpg", "image_link": "http://images.cocodataset.org/train2017/000000058677.jpg", "width": 480, "height": 640, "caption": "The hot dog is in the oven.", "label": 0, "relation": "in", "ref_exp": {"labels": ["hot dog", "oven"], "label_positions": [[4, 11], [22, 26]], "bboxes": [[68.16, 369.04, 379.01, 262.65], [349.62, 92.58, 130.38, 151.28]]}}
{"image_file": "000000501523.jpg", "image_link": "http://images.cocodataset.org/val2017/000000501523.jpg", "width": 640, "height": 480, "caption": "The sink is surrounding the cat.", "label": 1, "relation": "surrounding", "ref_exp": {"labels": ["sink", "cat"], "label_positions": [[4, 8], [28, 31]], "bboxes": [[104.63, 0.0, 535.37, 467.06], [208.52, 112.52, 289.03, 285.93]]}}
{"image_file": "000000496636.jpg", "image_link": "http://images.cocodataset.org/train2017/000000496636.jpg", "width": 640, "height": 524, "caption": "The person is touching the sheep.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "sheep"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[376.03, 22.81, 172.41, 501.19], [158.7, 285.23, 328.61, 230.71]]}}
{"image_file": "000000483065.jpg", "image_link": "http://images.cocodataset.org/train2017/000000483065.jpg", "width": 640, "height": 480, "caption": "The pizza is touching the person.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["pizza", "person"], "label_positions": [[4, 9], [26, 32]], "bboxes": [[0.0, 227.6, 640.0, 245.93], [196.31, 0.75, 340.86, 266.43]]}}
{"image_file": "000000509225.jpg", "image_link": "http://images.cocodataset.org/train2017/000000509225.jpg", "width": 480, "height": 640, "caption": "The zebra is under the person.", "label": 1, "relation": "under", "ref_exp": {"labels": ["zebra", "person"], "label_positions": [[4, 9], [23, 29]], "bboxes": [[4.96, 56.39, 464.7, 567.23], [1.44, 0.72, 170.09, 585.23]]}}
{"image_file": "000000134599.jpg", "image_link": "http://images.cocodataset.org/train2017/000000134599.jpg", "width": 640, "height": 480, "caption": "The person is touching the cake.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "cake"], "label_positions": [[4, 10], [27, 31]], "bboxes": [[5.93, 3.56, 425.48, 310.51], [132.97, 200.54, 325.41, 264.87]]}}
{"image_file": "000000129072.jpg", "image_link": "http://images.cocodataset.org/train2017/000000129072.jpg", "width": 427, "height": 640, "caption": "The chair is under the horse.", "label": 0, "relation": "under", "ref_exp": {"labels": ["chair", "horse"], "label_positions": [[4, 9], [23, 28]], "bboxes": [[331.7, 275.36, 71.57, 99.1], [88.09, 172.04, 267.01, 445.94]]}}
{"image_file": "000000076416.jpg", "image_link": "http://images.cocodataset.org/val2017/000000076416.jpg", "width": 640, "height": 480, "caption": "The bicycle is far away from the bus.", "label": 0, "relation": "far away from", "ref_exp": {"labels": ["bicycle", "bus"], "label_positions": [[4, 11], [33, 36]], "bboxes": [[84.48, 283.64, 28.88, 25.18], [116.39, 129.91, 450.48, 248.77]]}}
{"image_file": "000000330022.jpg", "image_link": "http://images.cocodataset.org/train2017/000000330022.jpg", "width": 500, "height": 375, "caption": "The dog is facing the cake.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["dog", "cake"], "label_positions": [[4, 7], [22, 26]], "bboxes": [[0.0, 233.05, 153.34, 138.15], [203.93, 42.62, 214.67, 222.32]]}}
{"image_file": "000000456143.jpg", "image_link": "http://images.cocodataset.org/val2017/000000456143.jpg", "width": 640, "height": 361, "caption": "The pizza is behind the sandwich.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["pizza", "sandwich"], "label_positions": [[4, 9], [24, 32]], "bboxes": [[1.62, 38.13, 405.62, 163.87], [301.24, 123.64, 302.85, 197.87]]}}
{"image_file": "000000025193.jpg", "image_link": "http://images.cocodataset.org/train2017/000000025193.jpg", "width": 500, "height": 375, "caption": "The keyboard is under the umbrella.", "label": 0, "relation": "under", "ref_exp": {"labels": ["keyboard", "umbrella"], "label_positions": [[4, 12], [26, 34]], "bboxes": [[0.0, 60.95, 451.19, 313.2], [290.78, 76.61, 163.97, 61.25]]}}
{"image_file": "000000115311.jpg", "image_link": "http://images.cocodataset.org/train2017/000000115311.jpg", "width": 640, "height": 480, "caption": "The handbag contains the cat.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["handbag", "cat"], "label_positions": [[4, 11], [25, 28]], "bboxes": [[0.0, 2.86, 640.0, 477.14], [226.06, 2.06, 396.39, 443.88]]}}
{"image_file": "000000268051.jpg", "image_link": "http://images.cocodataset.org/train2017/000000268051.jpg", "width": 480, "height": 640, "caption": "The dog is on the chair.", "label": 0, "relation": "on", "ref_exp": {"labels": ["dog", "chair"], "label_positions": [[4, 7], [18, 23]], "bboxes": [[55.37, 108.29, 222.78, 488.05], [220.04, 111.74, 259.96, 375.37]]}}
{"image_file": "000000214975.jpg", "image_link": "http://images.cocodataset.org/train2017/000000214975.jpg", "width": 640, "height": 427, "caption": "The cake is under the truck.", "label": 0, "relation": "under", "ref_exp": {"labels": ["cake", "truck"], "label_positions": [[4, 8], [22, 27]], "bboxes": [[34.68, 120.09, 529.87, 260.19], [42.22, 90.2, 548.86, 283.07]]}}
{"image_file": "000000043957.jpg", "image_link": "http://images.cocodataset.org/train2017/000000043957.jpg", "width": 433, "height": 500, "caption": "The cake is at the right side of the person.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["cake", "person"], "label_positions": [[4, 8], [37, 43]], "bboxes": [[33.49, 340.53, 350.92, 67.48], [121.35, 25.84, 288.76, 308.99]]}}
{"image_file": "000000039570.jpg", "image_link": "http://images.cocodataset.org/train2017/000000039570.jpg", "width": 640, "height": 480, "caption": "The hot dog is on the bench.", "label": 0, "relation": "on", "ref_exp": {"labels": ["hot dog", "bench"], "label_positions": [[4, 11], [22, 27]], "bboxes": [[268.54, 243.18, 33.78, 31.58], [118.39, 158.48, 521.14, 321.52]]}}
{"image_file": "000000121351.jpg", "image_link": "http://images.cocodataset.org/train2017/000000121351.jpg", "width": 612, "height": 612, "caption": "The donut is inside the car.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["donut", "car"], "label_positions": [[4, 9], [24, 27]], "bboxes": [[152.66, 387.83, 257.17, 206.29], [480.62, 48.59, 61.87, 43.0]]}}
{"image_file": "000000340220.jpg", "image_link": "http://images.cocodataset.org/train2017/000000340220.jpg", "width": 500, "height": 400, "caption": "The person is at the right side of the refrigerator.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["person", "refrigerator"], "label_positions": [[4, 10], [39, 51]], "bboxes": [[126.74, 26.97, 329.89, 366.74], [431.17, 84.16, 66.49, 309.61]]}}
{"image_file": "000000346112.jpg", "image_link": "http://images.cocodataset.org/train2017/000000346112.jpg", "width": 500, "height": 327, "caption": "The cat is next to the bed.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["cat", "bed"], "label_positions": [[4, 7], [23, 26]], "bboxes": [[0.0, 0.0, 499.64, 271.47], [1.47, 242.49, 498.53, 78.63]]}}
{"image_file": "000000075084.jpg", "image_link": "http://images.cocodataset.org/train2017/000000075084.jpg", "width": 640, "height": 480, "caption": "The cat is inside the suitcase.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["cat", "suitcase"], "label_positions": [[4, 7], [22, 30]], "bboxes": [[310.27, 133.51, 329.73, 185.95], [117.19, 187.89, 489.98, 285.5]]}}
{"image_file": "000000241312.jpg", "image_link": "http://images.cocodataset.org/train2017/000000241312.jpg", "width": 640, "height": 478, "caption": "The sandwich is at the right side of the bowl.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["sandwich", "bowl"], "label_positions": [[4, 12], [41, 45]], "bboxes": [[397.74, 278.54, 242.26, 191.2], [0.0, 159.44, 333.64, 250.22]]}}
{"image_file": "000000155777.jpg", "image_link": "http://images.cocodataset.org/train2017/000000155777.jpg", "width": 480, "height": 640, "caption": "The bird is far from the motorcycle.", "label": 1, "relation": "far from", "ref_exp": {"labels": ["bird", "motorcycle"], "label_positions": [[4, 8], [25, 35]], "bboxes": [[68.82, 139.01, 411.18, 269.76], [176.73, 100.14, 61.98, 58.21]]}}
{"image_file": "000000025860.jpg", "image_link": "http://images.cocodataset.org/train2017/000000025860.jpg", "width": 640, "height": 480, "caption": "The refrigerator is opposite to the dining table.", "label": 1, "relation": "opposite to", "ref_exp": {"labels": ["refrigerator", "dining table"], "label_positions": [[4, 16], [36, 48]], "bboxes": [[64.43, 268.56, 128.86, 170.74], [0.0, 336.22, 640.0, 138.37]]}}
{"image_file": "000000116461.jpg", "image_link": "http://images.cocodataset.org/train2017/000000116461.jpg", "width": 640, "height": 430, "caption": "The knife is under the pizza.", "label": 1, "relation": "under", "ref_exp": {"labels": ["knife", "pizza"], "label_positions": [[4, 9], [23, 28]], "bboxes": [[463.01, 0.0, 156.36, 81.63], [46.38, 36.72, 558.52, 362.36]]}}
{"image_file": "000000130872.jpg", "image_link": "http://images.cocodataset.org/train2017/000000130872.jpg", "width": 500, "height": 375, "caption": "The person is touching the dog.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "dog"], "label_positions": [[4, 10], [27, 30]], "bboxes": [[0.0, 286.99, 173.12, 88.01], [15.18, 10.25, 484.82, 361.33]]}}
{"image_file": "000000053550.jpg", "image_link": "http://images.cocodataset.org/train2017/000000053550.jpg", "width": 640, "height": 426, "caption": "The train is by the person.", "label": 1, "relation": "by", "ref_exp": {"labels": ["train", "person"], "label_positions": [[4, 9], [20, 26]], "bboxes": [[222.09, 246.98, 417.91, 67.02], [0.0, 72.43, 274.47, 348.49]]}}
{"image_file": "000000149551.jpg", "image_link": "http://images.cocodataset.org/train2017/000000149551.jpg", "width": 640, "height": 480, "caption": "The bus is in front of the elephant.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["bus", "elephant"], "label_positions": [[4, 7], [27, 35]], "bboxes": [[506.97, 40.99, 81.97, 125.12], [108.11, 8.11, 485.4, 464.86]]}}
{"image_file": "000000120907.jpg", "image_link": "http://images.cocodataset.org/train2017/000000120907.jpg", "width": 500, "height": 375, "caption": "The banana is inside the person.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["banana", "person"], "label_positions": [[4, 10], [25, 31]], "bboxes": [[115.59, 5.29, 258.53, 365.3], [0.0, 1.54, 387.64, 369.95]]}}
{"image_file": "000000473779.jpg", "image_link": "http://images.cocodataset.org/train2017/000000473779.jpg", "width": 640, "height": 480, "caption": "The teddy bear is right of the umbrella.", "label": 1, "relation": "right of", "ref_exp": {"labels": ["teddy bear", "umbrella"], "label_positions": [[4, 14], [31, 39]], "bboxes": [[393.71, 77.06, 189.84, 303.3], [228.1, 139.57, 95.18, 257.75]]}}
{"image_file": "000000340988.jpg", "image_link": "http://images.cocodataset.org/train2017/000000340988.jpg", "width": 639, "height": 640, "caption": "The dog is touching the bowl.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["dog", "bowl"], "label_positions": [[4, 7], [24, 28]], "bboxes": [[1.29, 0.0, 632.25, 414.64], [0.0, 234.23, 462.7, 399.28]]}}
{"image_file": "000000336668.jpg", "image_link": "http://images.cocodataset.org/train2017/000000336668.jpg", "width": 508, "height": 640, "caption": "The suitcase is touching the teddy bear.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["suitcase", "teddy bear"], "label_positions": [[4, 12], [29, 39]], "bboxes": [[47.46, 181.21, 381.12, 450.16], [179.45, 244.54, 255.34, 219.92]]}}
{"image_file": "000000174070.jpg", "image_link": "http://images.cocodataset.org/train2017/000000174070.jpg", "width": 640, "height": 480, "caption": "The cell phone is on the teddy bear.", "label": 1, "relation": "on", "ref_exp": {"labels": ["cell phone", "teddy bear"], "label_positions": [[4, 14], [25, 35]], "bboxes": [[7.65, 238.37, 175.8, 220.12], [3.24, 31.1, 407.73, 444.41]]}}
{"image_file": "000000071784.jpg", "image_link": "http://images.cocodataset.org/train2017/000000071784.jpg", "width": 640, "height": 425, "caption": "The apple is on top of the dining table.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["apple", "dining table"], "label_positions": [[4, 9], [27, 39]], "bboxes": [[314.48, 72.09, 298.4, 283.33], [0.0, 239.08, 639.07, 181.55]]}}
{"image_file": "000000256533.jpg", "image_link": "http://images.cocodataset.org/train2017/000000256533.jpg", "width": 612, "height": 612, "caption": "The suitcase is in front of the bed.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["suitcase", "bed"], "label_positions": [[4, 12], [32, 35]], "bboxes": [[257.18, 112.77, 334.19, 349.32], [116.04, 15.9, 402.17, 112.86]]}}
{"image_file": "000000189770.jpg", "image_link": "http://images.cocodataset.org/train2017/000000189770.jpg", "width": 480, "height": 640, "caption": "The truck contains the elephant.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["truck", "elephant"], "label_positions": [[4, 9], [23, 31]], "bboxes": [[39.93, 123.97, 290.24, 378.76], [119.37, 151.11, 185.53, 189.84]]}}
{"image_file": "000000536879.jpg", "image_link": "http://images.cocodataset.org/train2017/000000536879.jpg", "width": 612, "height": 612, "caption": "The cell phone is facing the laptop.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["cell phone", "laptop"], "label_positions": [[4, 14], [29, 35]], "bboxes": [[263.63, 288.3, 59.24, 50.15], [158.16, 422.21, 430.46, 182.91]]}}
{"image_file": "000000370493.jpg", "image_link": "http://images.cocodataset.org/train2017/000000370493.jpg", "width": 640, "height": 427, "caption": "The dog is behind the bench.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["dog", "bench"], "label_positions": [[4, 7], [22, 27]], "bboxes": [[0.0, 237.87, 107.51, 98.63], [0.96, 122.55, 631.88, 299.66]]}}
{"image_file": "000000432468.jpg", "image_link": "http://images.cocodataset.org/val2017/000000432468.jpg", "width": 427, "height": 640, "caption": "The cat is on top of the suitcase.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "suitcase"], "label_positions": [[4, 7], [25, 33]], "bboxes": [[0.0, 31.64, 368.18, 199.91], [1.44, 262.95, 424.27, 368.18]]}}
{"image_file": "000000137016.jpg", "image_link": "http://images.cocodataset.org/train2017/000000137016.jpg", "width": 640, "height": 480, "caption": "The dog is beneath the bed.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["dog", "bed"], "label_positions": [[4, 7], [23, 26]], "bboxes": [[126.06, 256.0, 241.46, 91.15], [0.0, 1.35, 547.96, 280.45]]}}
{"image_file": "000000533206.jpg", "image_link": "http://images.cocodataset.org/val2017/000000533206.jpg", "width": 640, "height": 427, "caption": "The sandwich is in front of the bowl.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["sandwich", "bowl"], "label_positions": [[4, 12], [32, 36]], "bboxes": [[110.1, 125.04, 312.11, 224.03], [398.34, 150.07, 175.77, 141.38]]}}
{"image_file": "000000104130.jpg", "image_link": "http://images.cocodataset.org/train2017/000000104130.jpg", "width": 640, "height": 367, "caption": "The bowl is connected to the bird.", "label": 0, "relation": "connected to", "ref_exp": {"labels": ["bowl", "bird"], "label_positions": [[4, 8], [29, 33]], "bboxes": [[242.0, 282.8, 301.41, 84.2], [32.22, 78.7, 543.03, 278.98]]}}
{"image_file": "000000528047.jpg", "image_link": "http://images.cocodataset.org/train2017/000000528047.jpg", "width": 427, "height": 640, "caption": "The person is on the couch.", "label": 0, "relation": "on", "ref_exp": {"labels": ["person", "couch"], "label_positions": [[4, 10], [21, 26]], "bboxes": [[30.2, 67.6, 362.43, 382.56], [45.22, 301.63, 161.72, 139.79]]}}
{"image_file": "000000436707.jpg", "image_link": "http://images.cocodataset.org/train2017/000000436707.jpg", "width": 500, "height": 374, "caption": "The truck contains the refrigerator.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["truck", "refrigerator"], "label_positions": [[4, 9], [23, 35]], "bboxes": [[428.16, 76.66, 71.84, 133.64], [305.08, 15.97, 160.53, 291.63]]}}
{"image_file": "000000172681.jpg", "image_link": "http://images.cocodataset.org/train2017/000000172681.jpg", "width": 640, "height": 480, "caption": "The elephant is left of the car.", "label": 1, "relation": "left of", "ref_exp": {"labels": ["elephant", "car"], "label_positions": [[4, 12], [28, 31]], "bboxes": [[292.97, 135.68, 228.11, 323.24], [582.04, 238.68, 57.96, 40.35]]}}
{"image_file": "000000131815.jpg", "image_link": "http://images.cocodataset.org/train2017/000000131815.jpg", "width": 640, "height": 640, "caption": "The banana is inside the person.", "label": 1, "relation": "inside", "ref_exp": {"labels": ["banana", "person"], "label_positions": [[4, 10], [25, 31]], "bboxes": [[320.0, 333.06, 139.19, 170.76], [7.19, 48.9, 506.25, 581.03]]}}
{"image_file": "000000126808.jpg", "image_link": "http://images.cocodataset.org/train2017/000000126808.jpg", "width": 640, "height": 480, "caption": "The dining table is on the sandwich.", "label": 0, "relation": "on", "ref_exp": {"labels": ["dining table", "sandwich"], "label_positions": [[4, 16], [27, 35]], "bboxes": [[0.0, 15.1, 638.56, 450.88], [372.62, 169.77, 262.01, 277.05]]}}
{"image_file": "000000410772.jpg", "image_link": "http://images.cocodataset.org/train2017/000000410772.jpg", "width": 500, "height": 375, "caption": "The pizza is off the couch.", "label": 1, "relation": "off", "ref_exp": {"labels": ["pizza", "couch"], "label_positions": [[4, 9], [21, 26]], "bboxes": [[161.8, 171.65, 75.0, 54.78], [0.0, 34.28, 500.0, 340.4]]}}
{"image_file": "000000091057.jpg", "image_link": "http://images.cocodataset.org/train2017/000000091057.jpg", "width": 480, "height": 640, "caption": "The dog is next to the pizza.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["dog", "pizza"], "label_positions": [[4, 7], [23, 28]], "bboxes": [[146.1, 70.72, 258.59, 296.08], [135.19, 192.72, 220.05, 240.18]]}}
{"image_file": "000000030815.jpg", "image_link": "http://images.cocodataset.org/train2017/000000030815.jpg", "width": 640, "height": 427, "caption": "The teddy bear is on top of the book.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["teddy bear", "book"], "label_positions": [[4, 14], [32, 36]], "bboxes": [[182.73, 49.05, 383.72, 354.87], [312.81, 202.53, 119.95, 142.01]]}}
{"image_file": "000000560242.jpg", "image_link": "http://images.cocodataset.org/train2017/000000560242.jpg", "width": 500, "height": 468, "caption": "The bird is in the tv.", "label": 1, "relation": "in", "ref_exp": {"labels": ["bird", "tv"], "label_positions": [[4, 8], [19, 21]], "bboxes": [[162.34, 57.14, 46.58, 55.24], [3.17, 1.59, 347.33, 221.41]]}}
{"image_file": "000000168317.jpg", "image_link": "http://images.cocodataset.org/train2017/000000168317.jpg", "width": 640, "height": 519, "caption": "The motorcycle is under the dog.", "label": 0, "relation": "under", "ref_exp": {"labels": ["motorcycle", "dog"], "label_positions": [[4, 14], [28, 31]], "bboxes": [[68.5, 0.11, 523.65, 372.71], [16.78, 199.21, 421.49, 283.09]]}}
{"image_file": "000000510644.jpg", "image_link": "http://images.cocodataset.org/train2017/000000510644.jpg", "width": 640, "height": 459, "caption": "The apple is under the bird.", "label": 1, "relation": "under", "ref_exp": {"labels": ["apple", "bird"], "label_positions": [[4, 9], [23, 27]], "bboxes": [[155.52, 213.84, 297.0, 239.76], [199.39, 157.94, 379.05, 199.39]]}}
{"image_file": "000000149551.jpg", "image_link": "http://images.cocodataset.org/train2017/000000149551.jpg", "width": 640, "height": 480, "caption": "The elephant is in front of the car.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["elephant", "car"], "label_positions": [[4, 12], [32, 35]], "bboxes": [[108.11, 8.11, 485.4, 464.86], [584.92, 121.52, 55.08, 50.04]]}}
{"image_file": "000000014757.jpg", "image_link": "http://images.cocodataset.org/train2017/000000014757.jpg", "width": 640, "height": 480, "caption": "The car contains the dog.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["car", "dog"], "label_positions": [[4, 7], [21, 24]], "bboxes": [[0.0, 99.51, 640.0, 376.45], [0.97, 2.85, 236.13, 349.36]]}}
{"image_file": "000000542776.jpg", "image_link": "http://images.cocodataset.org/val2017/000000542776.jpg", "width": 640, "height": 426, "caption": "The bed is beneath the person.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["bed", "person"], "label_positions": [[4, 7], [23, 29]], "bboxes": [[392.57, 3.44, 247.39, 235.92], [246.03, 197.2, 393.97, 224.01]]}}
{"image_file": "000000250951.jpg", "image_link": "http://images.cocodataset.org/train2017/000000250951.jpg", "width": 640, "height": 480, "caption": "The handbag contains the cat.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["handbag", "cat"], "label_positions": [[4, 11], [25, 28]], "bboxes": [[194.6, 74.64, 278.43, 298.97], [0.0, 90.61, 299.87, 384.0]]}}
{"image_file": "000000435026.jpg", "image_link": "http://images.cocodataset.org/train2017/000000435026.jpg", "width": 375, "height": 500, "caption": "The teddy bear is touching the bed.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["teddy bear", "bed"], "label_positions": [[4, 14], [31, 34]], "bboxes": [[2.25, 25.84, 353.93, 428.09], [0.0, 0.0, 375.0, 492.21]]}}
{"image_file": "000000042418.jpg", "image_link": "http://images.cocodataset.org/train2017/000000042418.jpg", "width": 427, "height": 640, "caption": "The chair is under the person.", "label": 0, "relation": "under", "ref_exp": {"labels": ["chair", "person"], "label_positions": [[4, 9], [23, 29]], "bboxes": [[366.8, 215.93, 33.35, 49.02], [103.09, 23.05, 323.91, 556.95]]}}
{"image_file": "000000545323.jpg", "image_link": "http://images.cocodataset.org/train2017/000000545323.jpg", "width": 500, "height": 333, "caption": "The dog is beneath the bench.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["dog", "bench"], "label_positions": [[4, 7], [23, 28]], "bboxes": [[160.78, 103.6, 339.22, 229.4], [119.46, 51.97, 380.04, 276.25]]}}
{"image_file": "000000069928.jpg", "image_link": "http://images.cocodataset.org/train2017/000000069928.jpg", "width": 480, "height": 640, "caption": "The potted plant is left of the elephant.", "label": 1, "relation": "left of", "ref_exp": {"labels": ["potted plant", "elephant"], "label_positions": [[4, 16], [32, 40]], "bboxes": [[104.99, 330.79, 243.76, 309.21], [119.37, 171.15, 205.66, 198.47]]}}
{"image_file": "000000334947.jpg", "image_link": "http://images.cocodataset.org/train2017/000000334947.jpg", "width": 640, "height": 478, "caption": "The bowl is next to the hot dog.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["bowl", "hot dog"], "label_positions": [[4, 8], [24, 31]], "bboxes": [[314.73, 77.61, 325.27, 389.92], [17.19, 85.93, 216.98, 324.4]]}}
{"image_file": "000000344802.jpg", "image_link": "http://images.cocodataset.org/train2017/000000344802.jpg", "width": 375, "height": 500, "caption": "The donut is touching the cup.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["donut", "cup"], "label_positions": [[4, 9], [26, 29]], "bboxes": [[155.06, 321.35, 166.29, 126.96], [53.81, 69.06, 182.74, 313.9]]}}
{"image_file": "000000099619.jpg", "image_link": "http://images.cocodataset.org/train2017/000000099619.jpg", "width": 480, "height": 640, "caption": "The zebra is beside the person.", "label": 1, "relation": "beside", "ref_exp": {"labels": ["zebra", "person"], "label_positions": [[4, 9], [24, 30]], "bboxes": [[221.92, 170.5, 165.9, 446.35], [43.15, 63.04, 208.54, 569.53]]}}
{"image_file": "000000073197.jpg", "image_link": "http://images.cocodataset.org/train2017/000000073197.jpg", "width": 480, "height": 640, "caption": "The bear is facing the teddy bear.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["bear", "teddy bear"], "label_positions": [[4, 8], [23, 33]], "bboxes": [[0.0, 0.0, 480.0, 640.0], [0.0, 2.87, 480.0, 629.96]]}}
{"image_file": "000000221932.jpg", "image_link": "http://images.cocodataset.org/train2017/000000221932.jpg", "width": 640, "height": 480, "caption": "The pizza is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["pizza", "person"], "label_positions": [[4, 9], [26, 32]], "bboxes": [[396.45, 169.9, 144.51, 42.15], [217.89, 2.43, 421.75, 472.45]]}}
{"image_file": "000000132000.jpg", "image_link": "http://images.cocodataset.org/train2017/000000132000.jpg", "width": 640, "height": 480, "caption": "The bowl is beyond the banana.", "label": 1, "relation": "beyond", "ref_exp": {"labels": ["bowl", "banana"], "label_positions": [[4, 8], [23, 29]], "bboxes": [[145.27, 159.24, 146.45, 40.21], [10.79, 238.2, 506.96, 114.34]]}}
{"image_file": "000000425807.jpg", "image_link": "http://images.cocodataset.org/train2017/000000425807.jpg", "width": 640, "height": 480, "caption": "The zebra is facing the person.", "label": 1, "relation": "facing", "ref_exp": {"labels": ["zebra", "person"], "label_positions": [[4, 9], [24, 30]], "bboxes": [[254.5, 57.02, 376.91, 298.52], [1.08, 0.27, 279.37, 385.08]]}}
{"image_file": "000000279199.jpg", "image_link": "http://images.cocodataset.org/train2017/000000279199.jpg", "width": 640, "height": 480, "caption": "The bowl is in front of the sandwich.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["bowl", "sandwich"], "label_positions": [[4, 8], [28, 36]], "bboxes": [[0.0, 8.63, 192.0, 136.99], [97.94, 77.43, 419.73, 325.03]]}}
{"image_file": "000000172434.jpg", "image_link": "http://images.cocodataset.org/train2017/000000172434.jpg", "width": 428, "height": 640, "caption": "The person is behind the cow.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["person", "cow"], "label_positions": [[4, 10], [25, 28]], "bboxes": [[264.63, 45.78, 163.37, 585.35], [0.0, 188.4, 342.29, 444.41]]}}
{"image_file": "000000402297.jpg", "image_link": "http://images.cocodataset.org/train2017/000000402297.jpg", "width": 640, "height": 481, "caption": "The dog is in the middle of the bus.", "label": 1, "relation": "in the middle of", "ref_exp": {"labels": ["dog", "bus"], "label_positions": [[4, 7], [32, 35]], "bboxes": [[175.53, 143.52, 200.74, 320.99], [32.57, 5.16, 607.43, 469.05]]}}
{"image_file": "000000299773.jpg", "image_link": "http://images.cocodataset.org/train2017/000000299773.jpg", "width": 640, "height": 480, "caption": "The bed is touching the teddy bear.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["bed", "teddy bear"], "label_positions": [[4, 7], [24, 34]], "bboxes": [[2.16, 10.22, 291.23, 468.13], [213.57, 56.09, 360.27, 365.66]]}}
{"image_file": "000000246233.jpg", "image_link": "http://images.cocodataset.org/train2017/000000246233.jpg", "width": 640, "height": 583, "caption": "The boat is part of the truck.", "label": 0, "relation": "part of", "ref_exp": {"labels": ["boat", "truck"], "label_positions": [[4, 8], [24, 29]], "bboxes": [[28.82, 49.78, 554.18, 487.37], [607.65, 332.2, 32.35, 28.03]]}}
{"image_file": "000000141376.jpg", "image_link": "http://images.cocodataset.org/train2017/000000141376.jpg", "width": 640, "height": 480, "caption": "The refrigerator is below the cat.", "label": 0, "relation": "below", "ref_exp": {"labels": ["refrigerator", "cat"], "label_positions": [[4, 16], [30, 33]], "bboxes": [[1.08, 0.27, 638.92, 221.12], [97.03, 119.74, 542.97, 260.13]]}}
{"image_file": "000000040497.jpg", "image_link": "http://images.cocodataset.org/train2017/000000040497.jpg", "width": 640, "height": 480, "caption": "The car is near the motorcycle.", "label": 0, "relation": "near", "ref_exp": {"labels": ["car", "motorcycle"], "label_positions": [[4, 7], [20, 30]], "bboxes": [[0.0, 232.66, 346.73, 240.56], [360.72, 234.62, 22.56, 39.56]]}}
{"image_file": "000000249644.jpg", "image_link": "http://images.cocodataset.org/train2017/000000249644.jpg", "width": 640, "height": 426, "caption": "The cat is behind the carrot.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["cat", "carrot"], "label_positions": [[4, 7], [22, 28]], "bboxes": [[1.83, 0.0, 582.32, 348.3], [2.01, 278.81, 590.77, 142.67]]}}
{"image_file": "000000103566.jpg", "image_link": "http://images.cocodataset.org/train2017/000000103566.jpg", "width": 640, "height": 428, "caption": "The person is at the right side of the donut.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["person", "donut"], "label_positions": [[4, 10], [39, 44]], "bboxes": [[0.0, 43.3, 270.9, 344.42], [176.97, 23.08, 317.39, 279.89]]}}
{"image_file": "000000146881.jpg", "image_link": "http://images.cocodataset.org/train2017/000000146881.jpg", "width": 640, "height": 424, "caption": "The parking meter is in front of the bus.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["parking meter", "bus"], "label_positions": [[4, 17], [37, 40]], "bboxes": [[583.61, 219.27, 11.28, 29.37], [88.61, 94.33, 364.93, 277.27]]}}
{"image_file": "000000318723.jpg", "image_link": "http://images.cocodataset.org/train2017/000000318723.jpg", "width": 500, "height": 375, "caption": "The backpack is beneath the cat.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["backpack", "cat"], "label_positions": [[4, 12], [28, 31]], "bboxes": [[109.9, 0.0, 389.26, 313.48], [192.18, 165.14, 108.58, 55.94]]}}
{"image_file": "000000126810.jpg", "image_link": "http://images.cocodataset.org/train2017/000000126810.jpg", "width": 640, "height": 480, "caption": "The toilet contains the cat.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["toilet", "cat"], "label_positions": [[4, 10], [24, 27]], "bboxes": [[1.08, 0.0, 489.71, 474.61], [217.89, 106.79, 393.71, 277.21]]}}
{"image_file": "000000515186.jpg", "image_link": "http://images.cocodataset.org/train2017/000000515186.jpg", "width": 640, "height": 359, "caption": "The person is with the cow.", "label": 0, "relation": "with", "ref_exp": {"labels": ["person", "cow"], "label_positions": [[4, 10], [23, 26]], "bboxes": [[0.0, 46.9, 194.86, 306.44], [432.34, 153.64, 207.66, 201.5]]}}
{"image_file": "000000230934.jpg", "image_link": "http://images.cocodataset.org/train2017/000000230934.jpg", "width": 640, "height": 508, "caption": "The banana is enclosed by the car.", "label": 1, "relation": "enclosed by", "ref_exp": {"labels": ["banana", "car"], "label_positions": [[4, 10], [30, 33]], "bboxes": [[127.35, 294.8, 341.28, 143.95], [0.0, 3.56, 640.0, 494.8]]}}
{"image_file": "000000494895.jpg", "image_link": "http://images.cocodataset.org/train2017/000000494895.jpg", "width": 608, "height": 640, "caption": "The cat is in the sink.", "label": 0, "relation": "in", "ref_exp": {"labels": ["cat", "sink"], "label_positions": [[4, 7], [18, 22]], "bboxes": [[324.12, 162.88, 255.45, 335.11], [2.88, 244.25, 358.11, 204.23]]}}
{"image_file": "000000138276.jpg", "image_link": "http://images.cocodataset.org/train2017/000000138276.jpg", "width": 640, "height": 427, "caption": "The person is at the left side of the bed.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["person", "bed"], "label_positions": [[4, 10], [38, 41]], "bboxes": [[186.1, 88.42, 130.91, 137.61], [0.96, 64.96, 639.04, 355.99]]}}
{"image_file": "000000303069.jpg", "image_link": "http://images.cocodataset.org/train2017/000000303069.jpg", "width": 640, "height": 485, "caption": "The bicycle is behind the couch.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["bicycle", "couch"], "label_positions": [[4, 11], [26, 31]], "bboxes": [[117.88, 162.14, 251.47, 65.93], [2.09, 188.78, 537.15, 291.0]]}}
{"image_file": "000000347121.jpg", "image_link": "http://images.cocodataset.org/train2017/000000347121.jpg", "width": 640, "height": 480, "caption": "The banana is in the middle of the person.", "label": 0, "relation": "in the middle of", "ref_exp": {"labels": ["banana", "person"], "label_positions": [[4, 10], [35, 41]], "bboxes": [[87.48, 47.43, 317.38, 405.99], [0.0, 11.87, 309.57, 231.91]]}}
{"image_file": "000000482127.jpg", "image_link": "http://images.cocodataset.org/train2017/000000482127.jpg", "width": 640, "height": 480, "caption": "The bird is on top of the book.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["bird", "book"], "label_positions": [[4, 8], [26, 30]], "bboxes": [[171.65, 20.66, 240.51, 212.76], [0.0, 68.71, 639.64, 403.42]]}}
{"image_file": "000000057550.jpg", "image_link": "http://images.cocodataset.org/train2017/000000057550.jpg", "width": 640, "height": 426, "caption": "The horse is right of the person.", "label": 1, "relation": "right of", "ref_exp": {"labels": ["horse", "person"], "label_positions": [[4, 9], [26, 32]], "bboxes": [[42.97, 74.6, 366.58, 225.79], [51.69, 104.59, 451.85, 299.63]]}}
{"image_file": "000000129262.jpg", "image_link": "http://images.cocodataset.org/train2017/000000129262.jpg", "width": 480, "height": 640, "caption": "The zebra is in front of the person.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["zebra", "person"], "label_positions": [[4, 9], [29, 35]], "bboxes": [[266.07, 182.65, 213.93, 378.25], [1.44, 94.92, 238.74, 536.45]]}}
{"image_file": "000000125407.jpg", "image_link": "http://images.cocodataset.org/train2017/000000125407.jpg", "width": 612, "height": 612, "caption": "The motorcycle is in front of the dining table.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["motorcycle", "dining table"], "label_positions": [[4, 14], [34, 46]], "bboxes": [[190.8, 0.0, 154.27, 105.69], [0.0, 119.26, 612.0, 486.89]]}}
{"image_file": "000000510103.jpg", "image_link": "http://images.cocodataset.org/train2017/000000510103.jpg", "width": 480, "height": 640, "caption": "The person is close to the cake.", "label": 0, "relation": "close to", "ref_exp": {"labels": ["person", "cake"], "label_positions": [[4, 10], [27, 31]], "bboxes": [[70.92, 330.73, 28.65, 67.31], [58.97, 8.63, 359.55, 507.68]]}}
{"image_file": "000000249644.jpg", "image_link": "http://images.cocodataset.org/train2017/000000249644.jpg", "width": 640, "height": 426, "caption": "The cat is touching the carrot.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cat", "carrot"], "label_positions": [[4, 7], [24, 30]], "bboxes": [[1.83, 0.0, 582.32, 348.3], [2.01, 278.81, 590.77, 142.67]]}}
{"image_file": "000000266275.jpg", "image_link": "http://images.cocodataset.org/train2017/000000266275.jpg", "width": 629, "height": 640, "caption": "The chair is across from the bed.", "label": 1, "relation": "across from", "ref_exp": {"labels": ["chair", "bed"], "label_positions": [[4, 9], [29, 32]], "bboxes": [[329.23, 217.18, 239.06, 250.15], [6.65, 322.22, 212.78, 310.85]]}}
{"image_file": "000000070474.jpg", "image_link": "http://images.cocodataset.org/train2017/000000070474.jpg", "width": 640, "height": 427, "caption": "The tv is above the laptop.", "label": 0, "relation": "above", "ref_exp": {"labels": ["tv", "laptop"], "label_positions": [[4, 6], [20, 26]], "bboxes": [[133.44, 5.0, 319.14, 214.62], [0.96, 0.0, 423.16, 321.45]]}}
{"image_file": "000000567914.jpg", "image_link": "http://images.cocodataset.org/train2017/000000567914.jpg", "width": 640, "height": 631, "caption": "The pizza is at the edge of the dining table.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["pizza", "dining table"], "label_positions": [[4, 9], [32, 44]], "bboxes": [[65.33, 71.27, 561.22, 485.49], [26.88, 0.0, 613.12, 631.0]]}}
{"image_file": "000000241490.jpg", "image_link": "http://images.cocodataset.org/train2017/000000241490.jpg", "width": 500, "height": 375, "caption": "The bowl is behind the person.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["bowl", "person"], "label_positions": [[4, 8], [23, 29]], "bboxes": [[346.39, 202.69, 46.73, 17.81], [6.76, 63.34, 461.15, 307.44]]}}
{"image_file": "000000562574.jpg", "image_link": "http://images.cocodataset.org/train2017/000000562574.jpg", "width": 640, "height": 480, "caption": "The dog is on the chair.", "label": 1, "relation": "on", "ref_exp": {"labels": ["dog", "chair"], "label_positions": [[4, 7], [18, 23]], "bboxes": [[109.82, 156.69, 372.07, 256.91], [42.26, 125.42, 323.97, 347.81]]}}
{"image_file": "000000189436.jpg", "image_link": "http://images.cocodataset.org/val2017/000000189436.jpg", "width": 480, "height": 640, "caption": "The teddy bear is facing the dining table.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["teddy bear", "dining table"], "label_positions": [[4, 14], [29, 41]], "bboxes": [[2.88, 56.09, 378.24, 558.02], [1.44, 415.64, 478.56, 218.61]]}}
{"image_file": "000000055389.jpg", "image_link": "http://images.cocodataset.org/train2017/000000055389.jpg", "width": 640, "height": 416, "caption": "The person is alongside the teddy bear.", "label": 0, "relation": "alongside", "ref_exp": {"labels": ["person", "teddy bear"], "label_positions": [[4, 10], [28, 38]], "bboxes": [[59.7, 249.15, 416.0, 159.5], [161.15, 29.05, 322.31, 374.77]]}}
{"image_file": "000000519688.jpg", "image_link": "http://images.cocodataset.org/val2017/000000519688.jpg", "width": 521, "height": 640, "caption": "The bear is facing the person.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["bear", "person"], "label_positions": [[4, 8], [23, 29]], "bboxes": [[2.22, 313.54, 326.57, 324.74], [38.92, 41.08, 482.08, 590.99]]}}
{"image_file": "000000158601.jpg", "image_link": "http://images.cocodataset.org/train2017/000000158601.jpg", "width": 640, "height": 464, "caption": "The suitcase is under the cat.", "label": 0, "relation": "under", "ref_exp": {"labels": ["suitcase", "cat"], "label_positions": [[4, 12], [26, 29]], "bboxes": [[1.04, 105.14, 536.99, 350.34], [8.98, 14.97, 458.01, 134.71]]}}
{"image_file": "000000224670.jpg", "image_link": "http://images.cocodataset.org/train2017/000000224670.jpg", "width": 640, "height": 480, "caption": "The train is next to the laptop.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["train", "laptop"], "label_positions": [[4, 9], [25, 31]], "bboxes": [[0.0, 96.31, 617.99, 93.17], [12.94, 20.49, 481.08, 448.72]]}}
{"image_file": "000000169365.jpg", "image_link": "http://images.cocodataset.org/train2017/000000169365.jpg", "width": 640, "height": 480, "caption": "The cat is in the sink.", "label": 1, "relation": "in", "ref_exp": {"labels": ["cat", "sink"], "label_positions": [[4, 7], [18, 22]], "bboxes": [[298.75, 39.38, 210.0, 318.75], [12.35, 123.03, 576.0, 350.56]]}}
{"image_file": "000000540868.jpg", "image_link": "http://images.cocodataset.org/train2017/000000540868.jpg", "width": 640, "height": 480, "caption": "The person is at the left side of the couch.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["person", "couch"], "label_positions": [[4, 10], [38, 43]], "bboxes": [[59.33, 0.0, 478.92, 405.57], [0.0, 1.28, 460.8, 468.48]]}}
{"image_file": "000000078339.jpg", "image_link": "http://images.cocodataset.org/train2017/000000078339.jpg", "width": 640, "height": 427, "caption": "The cat is on the dining table.", "label": 0, "relation": "on", "ref_exp": {"labels": ["cat", "dining table"], "label_positions": [[4, 7], [18, 30]], "bboxes": [[146.15, 128.1, 394.53, 294.22], [0.0, 0.0, 160.48, 427.0]]}}
{"image_file": "000000092464.jpg", "image_link": "http://images.cocodataset.org/train2017/000000092464.jpg", "width": 640, "height": 428, "caption": "The dining table is at the left side of the teddy bear.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["dining table", "teddy bear"], "label_positions": [[4, 16], [44, 54]], "bboxes": [[1.11, 181.21, 638.89, 246.79], [43.28, 58.67, 368.37, 347.21]]}}
{"image_file": "000000275449.jpg", "image_link": "http://images.cocodataset.org/train2017/000000275449.jpg", "width": 640, "height": 480, "caption": "The cat is behind the wine glass.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["cat", "wine glass"], "label_positions": [[4, 7], [22, 32]], "bboxes": [[99.52, 10.11, 416.77, 250.88], [239.46, 103.19, 287.79, 370.47]]}}
{"image_file": "000000016458.jpg", "image_link": "http://images.cocodataset.org/train2017/000000016458.jpg", "width": 375, "height": 500, "caption": "The surfboard is parallel to the bed.", "label": 0, "relation": "parallel to", "ref_exp": {"labels": ["surfboard", "bed"], "label_positions": [[4, 13], [33, 36]], "bboxes": [[70.38, 0.58, 284.98, 496.43], [226.35, 273.09, 148.65, 220.72]]}}
{"image_file": "000000239536.jpg", "image_link": "http://images.cocodataset.org/train2017/000000239536.jpg", "width": 640, "height": 426, "caption": "The person is against the couch.", "label": 1, "relation": "against", "ref_exp": {"labels": ["person", "couch"], "label_positions": [[4, 10], [26, 31]], "bboxes": [[187.63, 14.07, 304.42, 402.06], [445.24, 43.06, 194.76, 382.94]]}}
{"image_file": "000000530321.jpg", "image_link": "http://images.cocodataset.org/train2017/000000530321.jpg", "width": 480, "height": 640, "caption": "The car is behind the teddy bear.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["car", "teddy bear"], "label_positions": [[4, 7], [22, 32]], "bboxes": [[24.39, 0.0, 454.89, 279.25], [96.58, 74.95, 344.5, 383.43]]}}
{"image_file": "000000358970.jpg", "image_link": "http://images.cocodataset.org/train2017/000000358970.jpg", "width": 640, "height": 426, "caption": "The laptop is at the right side of the bed.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["laptop", "bed"], "label_positions": [[4, 10], [39, 42]], "bboxes": [[21.06, 1.76, 260.39, 213.47], [7.64, 47.76, 632.36, 372.51]]}}
{"image_file": "000000087871.jpg", "image_link": "http://images.cocodataset.org/train2017/000000087871.jpg", "width": 640, "height": 480, "caption": "The cat is on top of the person.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "person"], "label_positions": [[4, 7], [25, 31]], "bboxes": [[3.22, 236.35, 239.46, 236.24], [0.0, 343.77, 362.43, 130.51]]}}
{"image_file": "000000017312.jpg", "image_link": "http://images.cocodataset.org/train2017/000000017312.jpg", "width": 640, "height": 480, "caption": "The person is touching the sandwich.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "sandwich"], "label_positions": [[4, 10], [27, 35]], "bboxes": [[0.0, 270.62, 443.33, 209.38], [26.97, 109.69, 475.68, 220.05]]}}
{"image_file": "000000318355.jpg", "image_link": "http://images.cocodataset.org/train2017/000000318355.jpg", "width": 640, "height": 480, "caption": "The laptop is at the edge of the dining table.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["laptop", "dining table"], "label_positions": [[4, 10], [33, 45]], "bboxes": [[124.32, 224.32, 273.52, 169.73], [0.0, 359.46, 525.41, 109.19]]}}
{"image_file": "000000393286.jpg", "image_link": "http://images.cocodataset.org/train2017/000000393286.jpg", "width": 480, "height": 640, "caption": "The banana is above the handbag.", "label": 0, "relation": "above", "ref_exp": {"labels": ["banana", "handbag"], "label_positions": [[4, 10], [24, 31]], "bboxes": [[49.35, 138.01, 324.48, 466.55], [186.18, 51.53, 241.04, 284.26]]}}
{"image_file": "000000419401.jpg", "image_link": "http://images.cocodataset.org/train2017/000000419401.jpg", "width": 640, "height": 480, "caption": "The bicycle is off the train.", "label": 0, "relation": "off", "ref_exp": {"labels": ["bicycle", "train"], "label_positions": [[4, 11], [23, 28]], "bboxes": [[44.96, 89.56, 394.57, 315.87], [4.3, 22.6, 632.83, 453.96]]}}
{"image_file": "000000237853.jpg", "image_link": "http://images.cocodataset.org/train2017/000000237853.jpg", "width": 640, "height": 426, "caption": "The tv is adjacent to the laptop.", "label": 1, "relation": "adjacent to", "ref_exp": {"labels": ["tv", "laptop"], "label_positions": [[4, 6], [26, 32]], "bboxes": [[52.01, 27.66, 250.06, 162.66], [284.95, 40.66, 284.96, 182.98]]}}
{"image_file": "000000310150.jpg", "image_link": "http://images.cocodataset.org/train2017/000000310150.jpg", "width": 640, "height": 480, "caption": "The laptop is at the left side of the chair.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["laptop", "chair"], "label_positions": [[4, 10], [38, 43]], "bboxes": [[289.25, 341.61, 317.92, 130.91], [0.0, 203.06, 107.87, 215.8]]}}
{"image_file": "000000494297.jpg", "image_link": "http://images.cocodataset.org/train2017/000000494297.jpg", "width": 640, "height": 480, "caption": "The donut is touching the dog.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["donut", "dog"], "label_positions": [[4, 9], [26, 29]], "bboxes": [[154.25, 53.12, 339.77, 352.72], [69.82, 45.58, 570.18, 434.42]]}}
{"image_file": "000000094566.jpg", "image_link": "http://images.cocodataset.org/train2017/000000094566.jpg", "width": 375, "height": 500, "caption": "The cat is on the keyboard.", "label": 0, "relation": "on", "ref_exp": {"labels": ["cat", "keyboard"], "label_positions": [[4, 7], [18, 26]], "bboxes": [[10.73, 46.78, 361.59, 431.33], [60.08, 15.54, 142.58, 90.79]]}}
{"image_file": "000000305338.jpg", "image_link": "http://images.cocodataset.org/train2017/000000305338.jpg", "width": 500, "height": 333, "caption": "The cat is under the umbrella.", "label": 1, "relation": "under", "ref_exp": {"labels": ["cat", "umbrella"], "label_positions": [[4, 7], [21, 29]], "bboxes": [[145.46, 20.75, 298.06, 288.79], [21.53, 0.0, 478.47, 329.16]]}}
{"image_file": "000000061647.jpg", "image_link": "http://images.cocodataset.org/train2017/000000061647.jpg", "width": 640, "height": 480, "caption": "The teddy bear is on top of the cake.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["teddy bear", "cake"], "label_positions": [[4, 14], [32, 36]], "bboxes": [[123.24, 198.38, 324.33, 211.89], [224.36, 251.33, 136.99, 72.27]]}}
{"image_file": "000000079798.jpg", "image_link": "http://images.cocodataset.org/train2017/000000079798.jpg", "width": 640, "height": 480, "caption": "The pizza is behind the car.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["pizza", "car"], "label_positions": [[4, 9], [24, 27]], "bboxes": [[171.51, 37.75, 324.67, 436.86], [147.61, 0.0, 492.39, 347.87]]}}
{"image_file": "000000142680.jpg", "image_link": "http://images.cocodataset.org/train2017/000000142680.jpg", "width": 640, "height": 480, "caption": "The elephant is facing the person.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["elephant", "person"], "label_positions": [[4, 12], [27, 33]], "bboxes": [[79.62, 109.14, 469.92, 370.86], [115.54, 340.4, 149.6, 139.6]]}}
{"image_file": "000000151959.jpg", "image_link": "http://images.cocodataset.org/train2017/000000151959.jpg", "width": 640, "height": 427, "caption": "The surfboard is on top of the dining table.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["surfboard", "dining table"], "label_positions": [[4, 13], [31, 43]], "bboxes": [[43.18, 116.11, 509.52, 277.31], [47.69, 114.24, 505.75, 307.21]]}}
{"image_file": "000000391774.jpg", "image_link": "http://images.cocodataset.org/train2017/000000391774.jpg", "width": 640, "height": 426, "caption": "The train is on the toilet.", "label": 1, "relation": "on", "ref_exp": {"labels": ["train", "toilet"], "label_positions": [[4, 9], [20, 26]], "bboxes": [[235.61, 250.34, 94.67, 73.63], [0.0, 0.0, 399.26, 421.22]]}}
{"image_file": "000000248461.jpg", "image_link": "http://images.cocodataset.org/train2017/000000248461.jpg", "width": 640, "height": 480, "caption": "The cup is touching the cat.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cup", "cat"], "label_positions": [[4, 7], [24, 27]], "bboxes": [[501.57, 0.0, 138.43, 330.82], [0.0, 8.26, 640.0, 465.55]]}}
{"image_file": "000000391392.jpg", "image_link": "http://images.cocodataset.org/train2017/000000391392.jpg", "width": 640, "height": 490, "caption": "The car is far away from the stop sign.", "label": 0, "relation": "far away from", "ref_exp": {"labels": ["car", "stop sign"], "label_positions": [[4, 7], [29, 38]], "bboxes": [[374.38, 59.28, 231.24, 384.29], [124.7, 131.29, 59.37, 59.37]]}}
{"image_file": "000000212868.jpg", "image_link": "http://images.cocodataset.org/train2017/000000212868.jpg", "width": 640, "height": 631, "caption": "The cat is attached to the backpack.", "label": 1, "relation": "attached to", "ref_exp": {"labels": ["cat", "backpack"], "label_positions": [[4, 7], [27, 35]], "bboxes": [[28.5, 38.0, 611.5, 555.0], [255.24, 70.9, 277.92, 313.37]]}}
{"image_file": "000000114710.jpg", "image_link": "http://images.cocodataset.org/train2017/000000114710.jpg", "width": 640, "height": 426, "caption": "The person is detached from the sheep.", "label": 1, "relation": "detached from", "ref_exp": {"labels": ["person", "sheep"], "label_positions": [[4, 10], [32, 37]], "bboxes": [[337.53, 38.22, 214.44, 382.73], [224.45, 160.96, 191.47, 160.33]]}}
{"image_file": "000000544794.jpg", "image_link": "http://images.cocodataset.org/train2017/000000544794.jpg", "width": 478, "height": 640, "caption": "The bowl is left of the pizza.", "label": 0, "relation": "left of", "ref_exp": {"labels": ["bowl", "pizza"], "label_positions": [[4, 8], [24, 29]], "bboxes": [[351.99, 79.37, 126.01, 141.19], [76.22, 152.45, 346.61, 349.48]]}}
{"image_file": "000000557245.jpg", "image_link": "http://images.cocodataset.org/train2017/000000557245.jpg", "width": 640, "height": 425, "caption": "The couch is at the left side of the laptop.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["couch", "laptop"], "label_positions": [[4, 9], [37, 43]], "bboxes": [[0.0, 122.85, 138.5, 179.0], [403.0, 114.16, 237.0, 251.44]]}}
{"image_file": "000000504158.jpg", "image_link": "http://images.cocodataset.org/train2017/000000504158.jpg", "width": 640, "height": 640, "caption": "The cat is next to the bear.", "label": 1, "relation": "next to", "ref_exp": {"labels": ["cat", "bear"], "label_positions": [[4, 7], [23, 27]], "bboxes": [[26.15, 22.02, 382.62, 328.95], [167.21, 23.78, 452.61, 599.64]]}}
{"image_file": "000000511436.jpg", "image_link": "http://images.cocodataset.org/train2017/000000511436.jpg", "width": 612, "height": 612, "caption": "The oven is surrounding the cake.", "label": 0, "relation": "surrounding", "ref_exp": {"labels": ["oven", "cake"], "label_positions": [[4, 8], [28, 32]], "bboxes": [[1.59, 0.0, 589.75, 185.98], [67.39, 108.65, 514.35, 444.21]]}}
{"image_file": "000000341584.jpg", "image_link": "http://images.cocodataset.org/train2017/000000341584.jpg", "width": 480, "height": 640, "caption": "The tv is at the right side of the cat.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["tv", "cat"], "label_positions": [[4, 6], [35, 38]], "bboxes": [[1.44, 3.24, 477.48, 123.68], [2.76, 61.38, 475.86, 442.76]]}}
{"image_file": "000000007319.jpg", "image_link": "http://images.cocodataset.org/train2017/000000007319.jpg", "width": 480, "height": 640, "caption": "The sink contains the cat.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["sink", "cat"], "label_positions": [[4, 8], [22, 25]], "bboxes": [[0.0, 86.29, 480.0, 422.83], [0.0, 2.09, 456.12, 410.44]]}}
{"image_file": "000000295945.jpg", "image_link": "http://images.cocodataset.org/train2017/000000295945.jpg", "width": 640, "height": 573, "caption": "The motorcycle is in front of the person.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["motorcycle", "person"], "label_positions": [[4, 14], [34, 40]], "bboxes": [[5.16, 185.84, 629.79, 379.42], [134.91, 10.15, 243.71, 284.33]]}}
{"image_file": "000000240967.jpg", "image_link": "http://images.cocodataset.org/train2017/000000240967.jpg", "width": 640, "height": 360, "caption": "The truck is touching the refrigerator.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["truck", "refrigerator"], "label_positions": [[4, 9], [26, 38]], "bboxes": [[185.65, 80.39, 454.35, 274.28], [452.3, 99.53, 147.23, 117.13]]}}
{"image_file": "000000386321.jpg", "image_link": "http://images.cocodataset.org/train2017/000000386321.jpg", "width": 350, "height": 450, "caption": "The suitcase contains the teddy bear.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["suitcase", "teddy bear"], "label_positions": [[4, 12], [26, 36]], "bboxes": [[134.49, 211.18, 168.88, 230.56], [143.16, 108.99, 137.75, 150.8]]}}
{"image_file": "000000191964.jpg", "image_link": "http://images.cocodataset.org/train2017/000000191964.jpg", "width": 500, "height": 375, "caption": "The cat is touching the keyboard.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cat", "keyboard"], "label_positions": [[4, 7], [24, 32]], "bboxes": [[0.0, 80.01, 263.47, 289.33], [144.1, 0.7, 355.9, 374.3]]}}
{"image_file": "000000172406.jpg", "image_link": "http://images.cocodataset.org/train2017/000000172406.jpg", "width": 640, "height": 428, "caption": "The horse is close to the bus.", "label": 0, "relation": "close to", "ref_exp": {"labels": ["horse", "bus"], "label_positions": [[4, 9], [26, 29]], "bboxes": [[0.93, 110.48, 433.57, 292.45], [407.63, 170.19, 100.17, 109.13]]}}
{"image_file": "000000458052.jpg", "image_link": "http://images.cocodataset.org/train2017/000000458052.jpg", "width": 640, "height": 468, "caption": "The bed is touching the banana.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["bed", "banana"], "label_positions": [[4, 7], [24, 30]], "bboxes": [[0.0, 1.68, 640.0, 466.32], [28.83, 217.26, 204.64, 227.29]]}}
{"image_file": "000000499267.jpg", "image_link": "http://images.cocodataset.org/train2017/000000499267.jpg", "width": 375, "height": 500, "caption": "The bus is in front of the car.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["bus", "car"], "label_positions": [[4, 7], [27, 30]], "bboxes": [[1.12, 106.74, 373.88, 269.66], [0.0, 330.11, 373.12, 164.51]]}}
{"image_file": "000000002587.jpg", "image_link": "http://images.cocodataset.org/val2017/000000002587.jpg", "width": 500, "height": 375, "caption": "The donut is right of the banana.", "label": 0, "relation": "right of", "ref_exp": {"labels": ["donut", "banana"], "label_positions": [[4, 9], [26, 32]], "bboxes": [[172.3, 10.98, 244.93, 255.07], [52.24, 0.76, 398.14, 356.98]]}}
{"image_file": "000000209638.jpg", "image_link": "http://images.cocodataset.org/train2017/000000209638.jpg", "width": 640, "height": 484, "caption": "The sandwich is in the bowl.", "label": 0, "relation": "in", "ref_exp": {"labels": ["sandwich", "bowl"], "label_positions": [[4, 12], [23, 27]], "bboxes": [[215.77, 132.46, 355.25, 236.04], [196.04, 117.65, 117.56, 96.79]]}}
{"image_file": "000000400307.jpg", "image_link": "http://images.cocodataset.org/train2017/000000400307.jpg", "width": 640, "height": 428, "caption": "The train is beyond the truck.", "label": 1, "relation": "beyond", "ref_exp": {"labels": ["train", "truck"], "label_positions": [[4, 9], [24, 29]], "bboxes": [[541.76, 84.76, 98.24, 78.88], [50.98, 46.17, 480.89, 314.5]]}}
{"image_file": "000000178407.jpg", "image_link": "http://images.cocodataset.org/train2017/000000178407.jpg", "width": 640, "height": 640, "caption": "The backpack is far away from the car.", "label": 0, "relation": "far away from", "ref_exp": {"labels": ["backpack", "car"], "label_positions": [[4, 12], [34, 37]], "bboxes": [[55.19, 218.64, 135.75, 129.64], [319.2, 132.48, 320.8, 373.28]]}}
{"image_file": "000000522930.jpg", "image_link": "http://images.cocodataset.org/train2017/000000522930.jpg", "width": 425, "height": 640, "caption": "The bed is touching the cat.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["bed", "cat"], "label_positions": [[4, 7], [24, 27]], "bboxes": [[0.0, 326.58, 425.0, 306.4], [155.19, 394.99, 189.53, 167.55]]}}
{"image_file": "000000211526.jpg", "image_link": "http://images.cocodataset.org/train2017/000000211526.jpg", "width": 640, "height": 480, "caption": "The cake is in the oven.", "label": 1, "relation": "in", "ref_exp": {"labels": ["cake", "oven"], "label_positions": [[4, 8], [19, 23]], "bboxes": [[161.25, 138.13, 248.75, 76.25], [3.25, 5.96, 636.75, 472.41]]}}
{"image_file": "000000092464.jpg", "image_link": "http://images.cocodataset.org/train2017/000000092464.jpg", "width": 640, "height": 428, "caption": "The dining table is in front of the teddy bear.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["dining table", "teddy bear"], "label_positions": [[4, 16], [36, 46]], "bboxes": [[1.11, 181.21, 638.89, 246.79], [43.28, 58.67, 368.37, 347.21]]}}
{"image_file": "000000229180.jpg", "image_link": "http://images.cocodataset.org/train2017/000000229180.jpg", "width": 640, "height": 478, "caption": "The person is at the left side of the couch.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["person", "couch"], "label_positions": [[4, 10], [38, 43]], "bboxes": [[45.11, 77.34, 351.25, 394.22], [0.0, 8.27, 640.0, 462.96]]}}
{"image_file": "000000408975.jpg", "image_link": "http://images.cocodataset.org/train2017/000000408975.jpg", "width": 640, "height": 427, "caption": "The couch is under the truck.", "label": 0, "relation": "under", "ref_exp": {"labels": ["couch", "truck"], "label_positions": [[4, 9], [23, 28]], "bboxes": [[337.26, 95.48, 86.57, 61.5], [53.86, 96.65, 573.18, 312.56]]}}
{"image_file": "000000164005.jpg", "image_link": "http://images.cocodataset.org/train2017/000000164005.jpg", "width": 640, "height": 480, "caption": "The keyboard is facing away from the person.", "label": 0, "relation": "facing away from", "ref_exp": {"labels": ["keyboard", "person"], "label_positions": [[4, 12], [37, 43]], "bboxes": [[147.78, 288.75, 183.37, 60.4], [325.9, 0.0, 314.1, 398.08]]}}
{"image_file": "000000073946.jpg", "image_link": "http://images.cocodataset.org/val2017/000000073946.jpg", "width": 640, "height": 428, "caption": "The surfboard is next to the bed.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["surfboard", "bed"], "label_positions": [[4, 13], [29, 32]], "bboxes": [[249.11, 44.24, 199.09, 351.06], [1.45, 65.68, 186.61, 361.21]]}}
{"image_file": "000000223516.jpg", "image_link": "http://images.cocodataset.org/train2017/000000223516.jpg", "width": 640, "height": 497, "caption": "The bench is below the bird.", "label": 1, "relation": "below", "ref_exp": {"labels": ["bench", "bird"], "label_positions": [[4, 9], [23, 27]], "bboxes": [[159.71, 340.45, 480.29, 149.66], [106.88, 149.63, 453.18, 337.75]]}}
{"image_file": "000000391786.jpg", "image_link": "http://images.cocodataset.org/train2017/000000391786.jpg", "width": 640, "height": 480, "caption": "The person is touching the bowl.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "bowl"], "label_positions": [[4, 10], [27, 31]], "bboxes": [[2.16, 247.01, 256.72, 222.2], [255.28, 74.7, 210.34, 363.4]]}}
{"image_file": "000000399675.jpg", "image_link": "http://images.cocodataset.org/train2017/000000399675.jpg", "width": 640, "height": 480, "caption": "The car is far away from the cake.", "label": 0, "relation": "far away from", "ref_exp": {"labels": ["car", "cake"], "label_positions": [[4, 7], [29, 33]], "bboxes": [[28.04, 168.27, 553.35, 283.69], [4.31, 16.18, 635.69, 277.21]]}}
{"image_file": "000000372919.jpg", "image_link": "http://images.cocodataset.org/train2017/000000372919.jpg", "width": 615, "height": 461, "caption": "The laptop is in front of the dog.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["laptop", "dog"], "label_positions": [[4, 10], [30, 33]], "bboxes": [[0.0, 0.0, 332.67, 227.81], [271.01, 75.44, 343.99, 366.0]]}}
{"image_file": "000000068717.jpg", "image_link": "http://images.cocodataset.org/train2017/000000068717.jpg", "width": 640, "height": 480, "caption": "The potted plant is under the cat.", "label": 0, "relation": "under", "ref_exp": {"labels": ["potted plant", "cat"], "label_positions": [[4, 16], [30, 33]], "bboxes": [[88.45, 3.06, 269.66, 296.63], [125.17, 32.59, 319.66, 441.72]]}}
{"image_file": "000000197169.jpg", "image_link": "http://images.cocodataset.org/train2017/000000197169.jpg", "width": 640, "height": 450, "caption": "The tv is on top of the refrigerator.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["tv", "refrigerator"], "label_positions": [[4, 6], [24, 36]], "bboxes": [[417.57, 4.56, 199.66, 316.22], [86.58, 56.47, 44.29, 127.86]]}}
{"image_file": "000000433310.jpg", "image_link": "http://images.cocodataset.org/train2017/000000433310.jpg", "width": 640, "height": 474, "caption": "The cow is opposite to the person.", "label": 0, "relation": "opposite to", "ref_exp": {"labels": ["cow", "person"], "label_positions": [[4, 7], [27, 33]], "bboxes": [[86.65, 0.0, 399.58, 474.0], [436.72, 0.0, 203.28, 471.87]]}}
{"image_file": "000000510665.jpg", "image_link": "http://images.cocodataset.org/train2017/000000510665.jpg", "width": 640, "height": 480, "caption": "The bus is at the right side of the bench.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["bus", "bench"], "label_positions": [[4, 7], [36, 41]], "bboxes": [[334.38, 285.66, 267.51, 141.31], [131.14, 377.87, 57.51, 33.11]]}}
{"image_file": "000000413245.jpg", "image_link": "http://images.cocodataset.org/train2017/000000413245.jpg", "width": 640, "height": 457, "caption": "The dog is toward the donut.", "label": 1, "relation": "toward", "ref_exp": {"labels": ["dog", "donut"], "label_positions": [[4, 7], [22, 27]], "bboxes": [[179.5, 166.64, 460.5, 290.36], [139.99, 163.35, 88.59, 82.64]]}}
{"image_file": "000000034524.jpg", "image_link": "http://images.cocodataset.org/train2017/000000034524.jpg", "width": 640, "height": 416, "caption": "The remote is at the edge of the bed.", "label": 0, "relation": "at the edge of", "ref_exp": {"labels": ["remote", "bed"], "label_positions": [[4, 10], [33, 36]], "bboxes": [[371.89, 85.8, 73.51, 48.85], [0.0, 24.25, 640.0, 387.09]]}}
{"image_file": "000000192707.jpg", "image_link": "http://images.cocodataset.org/train2017/000000192707.jpg", "width": 640, "height": 427, "caption": "The train is on top of the laptop.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["train", "laptop"], "label_positions": [[4, 9], [27, 33]], "bboxes": [[0.0, 0.09, 640.0, 426.91], [280.82, 151.01, 47.82, 38.05]]}}
{"image_file": "000000422655.jpg", "image_link": "http://images.cocodataset.org/train2017/000000422655.jpg", "width": 640, "height": 480, "caption": "The cat is under the umbrella.", "label": 1, "relation": "under", "ref_exp": {"labels": ["cat", "umbrella"], "label_positions": [[4, 7], [21, 29]], "bboxes": [[261.03, 148.85, 308.5, 331.15], [1.08, 1.08, 638.92, 338.7]]}}
{"image_file": "000000067106.jpg", "image_link": "http://images.cocodataset.org/train2017/000000067106.jpg", "width": 640, "height": 480, "caption": "The bench is above the cat.", "label": 1, "relation": "above", "ref_exp": {"labels": ["bench", "cat"], "label_positions": [[4, 9], [23, 26]], "bboxes": [[0.0, 0.0, 640.0, 464.68], [279.63, 232.47, 212.1, 198.05]]}}
{"image_file": "000000456302.jpg", "image_link": "http://images.cocodataset.org/train2017/000000456302.jpg", "width": 640, "height": 427, "caption": "The couch is next to the bed.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["couch", "bed"], "label_positions": [[4, 9], [25, 28]], "bboxes": [[0.96, 111.01, 638.1, 309.94], [0.0, 114.7, 640.0, 312.3]]}}
{"image_file": "000000371739.jpg", "image_link": "http://images.cocodataset.org/train2017/000000371739.jpg", "width": 640, "height": 480, "caption": "The bench is above the banana.", "label": 0, "relation": "above", "ref_exp": {"labels": ["bench", "banana"], "label_positions": [[4, 9], [23, 29]], "bboxes": [[32.36, 131.6, 456.27, 194.15], [45.1, 314.73, 476.78, 158.93]]}}
{"image_file": "000000425381.jpg", "image_link": "http://images.cocodataset.org/train2017/000000425381.jpg", "width": 640, "height": 479, "caption": "The stop sign is part of the bus.", "label": 1, "relation": "part of", "ref_exp": {"labels": ["stop sign", "bus"], "label_positions": [[4, 13], [29, 32]], "bboxes": [[38.75, 2.42, 401.5, 470.39], [0.0, 0.0, 640.0, 473.62]]}}
{"image_file": "000000443410.jpg", "image_link": "http://images.cocodataset.org/train2017/000000443410.jpg", "width": 640, "height": 480, "caption": "The dining table is at the right side of the bear.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["dining table", "bear"], "label_positions": [[4, 16], [45, 49]], "bboxes": [[136.99, 358.11, 500.49, 116.5], [331.35, 88.98, 18.5, 16.35]]}}
{"image_file": "000000300738.jpg", "image_link": "http://images.cocodataset.org/train2017/000000300738.jpg", "width": 640, "height": 424, "caption": "The horse is on the bus.", "label": 1, "relation": "on", "ref_exp": {"labels": ["horse", "bus"], "label_positions": [[4, 9], [20, 23]], "bboxes": [[205.81, 335.63, 61.93, 49.54], [82.71, 1.9, 557.29, 422.1]]}}
{"image_file": "000000292440.jpg", "image_link": "http://images.cocodataset.org/train2017/000000292440.jpg", "width": 500, "height": 400, "caption": "The couch is under the person.", "label": 1, "relation": "under", "ref_exp": {"labels": ["couch", "person"], "label_positions": [[4, 9], [23, 29]], "bboxes": [[1.8, 0.0, 498.2, 394.33], [48.43, 52.02, 296.86, 343.5]]}}
{"image_file": "000000265330.jpg", "image_link": "http://images.cocodataset.org/train2017/000000265330.jpg", "width": 480, "height": 640, "caption": "The sheep is inside the bottle.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["sheep", "bottle"], "label_positions": [[4, 9], [24, 30]], "bboxes": [[1.37, 261.95, 315.2, 328.91], [322.27, 266.22, 10.73, 29.71]]}}
{"image_file": "000000563615.jpg", "image_link": "http://images.cocodataset.org/train2017/000000563615.jpg", "width": 640, "height": 480, "caption": "The hair drier is above the person.", "label": 1, "relation": "above", "ref_exp": {"labels": ["hair drier", "person"], "label_positions": [[4, 14], [28, 34]], "bboxes": [[93.51, 2.49, 407.68, 300.47], [1.08, 19.42, 638.92, 453.03]]}}
{"image_file": "000000573958.jpg", "image_link": "http://images.cocodataset.org/train2017/000000573958.jpg", "width": 610, "height": 431, "caption": "The giraffe is facing away from the person.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["giraffe", "person"], "label_positions": [[4, 11], [36, 42]], "bboxes": [[69.89, 26.21, 422.27, 399.94], [368.33, 1.14, 241.05, 429.86]]}}
{"image_file": "000000243231.jpg", "image_link": "http://images.cocodataset.org/train2017/000000243231.jpg", "width": 640, "height": 478, "caption": "The suitcase is at the left side of the bed.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["suitcase", "bed"], "label_positions": [[4, 12], [40, 43]], "bboxes": [[0.0, 352.58, 102.27, 118.42], [0.0, 131.68, 640.0, 341.13]]}}
{"image_file": "000000108484.jpg", "image_link": "http://images.cocodataset.org/train2017/000000108484.jpg", "width": 640, "height": 480, "caption": "The person is touching the teddy bear.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "teddy bear"], "label_positions": [[4, 10], [27, 37]], "bboxes": [[377.99, 60.85, 236.24, 418.08], [1.08, 65.82, 335.9, 408.49]]}}
{"image_file": "000000320451.jpg", "image_link": "http://images.cocodataset.org/train2017/000000320451.jpg", "width": 480, "height": 640, "caption": "The bowl is behind the pizza.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["bowl", "pizza"], "label_positions": [[4, 8], [23, 28]], "bboxes": [[64.72, 90.61, 214.29, 130.87], [1.44, 261.75, 477.48, 366.74]]}}
{"image_file": "000000246233.jpg", "image_link": "http://images.cocodataset.org/train2017/000000246233.jpg", "width": 640, "height": 583, "caption": "The boat is on top of the truck.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["boat", "truck"], "label_positions": [[4, 8], [26, 31]], "bboxes": [[28.82, 49.78, 554.18, 487.37], [607.65, 332.2, 32.35, 28.03]]}}
{"image_file": "000000199252.jpg", "image_link": "http://images.cocodataset.org/train2017/000000199252.jpg", "width": 640, "height": 428, "caption": "The bench is adjacent to the cow.", "label": 0, "relation": "adjacent to", "ref_exp": {"labels": ["bench", "cow"], "label_positions": [[4, 9], [29, 32]], "bboxes": [[365.23, 108.71, 133.01, 72.17], [140.83, 120.64, 478.62, 301.9]]}}
{"image_file": "000000315018.jpg", "image_link": "http://images.cocodataset.org/train2017/000000315018.jpg", "width": 640, "height": 427, "caption": "The person is in front of the giraffe.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["person", "giraffe"], "label_positions": [[4, 10], [30, 37]], "bboxes": [[0.96, 29.45, 325.29, 389.58], [271.56, 15.69, 253.87, 319.19]]}}
{"image_file": "000000129706.jpg", "image_link": "http://images.cocodataset.org/train2017/000000129706.jpg", "width": 478, "height": 640, "caption": "The cell phone is left of the person.", "label": 1, "relation": "left of", "ref_exp": {"labels": ["cell phone", "person"], "label_positions": [[4, 14], [30, 36]], "bboxes": [[82.72, 201.72, 46.44, 92.88], [66.16, 110.3, 371.05, 520.63]]}}
{"image_file": "000000410554.jpg", "image_link": "http://images.cocodataset.org/train2017/000000410554.jpg", "width": 478, "height": 640, "caption": "The person is at the left side of the sink.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["person", "sink"], "label_positions": [[4, 10], [38, 42]], "bboxes": [[162.38, 47.7, 292.27, 392.13], [128.53, 231.02, 107.36, 72.48]]}}
{"image_file": "000000052925.jpg", "image_link": "http://images.cocodataset.org/train2017/000000052925.jpg", "width": 640, "height": 464, "caption": "The cat is in the middle of the bench.", "label": 1, "relation": "in the middle of", "ref_exp": {"labels": ["cat", "bench"], "label_positions": [[4, 7], [32, 37]], "bboxes": [[59.57, 158.35, 161.54, 225.24], [43.5, 89.42, 596.5, 368.54]]}}
{"image_file": "000000286717.jpg", "image_link": "http://images.cocodataset.org/train2017/000000286717.jpg", "width": 427, "height": 640, "caption": "The donut is at the left side of the bowl.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["donut", "bowl"], "label_positions": [[4, 9], [37, 41]], "bboxes": [[2.88, 211.42, 94.92, 117.93], [55.67, 108.72, 288.3, 207.64]]}}
{"image_file": "000000288106.jpg", "image_link": "http://images.cocodataset.org/train2017/000000288106.jpg", "width": 640, "height": 480, "caption": "The cat is beside the microwave.", "label": 1, "relation": "beside", "ref_exp": {"labels": ["cat", "microwave"], "label_positions": [[4, 7], [22, 31]], "bboxes": [[202.79, 127.28, 216.81, 347.33], [3.24, 149.93, 206.02, 324.68]]}}
{"image_file": "000000384391.jpg", "image_link": "http://images.cocodataset.org/train2017/000000384391.jpg", "width": 640, "height": 480, "caption": "The sandwich is off the banana.", "label": 1, "relation": "off", "ref_exp": {"labels": ["sandwich", "banana"], "label_positions": [[4, 12], [24, 30]], "bboxes": [[162.16, 222.7, 289.73, 247.57], [322.54, 0.0, 317.46, 317.26]]}}
{"image_file": "000000100282.jpg", "image_link": "http://images.cocodataset.org/train2017/000000100282.jpg", "width": 640, "height": 480, "caption": "The cup is in front of the sandwich.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["cup", "sandwich"], "label_positions": [[4, 7], [27, 35]], "bboxes": [[595.9, 3.06, 44.1, 89.09], [152.43, 51.89, 442.16, 422.7]]}}
{"image_file": "000000432917.jpg", "image_link": "http://images.cocodataset.org/train2017/000000432917.jpg", "width": 640, "height": 532, "caption": "The truck is touching the sheep.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["truck", "sheep"], "label_positions": [[4, 9], [26, 31]], "bboxes": [[11.98, 8.31, 306.74, 301.94], [49.3, 176.57, 458.62, 342.82]]}}
{"image_file": "000000222903.jpg", "image_link": "http://images.cocodataset.org/train2017/000000222903.jpg", "width": 640, "height": 480, "caption": "The donut is at the right side of the dining table.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["donut", "dining table"], "label_positions": [[4, 9], [38, 50]], "bboxes": [[354.53, 121.92, 200.66, 190.68], [0.0, 37.86, 608.45, 437.18]]}}
{"image_file": "000000451202.jpg", "image_link": "http://images.cocodataset.org/train2017/000000451202.jpg", "width": 640, "height": 482, "caption": "The car is by the airplane.", "label": 1, "relation": "by", "ref_exp": {"labels": ["car", "airplane"], "label_positions": [[4, 7], [18, 26]], "bboxes": [[2.16, 102.24, 384.74, 271.26], [79.25, 8.14, 560.75, 211.69]]}}
{"image_file": "000000000428.jpg", "image_link": "http://images.cocodataset.org/train2017/000000000428.jpg", "width": 640, "height": 360, "caption": "The person is behind the cake.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["person", "cake"], "label_positions": [[4, 10], [25, 29]], "bboxes": [[226.94, 32.65, 355.92, 323.27], [405.41, 234.73, 175.13, 121.62]]}}
{"image_file": "000000281382.jpg", "image_link": "http://images.cocodataset.org/train2017/000000281382.jpg", "width": 640, "height": 480, "caption": "The couch is beneath the laptop.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["couch", "laptop"], "label_positions": [[4, 9], [25, 31]], "bboxes": [[120.77, 194.06, 325.17, 248.78], [365.01, 344.34, 131.51, 82.55]]}}
{"image_file": "000000162346.jpg", "image_link": "http://images.cocodataset.org/train2017/000000162346.jpg", "width": 640, "height": 480, "caption": "The microwave is at the back of the person.", "label": 0, "relation": "at the back of", "ref_exp": {"labels": ["microwave", "person"], "label_positions": [[4, 13], [36, 42]], "bboxes": [[167.47, 65.41, 351.54, 196.54], [2.15, 115.1, 460.63, 358.39]]}}
{"image_file": "000000164659.jpg", "image_link": "http://images.cocodataset.org/train2017/000000164659.jpg", "width": 465, "height": 640, "caption": "The bicycle is below the dog.", "label": 0, "relation": "below", "ref_exp": {"labels": ["bicycle", "dog"], "label_positions": [[4, 11], [25, 28]], "bboxes": [[13.88, 257.3, 410.94, 347.07], [139.64, 436.04, 144.8, 188.77]]}}
{"image_file": "000000253004.jpg", "image_link": "http://images.cocodataset.org/train2017/000000253004.jpg", "width": 640, "height": 427, "caption": "The book is outside the train.", "label": 0, "relation": "outside", "ref_exp": {"labels": ["book", "train"], "label_positions": [[4, 8], [24, 29]], "bboxes": [[0.0, 21.11, 504.72, 401.09], [0.0, 150.84, 326.07, 260.63]]}}
{"image_file": "000000561658.jpg", "image_link": "http://images.cocodataset.org/train2017/000000561658.jpg", "width": 480, "height": 640, "caption": "The chair is at the right side of the laptop.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["chair", "laptop"], "label_positions": [[4, 9], [38, 44]], "bboxes": [[28.26, 131.32, 451.74, 498.71], [15.75, 192.0, 259.15, 188.99]]}}
{"image_file": "000000230862.jpg", "image_link": "http://images.cocodataset.org/train2017/000000230862.jpg", "width": 640, "height": 361, "caption": "The laptop is above the couch.", "label": 1, "relation": "above", "ref_exp": {"labels": ["laptop", "couch"], "label_positions": [[4, 10], [24, 29]], "bboxes": [[272.58, 0.68, 244.99, 128.98], [0.77, 0.0, 639.23, 333.73]]}}
{"image_file": "000000575487.jpg", "image_link": "http://images.cocodataset.org/train2017/000000575487.jpg", "width": 500, "height": 333, "caption": "The oven contains the pizza.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["oven", "pizza"], "label_positions": [[4, 8], [22, 27]], "bboxes": [[80.25, 86.63, 267.75, 243.0], [106.38, 212.81, 118.54, 34.46]]}}
{"image_file": "000000548661.jpg", "image_link": "http://images.cocodataset.org/train2017/000000548661.jpg", "width": 640, "height": 388, "caption": "The cat is on top of the dining table.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "dining table"], "label_positions": [[4, 7], [25, 37]], "bboxes": [[215.85, 20.54, 424.15, 360.91], [1.01, 232.15, 638.29, 151.78]]}}
{"image_file": "000000456422.jpg", "image_link": "http://images.cocodataset.org/train2017/000000456422.jpg", "width": 426, "height": 640, "caption": "The teddy bear is within the suitcase.", "label": 0, "relation": "within", "ref_exp": {"labels": ["teddy bear", "suitcase"], "label_positions": [[4, 14], [29, 37]], "bboxes": [[43.15, 20.13, 296.27, 428.59], [1.66, 129.66, 424.34, 502.03]]}}
{"image_file": "000000548734.jpg", "image_link": "http://images.cocodataset.org/train2017/000000548734.jpg", "width": 640, "height": 419, "caption": "The fire hydrant is at the left side of the dog.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["fire hydrant", "dog"], "label_positions": [[4, 16], [44, 47]], "bboxes": [[37.66, 51.79, 183.61, 361.56], [358.18, 111.51, 225.55, 302.42]]}}
{"image_file": "000000233080.jpg", "image_link": "http://images.cocodataset.org/train2017/000000233080.jpg", "width": 612, "height": 612, "caption": "The umbrella is over the person.", "label": 1, "relation": "over", "ref_exp": {"labels": ["umbrella", "person"], "label_positions": [[4, 12], [25, 31]], "bboxes": [[22.05, 22.05, 570.65, 445.22], [133.4, 94.99, 442.84, 500.6]]}}
{"image_file": "000000446917.jpg", "image_link": "http://images.cocodataset.org/train2017/000000446917.jpg", "width": 640, "height": 427, "caption": "The person is facing away from the banana.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["person", "banana"], "label_positions": [[4, 10], [35, 41]], "bboxes": [[0.0, 0.57, 490.19, 421.26], [398.03, 134.44, 124.72, 130.59]]}}
{"image_file": "000000345665.jpg", "image_link": "http://images.cocodataset.org/train2017/000000345665.jpg", "width": 427, "height": 640, "caption": "The person is touching the hot dog.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "hot dog"], "label_positions": [[4, 10], [27, 34]], "bboxes": [[10.07, 96.36, 378.24, 542.2], [151.62, 244.33, 81.54, 79.69]]}}
{"image_file": "000000265707.jpg", "image_link": "http://images.cocodataset.org/train2017/000000265707.jpg", "width": 500, "height": 375, "caption": "The cat is at the left side of the keyboard.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["cat", "keyboard"], "label_positions": [[4, 7], [35, 43]], "bboxes": [[0.84, 99.44, 341.29, 270.5], [282.51, 144.62, 216.93, 130.32]]}}
{"image_file": "000000519208.jpg", "image_link": "http://images.cocodataset.org/val2017/000000519208.jpg", "width": 640, "height": 406, "caption": "The person is touching the elephant.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "elephant"], "label_positions": [[4, 10], [27, 35]], "bboxes": [[282.2, 33.79, 356.84, 367.76], [0.0, 0.0, 640.0, 400.53]]}}
{"image_file": "000000272176.jpg", "image_link": "http://images.cocodataset.org/train2017/000000272176.jpg", "width": 640, "height": 426, "caption": "The dining table is in front of the person.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["dining table", "person"], "label_positions": [[4, 16], [36, 42]], "bboxes": [[7.66, 189.55, 632.34, 227.83], [261.91, 2.87, 357.47, 247.94]]}}
{"image_file": "000000047935.jpg", "image_link": "http://images.cocodataset.org/train2017/000000047935.jpg", "width": 612, "height": 612, "caption": "The oven contains the pizza.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["oven", "pizza"], "label_positions": [[4, 8], [22, 27]], "bboxes": [[470.35, 181.54, 123.77, 270.93], [111.4, 287.43, 407.08, 308.07]]}}
{"image_file": "000000323372.jpg", "image_link": "http://images.cocodataset.org/train2017/000000323372.jpg", "width": 480, "height": 640, "caption": "The bench is in front of the sandwich.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["bench", "sandwich"], "label_positions": [[4, 9], [29, 37]], "bboxes": [[223.19, 112.77, 256.81, 508.17], [230.88, 251.03, 36.68, 44.09]]}}
{"image_file": "000000011475.jpg", "image_link": "http://images.cocodataset.org/train2017/000000011475.jpg", "width": 480, "height": 320, "caption": "The cat is facing away from the toilet.", "label": 0, "relation": "facing away from", "ref_exp": {"labels": ["cat", "toilet"], "label_positions": [[4, 7], [32, 38]], "bboxes": [[22.71, 50.12, 404.64, 171.36], [0.83, 153.33, 136.67, 162.5]]}}
{"image_file": "000000495055.jpg", "image_link": "http://images.cocodataset.org/train2017/000000495055.jpg", "width": 640, "height": 581, "caption": "The teddy bear is inside the suitcase.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["teddy bear", "suitcase"], "label_positions": [[4, 14], [29, 37]], "bboxes": [[334.06, 207.22, 187.06, 207.67], [102.34, 257.8, 296.08, 188.67]]}}
{"image_file": "000000447849.jpg", "image_link": "http://images.cocodataset.org/train2017/000000447849.jpg", "width": 640, "height": 427, "caption": "The parking meter is in front of the car.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["parking meter", "car"], "label_positions": [[4, 17], [37, 40]], "bboxes": [[185.19, 16.02, 287.87, 404.93], [0.96, 0.72, 639.04, 420.26]]}}
{"image_file": "000000126340.jpg", "image_link": "http://images.cocodataset.org/train2017/000000126340.jpg", "width": 640, "height": 480, "caption": "The person is at the left side of the remote.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["person", "remote"], "label_positions": [[4, 10], [38, 44]], "bboxes": [[208.32, 33.39, 302.82, 435.98], [465.29, 284.56, 47.07, 43.98]]}}
{"image_file": "000000274697.jpg", "image_link": "http://images.cocodataset.org/train2017/000000274697.jpg", "width": 480, "height": 640, "caption": "The bowl is above the toilet.", "label": 0, "relation": "above", "ref_exp": {"labels": ["bowl", "toilet"], "label_positions": [[4, 8], [22, 28]], "bboxes": [[124.24, 467.53, 46.14, 32.34], [188.99, 332.31, 158.93, 300.67]]}}
{"image_file": "000000454217.jpg", "image_link": "http://images.cocodataset.org/train2017/000000454217.jpg", "width": 640, "height": 480, "caption": "The laptop is touching the cat.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["laptop", "cat"], "label_positions": [[4, 10], [27, 30]], "bboxes": [[0.0, 6.47, 318.34, 258.71], [185.17, 84.31, 454.14, 391.03]]}}
{"image_file": "000000360157.jpg", "image_link": "http://images.cocodataset.org/train2017/000000360157.jpg", "width": 640, "height": 427, "caption": "The cat is in the suitcase.", "label": 1, "relation": "in", "ref_exp": {"labels": ["cat", "suitcase"], "label_positions": [[4, 7], [18, 26]], "bboxes": [[100.09, 73.46, 528.01, 212.12], [88.08, 215.99, 509.34, 202.97]]}}
{"image_file": "000000294229.jpg", "image_link": "http://images.cocodataset.org/train2017/000000294229.jpg", "width": 480, "height": 640, "caption": "The person is at the edge of the bench.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["person", "bench"], "label_positions": [[4, 10], [33, 38]], "bboxes": [[0.0, 180.77, 184.09, 450.16], [61.42, 395.72, 107.39, 52.52]]}}
{"image_file": "000000364725.jpg", "image_link": "http://images.cocodataset.org/train2017/000000364725.jpg", "width": 640, "height": 427, "caption": "The book is in front of the cat.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["book", "cat"], "label_positions": [[4, 8], [28, 31]], "bboxes": [[32.62, 193.83, 548.87, 228.37], [234.16, 42.24, 261.71, 246.1]]}}
{"image_file": "000000110724.jpg", "image_link": "http://images.cocodataset.org/train2017/000000110724.jpg", "width": 640, "height": 480, "caption": "The cow is behind the person.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["cow", "person"], "label_positions": [[4, 7], [22, 28]], "bboxes": [[10.28, 94.66, 568.39, 379.27], [69.22, 132.28, 22.79, 19.95]]}}
{"image_file": "000000371258.jpg", "image_link": "http://images.cocodataset.org/train2017/000000371258.jpg", "width": 640, "height": 480, "caption": "The cat is above the suitcase.", "label": 1, "relation": "above", "ref_exp": {"labels": ["cat", "suitcase"], "label_positions": [[4, 7], [21, 29]], "bboxes": [[122.84, 74.58, 395.35, 187.87], [32.36, 54.83, 568.45, 419.6]]}}
{"image_file": "000000038837.jpg", "image_link": "http://images.cocodataset.org/train2017/000000038837.jpg", "width": 640, "height": 480, "caption": "The umbrella is behind the cat.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["umbrella", "cat"], "label_positions": [[4, 12], [27, 30]], "bboxes": [[0.0, 0.75, 632.09, 453.03], [207.48, 176.52, 334.46, 294.19]]}}
{"image_file": "000000450631.jpg", "image_link": "http://images.cocodataset.org/train2017/000000450631.jpg", "width": 500, "height": 325, "caption": "The bird is touching the chair.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["bird", "chair"], "label_positions": [[4, 8], [25, 30]], "bboxes": [[187.31, 47.53, 98.55, 147.47], [0.84, 170.04, 499.16, 151.55]]}}
{"image_file": "000000302845.jpg", "image_link": "http://images.cocodataset.org/train2017/000000302845.jpg", "width": 640, "height": 468, "caption": "The cat is under the chair.", "label": 1, "relation": "under", "ref_exp": {"labels": ["cat", "chair"], "label_positions": [[4, 7], [21, 26]], "bboxes": [[107.4, 185.14, 323.71, 101.52], [50.62, 2.46, 575.0, 281.8]]}}
{"image_file": "000000192707.jpg", "image_link": "http://images.cocodataset.org/train2017/000000192707.jpg", "width": 640, "height": 427, "caption": "The train is on the laptop.", "label": 0, "relation": "on", "ref_exp": {"labels": ["train", "laptop"], "label_positions": [[4, 9], [20, 26]], "bboxes": [[0.0, 0.09, 640.0, 426.91], [280.82, 151.01, 47.82, 38.05]]}}
{"image_file": "000000533988.jpg", "image_link": "http://images.cocodataset.org/train2017/000000533988.jpg", "width": 640, "height": 427, "caption": "The bed is under the person.", "label": 0, "relation": "under", "ref_exp": {"labels": ["bed", "person"], "label_positions": [[4, 7], [21, 27]], "bboxes": [[0.97, 187.84, 639.03, 239.16], [310.89, 74.84, 130.5, 215.9]]}}
{"image_file": "000000383012.jpg", "image_link": "http://images.cocodataset.org/train2017/000000383012.jpg", "width": 500, "height": 375, "caption": "The bowl contains the pizza.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["bowl", "pizza"], "label_positions": [[4, 8], [22, 27]], "bboxes": [[382.58, 307.58, 59.84, 62.36], [61.52, 118.82, 318.54, 250.28]]}}
{"image_file": "000000207889.jpg", "image_link": "http://images.cocodataset.org/train2017/000000207889.jpg", "width": 612, "height": 612, "caption": "The dining table is at the left side of the dog.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["dining table", "dog"], "label_positions": [[4, 16], [44, 47]], "bboxes": [[0.0, 314.14, 611.21, 290.62], [35.93, 4.34, 336.97, 417.49]]}}
{"image_file": "000000020202.jpg", "image_link": "http://images.cocodataset.org/train2017/000000020202.jpg", "width": 480, "height": 640, "caption": "The refrigerator is right of the person.", "label": 1, "relation": "right of", "ref_exp": {"labels": ["refrigerator", "person"], "label_positions": [[4, 16], [33, 39]], "bboxes": [[196.81, 242.7, 264.94, 282.88], [4.31, 1.2, 297.71, 625.62]]}}
{"image_file": "000000581153.jpg", "image_link": "http://images.cocodataset.org/train2017/000000581153.jpg", "width": 640, "height": 366, "caption": "The pizza is far away from the cat.", "label": 0, "relation": "far away from", "ref_exp": {"labels": ["pizza", "cat"], "label_positions": [[4, 9], [31, 34]], "bboxes": [[489.03, 163.15, 108.77, 92.45], [44.08, 77.19, 465.96, 239.28]]}}
{"image_file": "000000135392.jpg", "image_link": "http://images.cocodataset.org/train2017/000000135392.jpg", "width": 640, "height": 480, "caption": "The toilet is facing the person.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["toilet", "person"], "label_positions": [[4, 10], [25, 31]], "bboxes": [[536.23, 374.65, 22.07, 65.73], [263.68, 60.22, 207.71, 376.68]]}}
{"image_file": "000000543454.jpg", "image_link": "http://images.cocodataset.org/train2017/000000543454.jpg", "width": 640, "height": 427, "caption": "The person is at the left side of the broccoli.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["person", "broccoli"], "label_positions": [[4, 10], [38, 46]], "bboxes": [[0.0, 0.96, 367.51, 419.32], [229.54, 196.06, 406.95, 230.94]]}}
{"image_file": "000000443349.jpg", "image_link": "http://images.cocodataset.org/train2017/000000443349.jpg", "width": 640, "height": 509, "caption": "The cat is touching the handbag.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cat", "handbag"], "label_positions": [[4, 7], [24, 31]], "bboxes": [[191.02, 140.69, 434.65, 361.45], [519.68, 17.29, 42.33, 91.73]]}}
{"image_file": "000000139355.jpg", "image_link": "http://images.cocodataset.org/train2017/000000139355.jpg", "width": 375, "height": 500, "caption": "The dog is above the teddy bear.", "label": 0, "relation": "above", "ref_exp": {"labels": ["dog", "teddy bear"], "label_positions": [[4, 7], [21, 31]], "bboxes": [[0.0, 223.39, 175.4, 272.17], [61.8, 0.0, 313.2, 494.38]]}}
{"image_file": "000000240463.jpg", "image_link": "http://images.cocodataset.org/train2017/000000240463.jpg", "width": 640, "height": 480, "caption": "The handbag is on the bed.", "label": 1, "relation": "on", "ref_exp": {"labels": ["handbag", "bed"], "label_positions": [[4, 11], [22, 25]], "bboxes": [[106.79, 3.06, 449.79, 472.45], [0.0, 0.0, 640.0, 480.0]]}}
{"image_file": "000000085826.jpg", "image_link": "http://images.cocodataset.org/train2017/000000085826.jpg", "width": 640, "height": 480, "caption": "The person is touching the teddy bear.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "teddy bear"], "label_positions": [[4, 10], [27, 37]], "bboxes": [[202.32, 101.33, 278.4, 318.46], [209.74, 162.73, 286.88, 80.0]]}}
{"image_file": "000000201640.jpg", "image_link": "http://images.cocodataset.org/train2017/000000201640.jpg", "width": 640, "height": 418, "caption": "The person is below the umbrella.", "label": 0, "relation": "below", "ref_exp": {"labels": ["person", "umbrella"], "label_positions": [[4, 10], [24, 32]], "bboxes": [[264.89, 24.49, 268.65, 387.0], [57.3, 57.14, 377.61, 356.01]]}}
{"image_file": "000000062237.jpg", "image_link": "http://images.cocodataset.org/train2017/000000062237.jpg", "width": 375, "height": 500, "caption": "The cat is in front of the laptop.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["cat", "laptop"], "label_positions": [[4, 7], [27, 33]], "bboxes": [[116.13, 102.9, 258.87, 296.77], [70.47, 31.43, 284.12, 208.05]]}}
{"image_file": "000000507049.jpg", "image_link": "http://images.cocodataset.org/train2017/000000507049.jpg", "width": 640, "height": 428, "caption": "The person is opposite to the toilet.", "label": 0, "relation": "opposite to", "ref_exp": {"labels": ["person", "toilet"], "label_positions": [[4, 10], [30, 36]], "bboxes": [[8.66, 9.68, 511.67, 405.88], [265.69, 0.72, 372.93, 372.93]]}}
{"image_file": "000000403231.jpg", "image_link": "http://images.cocodataset.org/train2017/000000403231.jpg", "width": 640, "height": 426, "caption": "The bed is touching the cat.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["bed", "cat"], "label_positions": [[4, 7], [24, 27]], "bboxes": [[1.1, 1.84, 638.9, 419.38], [67.97, 82.33, 357.07, 326.44]]}}
{"image_file": "000000350368.jpg", "image_link": "http://images.cocodataset.org/train2017/000000350368.jpg", "width": 640, "height": 403, "caption": "The teddy bear is at the right side of the apple.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["teddy bear", "apple"], "label_positions": [[4, 14], [43, 48]], "bboxes": [[371.6, 211.44, 137.12, 169.58], [59.74, 16.12, 348.95, 342.31]]}}
{"image_file": "000000407390.jpg", "image_link": "http://images.cocodataset.org/train2017/000000407390.jpg", "width": 640, "height": 585, "caption": "The laptop is next to the refrigerator.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["laptop", "refrigerator"], "label_positions": [[4, 10], [26, 38]], "bboxes": [[286.61, 280.19, 353.36, 298.39], [0.0, 38.45, 145.92, 348.37]]}}
{"image_file": "000000383885.jpg", "image_link": "http://images.cocodataset.org/train2017/000000383885.jpg", "width": 640, "height": 480, "caption": "The suitcase is beneath the dining table.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["suitcase", "dining table"], "label_positions": [[4, 12], [28, 40]], "bboxes": [[139.15, 204.94, 217.88, 266.43], [239.43, 15.2, 399.05, 326.08]]}}
{"image_file": "000000268394.jpg", "image_link": "http://images.cocodataset.org/train2017/000000268394.jpg", "width": 640, "height": 396, "caption": "The dining table is far away from the truck.", "label": 0, "relation": "far away from", "ref_exp": {"labels": ["dining table", "truck"], "label_positions": [[4, 16], [38, 43]], "bboxes": [[1.03, 135.77, 638.97, 255.09], [37.16, 60.62, 386.22, 264.98]]}}
{"image_file": "000000419860.jpg", "image_link": "http://images.cocodataset.org/train2017/000000419860.jpg", "width": 480, "height": 640, "caption": "The car is facing away from the pizza.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["car", "pizza"], "label_positions": [[4, 7], [32, 37]], "bboxes": [[85.53, 0.0, 347.46, 256.64], [0.0, 269.46, 477.07, 336.54]]}}
{"image_file": "000000116735.jpg", "image_link": "http://images.cocodataset.org/train2017/000000116735.jpg", "width": 640, "height": 480, "caption": "The cell phone is facing the laptop.", "label": 1, "relation": "facing", "ref_exp": {"labels": ["cell phone", "laptop"], "label_positions": [[4, 14], [29, 35]], "bboxes": [[79.58, 175.82, 422.83, 204.94], [2.16, 18.01, 637.84, 454.11]]}}
{"image_file": "000000422910.jpg", "image_link": "http://images.cocodataset.org/train2017/000000422910.jpg", "width": 640, "height": 480, "caption": "The suitcase is above the book.", "label": 0, "relation": "above", "ref_exp": {"labels": ["suitcase", "book"], "label_positions": [[4, 12], [26, 30]], "bboxes": [[69.03, 146.7, 366.75, 306.33], [549.99, 271.38, 90.01, 96.38]]}}
{"image_file": "000000413046.jpg", "image_link": "http://images.cocodataset.org/train2017/000000413046.jpg", "width": 640, "height": 480, "caption": "The person is away from the wine glass.", "label": 1, "relation": "away from", "ref_exp": {"labels": ["person", "wine glass"], "label_positions": [[4, 10], [28, 38]], "bboxes": [[254.05, 0.54, 296.22, 467.03], [57.17, 126.2, 198.47, 347.33]]}}
{"image_file": "000000248461.jpg", "image_link": "http://images.cocodataset.org/train2017/000000248461.jpg", "width": 640, "height": 480, "caption": "The cat is in the cup.", "label": 0, "relation": "in", "ref_exp": {"labels": ["cat", "cup"], "label_positions": [[4, 7], [18, 21]], "bboxes": [[0.0, 8.26, 640.0, 465.55], [501.57, 0.0, 138.43, 330.82]]}}
{"image_file": "000000520524.jpg", "image_link": "http://images.cocodataset.org/train2017/000000520524.jpg", "width": 640, "height": 480, "caption": "The bicycle is beside the motorcycle.", "label": 1, "relation": "beside", "ref_exp": {"labels": ["bicycle", "motorcycle"], "label_positions": [[4, 11], [26, 36]], "bboxes": [[90.64, 79.31, 343.01, 382.15], [309.96, 1.79, 330.04, 450.33]]}}
{"image_file": "000000312298.jpg", "image_link": "http://images.cocodataset.org/train2017/000000312298.jpg", "width": 640, "height": 558, "caption": "The book is behind the teddy bear.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["book", "teddy bear"], "label_positions": [[4, 8], [23, 33]], "bboxes": [[0.0, 348.02, 578.34, 199.08], [139.81, 51.3, 308.34, 426.93]]}}
{"image_file": "000000138022.jpg", "image_link": "http://images.cocodataset.org/train2017/000000138022.jpg", "width": 612, "height": 612, "caption": "The surfboard is connected to the truck.", "label": 1, "relation": "connected to", "ref_exp": {"labels": ["surfboard", "truck"], "label_positions": [[4, 13], [34, 39]], "bboxes": [[127.97, 243.7, 277.64, 89.82], [55.03, 250.58, 469.88, 320.04]]}}
{"image_file": "000000498588.jpg", "image_link": "http://images.cocodataset.org/train2017/000000498588.jpg", "width": 480, "height": 640, "caption": "The hot dog is at the edge of the dining table.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["hot dog", "dining table"], "label_positions": [[4, 11], [34, 46]], "bboxes": [[252.68, 359.06, 224.41, 212.78], [14.38, 64.72, 465.62, 555.15]]}}
{"image_file": "000000312298.jpg", "image_link": "http://images.cocodataset.org/train2017/000000312298.jpg", "width": 640, "height": 558, "caption": "The person is at the right side of the teddy bear.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["person", "teddy bear"], "label_positions": [[4, 10], [39, 49]], "bboxes": [[48.9, 0.0, 591.1, 430.1], [139.81, 51.3, 308.34, 426.93]]}}
{"image_file": "000000193578.jpg", "image_link": "http://images.cocodataset.org/train2017/000000193578.jpg", "width": 640, "height": 360, "caption": "The cat is in the suitcase.", "label": 0, "relation": "in", "ref_exp": {"labels": ["cat", "suitcase"], "label_positions": [[4, 7], [18, 26]], "bboxes": [[171.56, 21.09, 233.44, 239.07], [3.24, 40.45, 551.73, 314.7]]}}
{"image_file": "000000281158.jpg", "image_link": "http://images.cocodataset.org/train2017/000000281158.jpg", "width": 640, "height": 509, "caption": "The truck is at the left side of the person.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["truck", "person"], "label_positions": [[4, 9], [37, 43]], "bboxes": [[76.64, 121.32, 506.71, 350.01], [441.67, 289.82, 61.62, 186.03]]}}
{"image_file": "000000317147.jpg", "image_link": "http://images.cocodataset.org/train2017/000000317147.jpg", "width": 480, "height": 640, "caption": "The dog is on the cake.", "label": 0, "relation": "on", "ref_exp": {"labels": ["dog", "cake"], "label_positions": [[4, 7], [18, 22]], "bboxes": [[1.29, 1.29, 443.48, 415.03], [168.22, 433.97, 106.94, 66.05]]}}
{"image_file": "000000202447.jpg", "image_link": "http://images.cocodataset.org/train2017/000000202447.jpg", "width": 500, "height": 375, "caption": "The person is off the keyboard.", "label": 0, "relation": "off", "ref_exp": {"labels": ["person", "keyboard"], "label_positions": [[4, 10], [22, 30]], "bboxes": [[0.0, 0.97, 416.42, 267.25], [0.84, 200.11, 493.55, 169.0]]}}
{"image_file": "000000011487.jpg", "image_link": "http://images.cocodataset.org/train2017/000000011487.jpg", "width": 640, "height": 480, "caption": "The potted plant is at the right side of the umbrella.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["potted plant", "umbrella"], "label_positions": [[4, 16], [45, 53]], "bboxes": [[313.22, 62.37, 221.02, 409.49], [34.36, 8.74, 294.23, 193.29]]}}
{"image_file": "000000054953.jpg", "image_link": "http://images.cocodataset.org/train2017/000000054953.jpg", "width": 640, "height": 480, "caption": "The teddy bear is below the cat.", "label": 0, "relation": "below", "ref_exp": {"labels": ["teddy bear", "cat"], "label_positions": [[4, 14], [28, 31]], "bboxes": [[5.38, 114.21, 340.09, 361.61], [237.94, 236.91, 298.71, 236.5]]}}
{"image_file": "000000528176.jpg", "image_link": "http://images.cocodataset.org/train2017/000000528176.jpg", "width": 500, "height": 323, "caption": "The dining table is touching the banana.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["dining table", "banana"], "label_positions": [[4, 16], [33, 39]], "bboxes": [[2.18, 176.38, 497.82, 142.99], [128.47, 1.5, 371.53, 251.87]]}}
{"image_file": "000000075636.jpg", "image_link": "http://images.cocodataset.org/train2017/000000075636.jpg", "width": 600, "height": 450, "caption": "The pizza is adjacent to the bowl.", "label": 1, "relation": "adjacent to", "ref_exp": {"labels": ["pizza", "bowl"], "label_positions": [[4, 9], [29, 33]], "bboxes": [[273.03, 95.06, 311.46, 252.81], [24.27, 176.97, 275.06, 236.63]]}}
{"image_file": "000000269098.jpg", "image_link": "http://images.cocodataset.org/train2017/000000269098.jpg", "width": 640, "height": 431, "caption": "The person is at the right side of the couch.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["person", "couch"], "label_positions": [[4, 10], [39, 44]], "bboxes": [[279.91, 101.7, 221.79, 324.46], [0.0, 154.0, 575.61, 274.79]]}}
{"image_file": "000000040338.jpg", "image_link": "http://images.cocodataset.org/train2017/000000040338.jpg", "width": 640, "height": 426, "caption": "The orange is inside the refrigerator.", "label": 1, "relation": "inside", "ref_exp": {"labels": ["orange", "refrigerator"], "label_positions": [[4, 10], [25, 37]], "bboxes": [[225.09, 166.5, 26.78, 24.84], [112.26, 48.45, 260.01, 373.23]]}}
{"image_file": "000000308025.jpg", "image_link": "http://images.cocodataset.org/train2017/000000308025.jpg", "width": 640, "height": 429, "caption": "The person is facing away from the toilet.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["person", "toilet"], "label_positions": [[4, 10], [35, 41]], "bboxes": [[0.93, 0.0, 475.76, 429.0], [333.56, 19.28, 306.44, 409.72]]}}
{"image_file": "000000314526.jpg", "image_link": "http://images.cocodataset.org/train2017/000000314526.jpg", "width": 640, "height": 480, "caption": "The horse is on the bed.", "label": 1, "relation": "on", "ref_exp": {"labels": ["horse", "bed"], "label_positions": [[4, 9], [20, 23]], "bboxes": [[75.51, 179.06, 564.13, 300.94], [0.69, 50.98, 639.31, 428.81]]}}
{"image_file": "000000333819.jpg", "image_link": "http://images.cocodataset.org/train2017/000000333819.jpg", "width": 427, "height": 640, "caption": "The potted plant is behind the cat.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["potted plant", "cat"], "label_positions": [[4, 16], [31, 34]], "bboxes": [[59.23, 195.76, 323.61, 361.17], [339.61, 254.17, 86.26, 209.76]]}}
{"image_file": "000000442321.jpg", "image_link": "http://images.cocodataset.org/train2017/000000442321.jpg", "width": 640, "height": 427, "caption": "The truck is at the right side of the person.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["truck", "person"], "label_positions": [[4, 9], [38, 44]], "bboxes": [[199.64, 34.38, 293.91, 179.67], [173.78, 69.11, 188.02, 357.89]]}}
{"image_file": "000000216161.jpg", "image_link": "http://images.cocodataset.org/train2017/000000216161.jpg", "width": 640, "height": 480, "caption": "The dog is facing the pizza.", "label": 1, "relation": "facing", "ref_exp": {"labels": ["dog", "pizza"], "label_positions": [[4, 7], [22, 27]], "bboxes": [[248.24, 130.91, 354.91, 301.57], [0.0, 54.46, 265.92, 126.91]]}}
{"image_file": "000000140633.jpg", "image_link": "http://images.cocodataset.org/train2017/000000140633.jpg", "width": 419, "height": 637, "caption": "The person is touching the pizza.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "pizza"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[0.0, 80.65, 398.37, 481.68], [20.34, 426.73, 261.6, 170.94]]}}
{"image_file": "000000381251.jpg", "image_link": "http://images.cocodataset.org/train2017/000000381251.jpg", "width": 640, "height": 480, "caption": "The pizza is inside the oven.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["pizza", "oven"], "label_positions": [[4, 9], [24, 28]], "bboxes": [[5.39, 49.62, 634.61, 362.42], [571.01, 74.81, 68.99, 162.07]]}}
{"image_file": "000000202186.jpg", "image_link": "http://images.cocodataset.org/train2017/000000202186.jpg", "width": 500, "height": 333, "caption": "The dog is in the middle of the bed.", "label": 1, "relation": "in the middle of", "ref_exp": {"labels": ["dog", "bed"], "label_positions": [[4, 7], [32, 35]], "bboxes": [[123.11, 50.45, 296.0, 173.57], [0.0, 0.0, 500.0, 333.0]]}}
{"image_file": "000000289698.jpg", "image_link": "http://images.cocodataset.org/train2017/000000289698.jpg", "width": 640, "height": 480, "caption": "The cat is inside the bowl.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["cat", "bowl"], "label_positions": [[4, 7], [22, 26]], "bboxes": [[170.32, 23.74, 336.52, 451.1], [464.92, 96.78, 94.4, 76.53]]}}
{"image_file": "000000087813.jpg", "image_link": "http://images.cocodataset.org/train2017/000000087813.jpg", "width": 640, "height": 393, "caption": "The cake has as a part the person.", "label": 1, "relation": "has as a part", "ref_exp": {"labels": ["cake", "person"], "label_positions": [[4, 8], [27, 33]], "bboxes": [[291.17, 2.41, 329.61, 390.59], [466.2, 48.44, 32.74, 82.4]]}}
{"image_file": "000000376625.jpg", "image_link": "http://images.cocodataset.org/val2017/000000376625.jpg", "width": 640, "height": 427, "caption": "The train is in front of the motorcycle.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["train", "motorcycle"], "label_positions": [[4, 9], [29, 39]], "bboxes": [[248.82, 97.0, 193.99, 242.49], [215.53, 245.59, 7.64, 12.53]]}}
{"image_file": "000000421457.jpg", "image_link": "http://images.cocodataset.org/train2017/000000421457.jpg", "width": 500, "height": 400, "caption": "The cat is in the microwave.", "label": 0, "relation": "in", "ref_exp": {"labels": ["cat", "microwave"], "label_positions": [[4, 7], [18, 27]], "bboxes": [[124.73, 69.03, 269.25, 281.29], [2.69, 230.49, 442.15, 165.03]]}}
{"image_file": "000000036417.jpg", "image_link": "http://images.cocodataset.org/train2017/000000036417.jpg", "width": 640, "height": 480, "caption": "The book is under the banana.", "label": 0, "relation": "under", "ref_exp": {"labels": ["book", "banana"], "label_positions": [[4, 8], [22, 28]], "bboxes": [[150.57, 123.79, 86.47, 26.2], [36.83, 113.68, 564.39, 283.22]]}}
{"image_file": "000000360045.jpg", "image_link": "http://images.cocodataset.org/train2017/000000360045.jpg", "width": 640, "height": 483, "caption": "The dog is beneath the bench.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["dog", "bench"], "label_positions": [[4, 7], [23, 28]], "bboxes": [[216.81, 137.52, 301.57, 243.73], [1.09, 70.55, 353.83, 352.75]]}}
{"image_file": "000000116006.jpg", "image_link": "http://images.cocodataset.org/train2017/000000116006.jpg", "width": 640, "height": 427, "caption": "The train contains the bicycle.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["train", "bicycle"], "label_positions": [[4, 9], [23, 30]], "bboxes": [[77.72, 124.74, 480.74, 187.11], [583.5, 243.04, 29.5, 41.0]]}}
{"image_file": "000000347328.jpg", "image_link": "http://images.cocodataset.org/train2017/000000347328.jpg", "width": 480, "height": 640, "caption": "The couch is under the cat.", "label": 0, "relation": "under", "ref_exp": {"labels": ["couch", "cat"], "label_positions": [[4, 9], [23, 26]], "bboxes": [[20.65, 63.31, 459.35, 350.97], [310.78, 507.24, 169.16, 132.76]]}}
{"image_file": "000000549580.jpg", "image_link": "http://images.cocodataset.org/train2017/000000549580.jpg", "width": 640, "height": 426, "caption": "The cake is touching the cat.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cake", "cat"], "label_positions": [[4, 8], [25, 28]], "bboxes": [[99.85, 315.19, 198.43, 110.81], [290.41, 0.0, 316.98, 395.77]]}}
{"image_file": "000000148977.jpg", "image_link": "http://images.cocodataset.org/train2017/000000148977.jpg", "width": 500, "height": 375, "caption": "The bottle is away from the teddy bear.", "label": 1, "relation": "away from", "ref_exp": {"labels": ["bottle", "teddy bear"], "label_positions": [[4, 10], [28, 38]], "bboxes": [[40.24, 1.29, 80.47, 105.42], [79.39, 60.39, 326.86, 310.81]]}}
{"image_file": "000000274271.jpg", "image_link": "http://images.cocodataset.org/train2017/000000274271.jpg", "width": 640, "height": 401, "caption": "The hot dog is left of the bowl.", "label": 1, "relation": "left of", "ref_exp": {"labels": ["hot dog", "bowl"], "label_positions": [[4, 11], [27, 31]], "bboxes": [[44.35, 99.13, 393.45, 251.93], [417.22, 164.91, 196.45, 154.09]]}}
{"image_file": "000000370638.jpg", "image_link": "http://images.cocodataset.org/train2017/000000370638.jpg", "width": 640, "height": 427, "caption": "The cat is on the chair.", "label": 1, "relation": "on", "ref_exp": {"labels": ["cat", "chair"], "label_positions": [[4, 7], [18, 23]], "bboxes": [[266.76, 102.67, 235.08, 310.9], [433.41, 2.12, 205.7, 372.82]]}}
{"image_file": "000000576084.jpg", "image_link": "http://images.cocodataset.org/train2017/000000576084.jpg", "width": 640, "height": 360, "caption": "The cup is below the cow.", "label": 1, "relation": "below", "ref_exp": {"labels": ["cup", "cow"], "label_positions": [[4, 7], [21, 24]], "bboxes": [[311.72, 274.1, 24.26, 28.96], [222.19, 0.77, 295.75, 242.33]]}}
{"image_file": "000000263098.jpg", "image_link": "http://images.cocodataset.org/train2017/000000263098.jpg", "width": 640, "height": 432, "caption": "The teddy bear is on top of the bicycle.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["teddy bear", "bicycle"], "label_positions": [[4, 14], [32, 39]], "bboxes": [[185.84, 126.0, 375.57, 279.24], [219.75, 60.31, 110.79, 76.86]]}}
{"image_file": "000000003093.jpg", "image_link": "http://images.cocodataset.org/train2017/000000003093.jpg", "width": 640, "height": 480, "caption": "The banana is in the bowl.", "label": 1, "relation": "in", "ref_exp": {"labels": ["banana", "bowl"], "label_positions": [[4, 10], [21, 25]], "bboxes": [[373.21, 23.8, 202.79, 186.61], [287.57, 20.54, 336.21, 315.68]]}}
{"image_file": "000000338766.jpg", "image_link": "http://images.cocodataset.org/train2017/000000338766.jpg", "width": 640, "height": 480, "caption": "The person is far from the zebra.", "label": 1, "relation": "far from", "ref_exp": {"labels": ["person", "zebra"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[612.26, 137.84, 27.74, 100.32], [94.71, 166.82, 302.42, 200.18]]}}
{"image_file": "000000168781.jpg", "image_link": "http://images.cocodataset.org/train2017/000000168781.jpg", "width": 640, "height": 480, "caption": "The truck is far away from the horse.", "label": 1, "relation": "far away from", "ref_exp": {"labels": ["truck", "horse"], "label_positions": [[4, 9], [31, 36]], "bboxes": [[0.18, 285.75, 18.71, 30.23], [176.9, 190.92, 461.66, 289.08]]}}
{"image_file": "000000401455.jpg", "image_link": "http://images.cocodataset.org/train2017/000000401455.jpg", "width": 640, "height": 480, "caption": "The dining table is down from the cow.", "label": 0, "relation": "down from", "ref_exp": {"labels": ["dining table", "cow"], "label_positions": [[4, 16], [34, 37]], "bboxes": [[2.26, 252.64, 472.09, 219.11], [0.24, 145.13, 121.14, 79.82]]}}
{"image_file": "000000567636.jpg", "image_link": "http://images.cocodataset.org/train2017/000000567636.jpg", "width": 640, "height": 480, "caption": "The person is with the banana.", "label": 0, "relation": "with", "ref_exp": {"labels": ["person", "banana"], "label_positions": [[4, 10], [23, 29]], "bboxes": [[176.9, 33.44, 198.47, 441.17], [489.65, 255.5, 36.56, 15.27]]}}
{"image_file": "000000126514.jpg", "image_link": "http://images.cocodataset.org/train2017/000000126514.jpg", "width": 640, "height": 480, "caption": "The teddy bear is part of the cake.", "label": 1, "relation": "part of", "ref_exp": {"labels": ["teddy bear", "cake"], "label_positions": [[4, 14], [30, 34]], "bboxes": [[302.02, 93.84, 116.5, 161.8], [0.0, 1.08, 640.0, 473.53]]}}
{"image_file": "000000413247.jpg", "image_link": "http://images.cocodataset.org/val2017/000000413247.jpg", "width": 640, "height": 426, "caption": "The laptop is in front of the backpack.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["laptop", "backpack"], "label_positions": [[4, 10], [30, 38]], "bboxes": [[0.65, 149.45, 317.75, 235.7], [436.09, 274.97, 203.91, 136.03]]}}
{"image_file": "000000458052.jpg", "image_link": "http://images.cocodataset.org/train2017/000000458052.jpg", "width": 640, "height": 468, "caption": "The cat is at the edge of the bed.", "label": 0, "relation": "at the edge of", "ref_exp": {"labels": ["cat", "bed"], "label_positions": [[4, 7], [30, 33]], "bboxes": [[190.22, 31.27, 384.46, 257.65], [0.0, 1.68, 640.0, 466.32]]}}
{"image_file": "000000335332.jpg", "image_link": "http://images.cocodataset.org/train2017/000000335332.jpg", "width": 640, "height": 343, "caption": "The oven is in front of the dining table.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["oven", "dining table"], "label_positions": [[4, 8], [28, 40]], "bboxes": [[210.42, 2.31, 45.48, 83.25], [0.69, 68.59, 639.31, 270.14]]}}
{"image_file": "000000316700.jpg", "image_link": "http://images.cocodataset.org/train2017/000000316700.jpg", "width": 640, "height": 458, "caption": "The sandwich is on top of the broccoli.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["sandwich", "broccoli"], "label_positions": [[4, 12], [30, 38]], "bboxes": [[166.73, 20.58, 234.66, 183.2], [16.53, 232.8, 43.13, 60.01]]}}
{"image_file": "000000393086.jpg", "image_link": "http://images.cocodataset.org/train2017/000000393086.jpg", "width": 500, "height": 375, "caption": "The cow is far from the train.", "label": 0, "relation": "far from", "ref_exp": {"labels": ["cow", "train"], "label_positions": [[4, 7], [24, 29]], "bboxes": [[18.64, 203.72, 60.3, 41.08], [0.0, 60.67, 499.72, 167.7]]}}
{"image_file": "000000124185.jpg", "image_link": "http://images.cocodataset.org/train2017/000000124185.jpg", "width": 500, "height": 375, "caption": "The umbrella is on the dining table.", "label": 1, "relation": "on", "ref_exp": {"labels": ["umbrella", "dining table"], "label_positions": [[4, 12], [23, 35]], "bboxes": [[94.8, 225.75, 171.98, 145.14], [0.97, 1.08, 499.03, 370.15]]}}
{"image_file": "000000350648.jpg", "image_link": "http://images.cocodataset.org/train2017/000000350648.jpg", "width": 640, "height": 480, "caption": "The orange is at the right side of the cup.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["orange", "cup"], "label_positions": [[4, 10], [39, 42]], "bboxes": [[414.49, 300.42, 158.12, 108.43], [69.96, 23.25, 286.27, 422.96]]}}
{"image_file": "000000384391.jpg", "image_link": "http://images.cocodataset.org/train2017/000000384391.jpg", "width": 640, "height": 480, "caption": "The sandwich is in front of the banana.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["sandwich", "banana"], "label_positions": [[4, 12], [32, 38]], "bboxes": [[162.16, 222.7, 289.73, 247.57], [322.54, 0.0, 317.46, 317.26]]}}
{"image_file": "000000454731.jpg", "image_link": "http://images.cocodataset.org/train2017/000000454731.jpg", "width": 640, "height": 361, "caption": "The banana is in the bowl.", "label": 0, "relation": "in", "ref_exp": {"labels": ["banana", "bowl"], "label_positions": [[4, 10], [21, 25]], "bboxes": [[241.75, 171.22, 398.25, 183.34], [334.29, 1.94, 304.06, 189.89]]}}
{"image_file": "000000561326.jpg", "image_link": "http://images.cocodataset.org/train2017/000000561326.jpg", "width": 612, "height": 612, "caption": "The laptop is at the right side of the cake.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["laptop", "cake"], "label_positions": [[4, 10], [39, 43]], "bboxes": [[4.76, 248.84, 347.22, 353.57], [309.58, 276.9, 296.69, 225.03]]}}
{"image_file": "000000116675.jpg", "image_link": "http://images.cocodataset.org/train2017/000000116675.jpg", "width": 640, "height": 427, "caption": "The elephant is in front of the truck.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["elephant", "truck"], "label_positions": [[4, 12], [32, 37]], "bboxes": [[157.37, 71.97, 367.5, 285.94], [0.0, 173.68, 273.47, 175.6]]}}
{"image_file": "000000217016.jpg", "image_link": "http://images.cocodataset.org/train2017/000000217016.jpg", "width": 640, "height": 480, "caption": "The surfboard is on top of the car.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["surfboard", "car"], "label_positions": [[4, 13], [31, 34]], "bboxes": [[196.08, 98.76, 209.35, 58.8], [123.9, 138.69, 377.5, 242.05]]}}
{"image_file": "000000068878.jpg", "image_link": "http://images.cocodataset.org/train2017/000000068878.jpg", "width": 640, "height": 640, "caption": "The car is under the cat.", "label": 1, "relation": "under", "ref_exp": {"labels": ["car", "cat"], "label_positions": [[4, 7], [21, 24]], "bboxes": [[34.41, 379.87, 573.93, 235.36], [194.06, 246.37, 144.52, 196.81]]}}
{"image_file": "000000022374.jpg", "image_link": "http://images.cocodataset.org/train2017/000000022374.jpg", "width": 640, "height": 480, "caption": "The cat is perpendicular to the dining table.", "label": 1, "relation": "perpendicular to", "ref_exp": {"labels": ["cat", "dining table"], "label_positions": [[4, 7], [32, 44]], "bboxes": [[88.39, 50.51, 274.44, 350.49], [0.0, 102.43, 522.92, 370.45]]}}
{"image_file": "000000263968.jpg", "image_link": "http://images.cocodataset.org/train2017/000000263968.jpg", "width": 360, "height": 640, "caption": "The umbrella is in front of the bed.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["umbrella", "bed"], "label_positions": [[4, 12], [32, 35]], "bboxes": [[0.0, 2.88, 360.0, 270.38], [131.86, 474.26, 228.14, 150.17]]}}
{"image_file": "000000231322.jpg", "image_link": "http://images.cocodataset.org/train2017/000000231322.jpg", "width": 640, "height": 427, "caption": "The cake is at the left side of the person.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["cake", "person"], "label_positions": [[4, 8], [36, 42]], "bboxes": [[76.42, 239.86, 412.67, 181.5], [198.63, 89.08, 263.87, 189.03]]}}
{"image_file": "000000121619.jpg", "image_link": "http://images.cocodataset.org/train2017/000000121619.jpg", "width": 640, "height": 427, "caption": "The parking meter is touching the person.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["parking meter", "person"], "label_positions": [[4, 17], [34, 40]], "bboxes": [[380.0, 215.27, 102.56, 209.55], [81.75, 0.48, 303.75, 426.52]]}}
{"image_file": "000000028251.jpg", "image_link": "http://images.cocodataset.org/train2017/000000028251.jpg", "width": 640, "height": 480, "caption": "The elephant is on the truck.", "label": 0, "relation": "on", "ref_exp": {"labels": ["elephant", "truck"], "label_positions": [[4, 12], [23, 28]], "bboxes": [[144.54, 61.48, 404.49, 327.91], [0.0, 220.24, 104.16, 59.06]]}}
{"image_file": "000000281351.jpg", "image_link": "http://images.cocodataset.org/train2017/000000281351.jpg", "width": 640, "height": 480, "caption": "The cat is on top of the laptop.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "laptop"], "label_positions": [[4, 7], [25, 31]], "bboxes": [[45.3, 96.0, 526.39, 324.67], [138.24, 244.18, 386.6, 85.54]]}}
{"image_file": "000000230851.jpg", "image_link": "http://images.cocodataset.org/train2017/000000230851.jpg", "width": 640, "height": 480, "caption": "The laptop is on the couch.", "label": 0, "relation": "on", "ref_exp": {"labels": ["laptop", "couch"], "label_positions": [[4, 10], [21, 26]], "bboxes": [[76.14, 100.16, 190.82, 158.6], [0.0, 133.88, 640.0, 301.42]]}}
{"image_file": "000000298853.jpg", "image_link": "http://images.cocodataset.org/train2017/000000298853.jpg", "width": 640, "height": 480, "caption": "The cat contains the refrigerator.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["cat", "refrigerator"], "label_positions": [[4, 7], [21, 33]], "bboxes": [[8.64, 426.48, 93.61, 53.52], [114.08, 0.0, 387.44, 436.95]]}}
{"image_file": "000000498537.jpg", "image_link": "http://images.cocodataset.org/train2017/000000498537.jpg", "width": 640, "height": 640, "caption": "The sandwich is in the bowl.", "label": 0, "relation": "in", "ref_exp": {"labels": ["sandwich", "bowl"], "label_positions": [[4, 12], [23, 27]], "bboxes": [[4.35, 136.5, 217.69, 348.3], [188.4, 128.0, 451.6, 483.24]]}}
{"image_file": "000000400285.jpg", "image_link": "http://images.cocodataset.org/train2017/000000400285.jpg", "width": 486, "height": 500, "caption": "The cat is at the right side of the teddy bear.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["cat", "teddy bear"], "label_positions": [[4, 7], [36, 46]], "bboxes": [[267.42, 3.37, 214.6, 455.06], [33.71, 81.84, 337.08, 411.23]]}}
{"image_file": "000000493243.jpg", "image_link": "http://images.cocodataset.org/train2017/000000493243.jpg", "width": 612, "height": 612, "caption": "The person is touching the hot dog.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "hot dog"], "label_positions": [[4, 10], [27, 34]], "bboxes": [[1.38, 0.0, 276.43, 181.12], [218.88, 87.84, 334.08, 426.24]]}}
{"image_file": "000000382081.jpg", "image_link": "http://images.cocodataset.org/train2017/000000382081.jpg", "width": 640, "height": 480, "caption": "The cow is opposite to the person.", "label": 1, "relation": "opposite to", "ref_exp": {"labels": ["cow", "person"], "label_positions": [[4, 7], [27, 33]], "bboxes": [[283.87, 149.51, 355.1, 325.16], [28.61, 78.79, 236.26, 401.21]]}}
{"image_file": "000000388658.jpg", "image_link": "http://images.cocodataset.org/train2017/000000388658.jpg", "width": 466, "height": 640, "caption": "The dog is beneath the cat.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["dog", "cat"], "label_positions": [[4, 7], [23, 26]], "bboxes": [[147.6, 33.21, 198.2, 289.45], [115.97, 369.53, 313.56, 243.4]]}}
{"image_file": "000000040419.jpg", "image_link": "http://images.cocodataset.org/train2017/000000040419.jpg", "width": 640, "height": 428, "caption": "The cat is at the side of the couch.", "label": 0, "relation": "at the side of", "ref_exp": {"labels": ["cat", "couch"], "label_positions": [[4, 7], [30, 35]], "bboxes": [[20.25, 98.49, 561.46, 301.9], [0.96, 0.67, 593.43, 271.22]]}}
{"image_file": "000000579201.jpg", "image_link": "http://images.cocodataset.org/train2017/000000579201.jpg", "width": 640, "height": 427, "caption": "The laptop is under the apple.", "label": 0, "relation": "under", "ref_exp": {"labels": ["laptop", "apple"], "label_positions": [[4, 10], [24, 29]], "bboxes": [[0.0, 2.22, 640.0, 313.87], [319.5, 139.65, 246.15, 238.12]]}}
{"image_file": "000000434270.jpg", "image_link": "http://images.cocodataset.org/train2017/000000434270.jpg", "width": 640, "height": 480, "caption": "The elephant is part of the stop sign.", "label": 0, "relation": "part of", "ref_exp": {"labels": ["elephant", "stop sign"], "label_positions": [[4, 12], [28, 37]], "bboxes": [[166.11, 175.89, 234.07, 297.71], [81.81, 299.6, 14.66, 23.78]]}}
{"image_file": "000000499033.jpg", "image_link": "http://images.cocodataset.org/train2017/000000499033.jpg", "width": 426, "height": 640, "caption": "The potted plant is in the middle of the chair.", "label": 1, "relation": "in the middle of", "ref_exp": {"labels": ["potted plant", "chair"], "label_positions": [[4, 16], [41, 46]], "bboxes": [[18.29, 119.69, 332.46, 452.15], [152.98, 354.53, 225.69, 285.47]]}}
{"image_file": "000000083850.jpg", "image_link": "http://images.cocodataset.org/train2017/000000083850.jpg", "width": 640, "height": 480, "caption": "The dining table is beneath the pizza.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["dining table", "pizza"], "label_positions": [[4, 16], [32, 37]], "bboxes": [[7.56, 0.0, 632.44, 480.0], [118.65, 207.1, 389.39, 218.97]]}}
{"image_file": "000000259819.jpg", "image_link": "http://images.cocodataset.org/train2017/000000259819.jpg", "width": 500, "height": 375, "caption": "The bed is beneath the suitcase.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["bed", "suitcase"], "label_positions": [[4, 7], [23, 31]], "bboxes": [[0.0, 23.6, 500.0, 346.34], [28.65, 1.69, 471.35, 270.5]]}}
{"image_file": "000000115400.jpg", "image_link": "http://images.cocodataset.org/train2017/000000115400.jpg", "width": 480, "height": 640, "caption": "The car is perpendicular to the bus.", "label": 1, "relation": "perpendicular to", "ref_exp": {"labels": ["car", "bus"], "label_positions": [[4, 7], [32, 35]], "bboxes": [[1.88, 344.41, 478.12, 286.53], [255.46, 252.55, 224.54, 169.86]]}}
{"image_file": "000000086229.jpg", "image_link": "http://images.cocodataset.org/train2017/000000086229.jpg", "width": 640, "height": 480, "caption": "The cat is inside the suitcase.", "label": 1, "relation": "inside", "ref_exp": {"labels": ["cat", "suitcase"], "label_positions": [[4, 7], [22, 30]], "bboxes": [[187.87, 173.42, 449.03, 187.87], [0.0, 0.0, 640.0, 472.5]]}}
{"image_file": "000000542307.jpg", "image_link": "http://images.cocodataset.org/train2017/000000542307.jpg", "width": 406, "height": 640, "caption": "The airplane is far away from the bus.", "label": 1, "relation": "far away from", "ref_exp": {"labels": ["airplane", "bus"], "label_positions": [[4, 12], [34, 37]], "bboxes": [[323.72, 62.81, 26.46, 30.99], [3.9, 451.62, 402.1, 186.96]]}}
{"image_file": "000000561324.jpg", "image_link": "http://images.cocodataset.org/train2017/000000561324.jpg", "width": 640, "height": 442, "caption": "The bench is under the giraffe.", "label": 1, "relation": "under", "ref_exp": {"labels": ["bench", "giraffe"], "label_positions": [[4, 9], [23, 30]], "bboxes": [[0.99, 69.53, 385.39, 342.67], [250.1, 211.99, 181.28, 230.01]]}}
{"image_file": "000000358265.jpg", "image_link": "http://images.cocodataset.org/train2017/000000358265.jpg", "width": 640, "height": 427, "caption": "The truck is facing away from the elephant.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["truck", "elephant"], "label_positions": [[4, 9], [34, 42]], "bboxes": [[0.42, 175.86, 273.46, 165.54], [157.37, 62.37, 371.34, 294.58]]}}
{"image_file": "000000084609.jpg", "image_link": "http://images.cocodataset.org/train2017/000000084609.jpg", "width": 500, "height": 375, "caption": "The cat is on top of the chair.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "chair"], "label_positions": [[4, 7], [25, 30]], "bboxes": [[74.19, 169.35, 382.26, 195.97], [0.0, 0.04, 500.0, 374.96]]}}
{"image_file": "000000260321.jpg", "image_link": "http://images.cocodataset.org/train2017/000000260321.jpg", "width": 640, "height": 428, "caption": "The car is on top of the dining table.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["car", "dining table"], "label_positions": [[4, 7], [25, 37]], "bboxes": [[456.95, 37.94, 79.19, 38.93], [2.01, 153.07, 637.47, 267.88]]}}
{"image_file": "000000573796.jpg", "image_link": "http://images.cocodataset.org/train2017/000000573796.jpg", "width": 428, "height": 640, "caption": "The dining table is touching the apple.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["dining table", "apple"], "label_positions": [[4, 16], [33, 38]], "bboxes": [[1.51, 528.56, 423.15, 100.9], [173.18, 423.15, 218.35, 195.77]]}}
{"image_file": "000000001622.jpg", "image_link": "http://images.cocodataset.org/train2017/000000001622.jpg", "width": 333, "height": 500, "caption": "The dog is on the toilet.", "label": 1, "relation": "on", "ref_exp": {"labels": ["dog", "toilet"], "label_positions": [[4, 7], [18, 24]], "bboxes": [[39.39, 34.06, 261.62, 319.19], [1.12, 222.28, 331.88, 271.91]]}}
{"image_file": "000000239323.jpg", "image_link": "http://images.cocodataset.org/train2017/000000239323.jpg", "width": 480, "height": 640, "caption": "The bowl is in front of the cat.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["bowl", "cat"], "label_positions": [[4, 8], [28, 31]], "bboxes": [[1.44, 418.52, 283.32, 221.48], [46.39, 106.12, 301.12, 363.05]]}}
{"image_file": "000000137227.jpg", "image_link": "http://images.cocodataset.org/train2017/000000137227.jpg", "width": 640, "height": 427, "caption": "The cup is on top of the book.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["cup", "book"], "label_positions": [[4, 7], [25, 29]], "bboxes": [[0.0, 1.91, 467.21, 418.39], [421.42, 157.92, 218.58, 268.68]]}}
{"image_file": "000000028134.jpg", "image_link": "http://images.cocodataset.org/train2017/000000028134.jpg", "width": 480, "height": 640, "caption": "The bird is on top of the book.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["bird", "book"], "label_positions": [[4, 8], [26, 30]], "bboxes": [[129.82, 196.26, 199.49, 385.22], [41.26, 234.59, 38.26, 38.84]]}}
{"image_file": "000000525247.jpg", "image_link": "http://images.cocodataset.org/val2017/000000525247.jpg", "width": 640, "height": 427, "caption": "The cat is touching the laptop.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cat", "laptop"], "label_positions": [[4, 7], [24, 30]], "bboxes": [[2.76, 96.17, 381.91, 319.33], [195.75, 22.07, 443.31, 399.17]]}}
{"image_file": "000000021747.jpg", "image_link": "http://images.cocodataset.org/train2017/000000021747.jpg", "width": 640, "height": 439, "caption": "The pizza is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["pizza", "person"], "label_positions": [[4, 9], [26, 32]], "bboxes": [[176.38, 286.57, 120.39, 65.33], [118.8, 92.36, 328.2, 345.3]]}}
{"image_file": "000000393542.jpg", "image_link": "http://images.cocodataset.org/train2017/000000393542.jpg", "width": 640, "height": 424, "caption": "The bicycle is beneath the teddy bear.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["bicycle", "teddy bear"], "label_positions": [[4, 11], [27, 37]], "bboxes": [[142.25, 71.12, 412.14, 322.79], [247.73, 55.26, 135.3, 147.69]]}}
{"image_file": "000000108315.jpg", "image_link": "http://images.cocodataset.org/train2017/000000108315.jpg", "width": 500, "height": 375, "caption": "The dog is at the edge of the bed.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["dog", "bed"], "label_positions": [[4, 7], [30, 33]], "bboxes": [[126.26, 223.79, 372.73, 151.06], [0.0, 1.9, 500.0, 368.25]]}}
{"image_file": "000000255244.jpg", "image_link": "http://images.cocodataset.org/train2017/000000255244.jpg", "width": 500, "height": 375, "caption": "The cat is at the left side of the potted plant.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["cat", "potted plant"], "label_positions": [[4, 7], [35, 47]], "bboxes": [[1.79, 39.49, 473.92, 326.07], [266.73, 26.32, 37.61, 62.08]]}}
{"image_file": "000000251803.jpg", "image_link": "http://images.cocodataset.org/train2017/000000251803.jpg", "width": 640, "height": 483, "caption": "The train is under the clock.", "label": 1, "relation": "under", "ref_exp": {"labels": ["train", "clock"], "label_positions": [[4, 9], [23, 28]], "bboxes": [[158.47, 160.64, 403.76, 252.89], [249.56, 105.23, 33.47, 31.3]]}}
{"image_file": "000000172406.jpg", "image_link": "http://images.cocodataset.org/train2017/000000172406.jpg", "width": 640, "height": 428, "caption": "The bus is alongside the horse.", "label": 0, "relation": "alongside", "ref_exp": {"labels": ["bus", "horse"], "label_positions": [[4, 7], [25, 30]], "bboxes": [[407.63, 170.19, 100.17, 109.13], [0.93, 110.48, 433.57, 292.45]]}}
{"image_file": "000000194528.jpg", "image_link": "http://images.cocodataset.org/train2017/000000194528.jpg", "width": 640, "height": 480, "caption": "The elephant is away from the bench.", "label": 0, "relation": "away from", "ref_exp": {"labels": ["elephant", "bench"], "label_positions": [[4, 12], [30, 35]], "bboxes": [[341.88, 188.15, 78.76, 75.59], [1.08, 124.04, 634.25, 349.49]]}}
{"image_file": "000000198751.jpg", "image_link": "http://images.cocodataset.org/train2017/000000198751.jpg", "width": 425, "height": 640, "caption": "The bicycle is against the parking meter.", "label": 0, "relation": "against", "ref_exp": {"labels": ["bicycle", "parking meter"], "label_positions": [[4, 11], [27, 40]], "bboxes": [[207.5, 288.02, 98.66, 58.77], [159.64, 145.26, 251.69, 484.67]]}}
{"image_file": "000000480656.jpg", "image_link": "http://images.cocodataset.org/train2017/000000480656.jpg", "width": 500, "height": 355, "caption": "The dog is on the teddy bear.", "label": 0, "relation": "on", "ref_exp": {"labels": ["dog", "teddy bear"], "label_positions": [[4, 7], [18, 28]], "bboxes": [[7.16, 8.3, 483.83, 297.03], [142.0, 34.3, 348.62, 314.32]]}}
{"image_file": "000000083580.jpg", "image_link": "http://images.cocodataset.org/train2017/000000083580.jpg", "width": 640, "height": 426, "caption": "The car is at the side of the surfboard.", "label": 1, "relation": "at the side of", "ref_exp": {"labels": ["car", "surfboard"], "label_positions": [[4, 7], [30, 39]], "bboxes": [[499.09, 116.68, 52.83, 42.31], [0.96, 5.74, 576.29, 418.35]]}}
{"image_file": "000000480991.jpg", "image_link": "http://images.cocodataset.org/train2017/000000480991.jpg", "width": 640, "height": 480, "caption": "The backpack is surrounding the cat.", "label": 1, "relation": "surrounding", "ref_exp": {"labels": ["backpack", "cat"], "label_positions": [[4, 12], [32, 35]], "bboxes": [[0.0, 87.05, 532.23, 302.17], [174.45, 48.52, 251.87, 242.58]]}}
{"image_file": "000000569024.jpg", "image_link": "http://images.cocodataset.org/train2017/000000569024.jpg", "width": 640, "height": 480, "caption": "The teddy bear is behind the mouse.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["teddy bear", "mouse"], "label_positions": [[4, 14], [29, 34]], "bboxes": [[0.0, 191.02, 102.21, 82.09], [60.54, 201.62, 445.41, 209.73]]}}
{"image_file": "000000287221.jpg", "image_link": "http://images.cocodataset.org/train2017/000000287221.jpg", "width": 640, "height": 480, "caption": "The dining table is at the right side of the chair.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["dining table", "chair"], "label_positions": [[4, 16], [45, 50]], "bboxes": [[478.39, 204.1, 161.61, 191.01], [19.95, 0.0, 484.99, 473.77]]}}
{"image_file": "000000565110.jpg", "image_link": "http://images.cocodataset.org/train2017/000000565110.jpg", "width": 640, "height": 480, "caption": "The umbrella is above the cat.", "label": 1, "relation": "above", "ref_exp": {"labels": ["umbrella", "cat"], "label_positions": [[4, 12], [26, 29]], "bboxes": [[70.11, 51.78, 569.53, 419.59], [104.26, 185.81, 241.55, 291.09]]}}
{"image_file": "000000118605.jpg", "image_link": "http://images.cocodataset.org/train2017/000000118605.jpg", "width": 480, "height": 640, "caption": "The person is left of the potted plant.", "label": 0, "relation": "left of", "ref_exp": {"labels": ["person", "potted plant"], "label_positions": [[4, 10], [26, 38]], "bboxes": [[52.3, 341.33, 407.4, 298.67], [1.43, 2.87, 243.95, 255.43]]}}
{"image_file": "000000318365.jpg", "image_link": "http://images.cocodataset.org/train2017/000000318365.jpg", "width": 427, "height": 640, "caption": "The teddy bear is on the toilet.", "label": 0, "relation": "on", "ref_exp": {"labels": ["teddy bear", "toilet"], "label_positions": [[4, 14], [25, 31]], "bboxes": [[168.11, 3.35, 228.6, 378.48], [99.24, 359.65, 316.4, 270.38]]}}
{"image_file": "000000171809.jpg", "image_link": "http://images.cocodataset.org/train2017/000000171809.jpg", "width": 640, "height": 480, "caption": "The cat is at the edge of the bench.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["cat", "bench"], "label_positions": [[4, 7], [30, 35]], "bboxes": [[79.82, 96.0, 368.9, 213.57], [0.0, 17.33, 508.04, 440.09]]}}
{"image_file": "000000054091.jpg", "image_link": "http://images.cocodataset.org/train2017/000000054091.jpg", "width": 640, "height": 480, "caption": "The laptop is facing away from the chair.", "label": 0, "relation": "facing away from", "ref_exp": {"labels": ["laptop", "chair"], "label_positions": [[4, 10], [35, 40]], "bboxes": [[327.42, 311.35, 127.05, 42.86], [141.62, 151.89, 336.22, 321.08]]}}
{"image_file": "000000511594.jpg", "image_link": "http://images.cocodataset.org/train2017/000000511594.jpg", "width": 640, "height": 480, "caption": "The cow is at the right side of the chair.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["cow", "chair"], "label_positions": [[4, 7], [36, 41]], "bboxes": [[280.77, 240.52, 277.68, 237.42], [535.62, 303.58, 27.17, 52.17]]}}
{"image_file": "000000021963.jpg", "image_link": "http://images.cocodataset.org/train2017/000000021963.jpg", "width": 640, "height": 427, "caption": "The person is on the bear.", "label": 0, "relation": "on", "ref_exp": {"labels": ["person", "bear"], "label_positions": [[4, 10], [21, 25]], "bboxes": [[536.61, 129.06, 103.39, 102.76], [0.96, 0.0, 443.31, 369.43]]}}
{"image_file": "000000263456.jpg", "image_link": "http://images.cocodataset.org/train2017/000000263456.jpg", "width": 500, "height": 500, "caption": "The bed is above the handbag.", "label": 1, "relation": "above", "ref_exp": {"labels": ["bed", "handbag"], "label_positions": [[4, 7], [21, 28]], "bboxes": [[79.09, 46.86, 331.86, 442.25], [464.96, 350.97, 35.04, 53.84]]}}
{"image_file": "000000001622.jpg", "image_link": "http://images.cocodataset.org/train2017/000000001622.jpg", "width": 333, "height": 500, "caption": "The dog is at the right side of the toilet.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["dog", "toilet"], "label_positions": [[4, 7], [36, 42]], "bboxes": [[39.39, 34.06, 261.62, 319.19], [1.12, 222.28, 331.88, 271.91]]}}
{"image_file": "000000410962.jpg", "image_link": "http://images.cocodataset.org/train2017/000000410962.jpg", "width": 427, "height": 640, "caption": "The broccoli is at the left side of the person.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["broccoli", "person"], "label_positions": [[4, 12], [40, 46]], "bboxes": [[13.58, 14.34, 315.48, 341.13], [0.0, 31.74, 89.17, 209.97]]}}
{"image_file": "000000496606.jpg", "image_link": "http://images.cocodataset.org/train2017/000000496606.jpg", "width": 574, "height": 640, "caption": "The dog is at the edge of the bench.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["dog", "bench"], "label_positions": [[4, 7], [30, 35]], "bboxes": [[86.8, 99.76, 389.96, 457.33], [0.0, 4.31, 574.0, 628.5]]}}
{"image_file": "000000386694.jpg", "image_link": "http://images.cocodataset.org/train2017/000000386694.jpg", "width": 480, "height": 640, "caption": "The boat contains the dining table.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["boat", "dining table"], "label_positions": [[4, 8], [22, 34]], "bboxes": [[237.99, 189.84, 191.36, 89.7], [1.44, 389.91, 345.95, 242.16]]}}
{"image_file": "000000422960.jpg", "image_link": "http://images.cocodataset.org/train2017/000000422960.jpg", "width": 480, "height": 640, "caption": "The cake contains the train.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["cake", "train"], "label_positions": [[4, 8], [22, 27]], "bboxes": [[38.77, 225.94, 398.17, 336.59], [91.43, 66.49, 246.02, 259.33]]}}
{"image_file": "000000444343.jpg", "image_link": "http://images.cocodataset.org/train2017/000000444343.jpg", "width": 640, "height": 428, "caption": "The cat is above the teddy bear.", "label": 1, "relation": "above", "ref_exp": {"labels": ["cat", "teddy bear"], "label_positions": [[4, 7], [21, 31]], "bboxes": [[436.56, 31.26, 92.19, 46.78], [348.17, 62.52, 206.79, 341.44]]}}
{"image_file": "000000424225.jpg", "image_link": "http://images.cocodataset.org/train2017/000000424225.jpg", "width": 480, "height": 640, "caption": "The bed is beneath the person.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["bed", "person"], "label_positions": [[4, 7], [23, 29]], "bboxes": [[358.11, 268.7, 121.89, 245.94], [0.0, 3.0, 473.91, 629.98]]}}
{"image_file": "000000434385.jpg", "image_link": "http://images.cocodataset.org/train2017/000000434385.jpg", "width": 640, "height": 478, "caption": "The apple is touching the cat.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["apple", "cat"], "label_positions": [[4, 9], [26, 29]], "bboxes": [[232.7, 29.49, 72.89, 108.7], [193.26, 17.54, 293.99, 400.91]]}}
{"image_file": "000000009801.jpg", "image_link": "http://images.cocodataset.org/train2017/000000009801.jpg", "width": 633, "height": 640, "caption": "The person is at the right side of the cat.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["person", "cat"], "label_positions": [[4, 10], [39, 42]], "bboxes": [[277.33, 357.45, 318.55, 247.13], [164.75, 387.63, 80.76, 103.53]]}}
{"image_file": "000000429959.jpg", "image_link": "http://images.cocodataset.org/train2017/000000429959.jpg", "width": 480, "height": 640, "caption": "The laptop is touching the couch.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["laptop", "couch"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[86.49, 240.72, 392.07, 347.39], [418.41, 123.87, 61.59, 139.01]]}}
{"image_file": "000000567076.jpg", "image_link": "http://images.cocodataset.org/train2017/000000567076.jpg", "width": 500, "height": 375, "caption": "The airplane contains the chair.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["airplane", "chair"], "label_positions": [[4, 12], [26, 31]], "bboxes": [[62.5, 77.28, 152.03, 85.3], [229.87, 81.82, 258.12, 288.31]]}}
{"image_file": "000000430397.jpg", "image_link": "http://images.cocodataset.org/train2017/000000430397.jpg", "width": 425, "height": 640, "caption": "The person is touching the orange.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "orange"], "label_positions": [[4, 10], [27, 33]], "bboxes": [[0.0, 4.86, 425.0, 625.56], [209.47, 379.85, 137.7, 178.64]]}}
{"image_file": "000000271595.jpg", "image_link": "http://images.cocodataset.org/train2017/000000271595.jpg", "width": 640, "height": 359, "caption": "The cat is on the couch.", "label": 1, "relation": "on", "ref_exp": {"labels": ["cat", "couch"], "label_positions": [[4, 7], [18, 23]], "bboxes": [[252.46, 64.08, 203.05, 129.7], [2.32, 0.39, 637.54, 354.35]]}}
{"image_file": "000000537636.jpg", "image_link": "http://images.cocodataset.org/train2017/000000537636.jpg", "width": 500, "height": 375, "caption": "The dog is facing the teddy bear.", "label": 1, "relation": "facing", "ref_exp": {"labels": ["dog", "teddy bear"], "label_positions": [[4, 7], [22, 32]], "bboxes": [[190.15, 0.0, 309.09, 370.45], [0.0, 160.81, 371.67, 214.04]]}}
{"image_file": "000000151567.jpg", "image_link": "http://images.cocodataset.org/train2017/000000151567.jpg", "width": 375, "height": 500, "caption": "The person is at the left side of the sink.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["person", "sink"], "label_positions": [[4, 10], [38, 42]], "bboxes": [[2.24, 1.79, 348.66, 225.34], [1.39, 289.63, 353.11, 209.32]]}}
{"image_file": "000000106993.jpg", "image_link": "http://images.cocodataset.org/train2017/000000106993.jpg", "width": 640, "height": 427, "caption": "The bowl is touching the hot dog.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["bowl", "hot dog"], "label_positions": [[4, 8], [25, 32]], "bboxes": [[430.61, 204.07, 209.39, 222.57], [13.06, 26.12, 362.7, 370.74]]}}
{"image_file": "000000111819.jpg", "image_link": "http://images.cocodataset.org/train2017/000000111819.jpg", "width": 640, "height": 480, "caption": "The elephant is facing away from the bus.", "label": 0, "relation": "facing away from", "ref_exp": {"labels": ["elephant", "bus"], "label_positions": [[4, 12], [37, 40]], "bboxes": [[0.0, 33.25, 430.67, 399.92], [316.04, 3.24, 323.96, 433.61]]}}
{"image_file": "000000485595.jpg", "image_link": "http://images.cocodataset.org/train2017/000000485595.jpg", "width": 640, "height": 480, "caption": "The person is in front of the bench.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["person", "bench"], "label_positions": [[4, 10], [30, 35]], "bboxes": [[83.06, 28.04, 212.49, 446.57], [360.42, 273.67, 273.84, 83.76]]}}
{"image_file": "000000213579.jpg", "image_link": "http://images.cocodataset.org/train2017/000000213579.jpg", "width": 640, "height": 360, "caption": "The cake is at the left side of the person.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["cake", "person"], "label_positions": [[4, 8], [36, 42]], "bboxes": [[58.04, 198.43, 131.94, 66.73], [215.19, 0.0, 424.81, 355.96]]}}
{"image_file": "000000507287.jpg", "image_link": "http://images.cocodataset.org/train2017/000000507287.jpg", "width": 640, "height": 440, "caption": "The cat is facing the backpack.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["cat", "backpack"], "label_positions": [[4, 7], [22, 30]], "bboxes": [[25.6, 62.11, 322.42, 185.86], [0.0, 187.43, 612.57, 243.43]]}}
{"image_file": "000000420522.jpg", "image_link": "http://images.cocodataset.org/train2017/000000420522.jpg", "width": 375, "height": 500, "caption": "The cup is beneath the donut.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["cup", "donut"], "label_positions": [[4, 7], [23, 28]], "bboxes": [[39.75, 340.04, 144.93, 151.65], [27.36, 63.4, 312.34, 258.89]]}}
{"image_file": "000000509000.jpg", "image_link": "http://images.cocodataset.org/train2017/000000509000.jpg", "width": 640, "height": 373, "caption": "The cat is touching the carrot.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["cat", "carrot"], "label_positions": [[4, 7], [24, 30]], "bboxes": [[5.97, 112.44, 612.52, 238.04], [363.86, 197.58, 96.32, 57.71]]}}
{"image_file": "000000305278.jpg", "image_link": "http://images.cocodataset.org/train2017/000000305278.jpg", "width": 426, "height": 640, "caption": "The bottle is touching the dog.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["bottle", "dog"], "label_positions": [[4, 10], [27, 30]], "bboxes": [[96.87, 283.86, 65.38, 159.58], [34.57, 47.94, 298.27, 346.39]]}}
{"image_file": "000000355357.jpg", "image_link": "http://images.cocodataset.org/train2017/000000355357.jpg", "width": 640, "height": 427, "caption": "The train is in front of the stop sign.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["train", "stop sign"], "label_positions": [[4, 9], [29, 38]], "bboxes": [[111.12, 304.67, 66.98, 37.87], [190.95, 10.56, 232.21, 240.84]]}}
{"image_file": "000000546013.jpg", "image_link": "http://images.cocodataset.org/train2017/000000546013.jpg", "width": 640, "height": 480, "caption": "The cat is behind the teddy bear.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["cat", "teddy bear"], "label_positions": [[4, 7], [22, 32]], "bboxes": [[182.07, 190.86, 246.21, 210.0], [53.64, 250.8, 264.45, 229.2]]}}
{"image_file": "000000114710.jpg", "image_link": "http://images.cocodataset.org/train2017/000000114710.jpg", "width": 640, "height": 426, "caption": "The person is in front of the sheep.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["person", "sheep"], "label_positions": [[4, 10], [30, 35]], "bboxes": [[337.53, 38.22, 214.44, 382.73], [224.45, 160.96, 191.47, 160.33]]}}
{"image_file": "000000349511.jpg", "image_link": "http://images.cocodataset.org/train2017/000000349511.jpg", "width": 640, "height": 480, "caption": "The dining table is under the cat.", "label": 0, "relation": "under", "ref_exp": {"labels": ["dining table", "cat"], "label_positions": [[4, 16], [30, 33]], "bboxes": [[1.08, 115.68, 638.92, 358.91], [230.59, 46.45, 117.27, 84.73]]}}
{"image_file": "000000282221.jpg", "image_link": "http://images.cocodataset.org/train2017/000000282221.jpg", "width": 640, "height": 480, "caption": "The bed is touching the book.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["bed", "book"], "label_positions": [[4, 7], [24, 28]], "bboxes": [[1.08, 217.89, 602.96, 256.72], [314.41, 291.86, 95.77, 31.64]]}}
{"image_file": "000000419755.jpg", "image_link": "http://images.cocodataset.org/train2017/000000419755.jpg", "width": 427, "height": 640, "caption": "The sheep is at the left side of the person.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["sheep", "person"], "label_positions": [[4, 9], [37, 43]], "bboxes": [[137.34, 220.66, 289.66, 410.64], [18.57, 82.59, 317.14, 445.72]]}}
{"image_file": "000000413245.jpg", "image_link": "http://images.cocodataset.org/train2017/000000413245.jpg", "width": 640, "height": 457, "caption": "The cake has as a part the dog.", "label": 0, "relation": "has as a part", "ref_exp": {"labels": ["cake", "dog"], "label_positions": [[4, 8], [27, 30]], "bboxes": [[136.16, 161.51, 93.87, 81.76], [179.5, 166.64, 460.5, 290.36]]}}
{"image_file": "000000506641.jpg", "image_link": "http://images.cocodataset.org/train2017/000000506641.jpg", "width": 640, "height": 480, "caption": "The oven is at the right side of the person.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["oven", "person"], "label_positions": [[4, 8], [37, 43]], "bboxes": [[1.08, 353.8, 354.88, 120.81], [205.41, 50.27, 290.81, 423.78]]}}
{"image_file": "000000227370.jpg", "image_link": "http://images.cocodataset.org/train2017/000000227370.jpg", "width": 640, "height": 404, "caption": "The teddy bear is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["teddy bear", "person"], "label_positions": [[4, 14], [31, 37]], "bboxes": [[229.57, 263.09, 277.46, 84.06], [0.91, 0.0, 639.09, 344.08]]}}
{"image_file": "000000005577.jpg", "image_link": "http://images.cocodataset.org/train2017/000000005577.jpg", "width": 640, "height": 480, "caption": "The backpack contains the cat.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["backpack", "cat"], "label_positions": [[4, 12], [26, 29]], "bboxes": [[358.11, 2.16, 281.53, 357.03], [29.94, 101.16, 335.48, 226.07]]}}
{"image_file": "000000453485.jpg", "image_link": "http://images.cocodataset.org/train2017/000000453485.jpg", "width": 640, "height": 427, "caption": "The person is at the left side of the oven.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["person", "oven"], "label_positions": [[4, 10], [38, 42]], "bboxes": [[106.29, 69.8, 163.93, 357.05], [342.56, 344.48, 257.16, 77.72]]}}
{"image_file": "000000016733.jpg", "image_link": "http://images.cocodataset.org/train2017/000000016733.jpg", "width": 640, "height": 375, "caption": "The pizza is in front of the book.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["pizza", "book"], "label_positions": [[4, 9], [29, 33]], "bboxes": [[280.62, 144.94, 342.98, 208.99], [285.53, 61.27, 109.16, 44.6]]}}
{"image_file": "000000538259.jpg", "image_link": "http://images.cocodataset.org/train2017/000000538259.jpg", "width": 480, "height": 640, "caption": "The bench is touching the teddy bear.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["bench", "teddy bear"], "label_positions": [[4, 9], [26, 36]], "bboxes": [[0.0, 0.0, 479.28, 632.83], [84.85, 8.63, 379.69, 622.74]]}}
{"image_file": "000000035547.jpg", "image_link": "http://images.cocodataset.org/train2017/000000035547.jpg", "width": 640, "height": 427, "caption": "The cow is at the left side of the person.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["cow", "person"], "label_positions": [[4, 7], [35, 41]], "bboxes": [[1.11, 51.71, 395.87, 369.17], [303.58, 0.0, 336.42, 427.0]]}}
{"image_file": "000000475108.jpg", "image_link": "http://images.cocodataset.org/train2017/000000475108.jpg", "width": 640, "height": 427, "caption": "The suitcase is below the cat.", "label": 1, "relation": "below", "ref_exp": {"labels": ["suitcase", "cat"], "label_positions": [[4, 12], [26, 29]], "bboxes": [[2.88, 0.96, 636.18, 420.28], [98.26, 1.84, 484.85, 348.02]]}}
{"image_file": "000000275855.jpg", "image_link": "http://images.cocodataset.org/train2017/000000275855.jpg", "width": 640, "height": 426, "caption": "The laptop is near the couch.", "label": 1, "relation": "near", "ref_exp": {"labels": ["laptop", "couch"], "label_positions": [[4, 10], [23, 28]], "bboxes": [[168.68, 150.67, 324.03, 269.7], [0.0, 142.77, 198.31, 275.43]]}}
{"image_file": "000000422185.jpg", "image_link": "http://images.cocodataset.org/train2017/000000422185.jpg", "width": 640, "height": 479, "caption": "The dog is at the left side of the horse.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["dog", "horse"], "label_positions": [[4, 7], [35, 40]], "bboxes": [[357.56, 0.0, 261.19, 373.08], [0.0, 90.65, 291.52, 219.41]]}}
{"image_file": "000000207738.jpg", "image_link": "http://images.cocodataset.org/train2017/000000207738.jpg", "width": 640, "height": 480, "caption": "The banana is at the right side of the orange.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["banana", "orange"], "label_positions": [[4, 10], [39, 45]], "bboxes": [[50.7, 71.01, 588.94, 385.08], [404.33, 23.53, 235.67, 273.32]]}}
{"image_file": "000000293820.jpg", "image_link": "http://images.cocodataset.org/train2017/000000293820.jpg", "width": 640, "height": 427, "caption": "The person is at the right side of the cake.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["person", "cake"], "label_positions": [[4, 10], [39, 43]], "bboxes": [[0.0, 34.48, 323.83, 362.04], [0.0, 320.49, 640.0, 100.75]]}}
{"image_file": "000000306822.jpg", "image_link": "http://images.cocodataset.org/train2017/000000306822.jpg", "width": 640, "height": 480, "caption": "The chair is behind the laptop.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["chair", "laptop"], "label_positions": [[4, 9], [24, 30]], "bboxes": [[33.99, 191.55, 60.82, 111.83], [168.37, 2.75, 471.63, 345.52]]}}
{"image_file": "000000485368.jpg", "image_link": "http://images.cocodataset.org/train2017/000000485368.jpg", "width": 640, "height": 480, "caption": "The dining table is at the left side of the person.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["dining table", "person"], "label_positions": [[4, 16], [44, 50]], "bboxes": [[0.0, 0.0, 640.0, 472.45], [1.25, 38.65, 259.32, 266.8]]}}
{"image_file": "000000158806.jpg", "image_link": "http://images.cocodataset.org/train2017/000000158806.jpg", "width": 640, "height": 359, "caption": "The sandwich is facing the dog.", "label": 1, "relation": "facing", "ref_exp": {"labels": ["sandwich", "dog"], "label_positions": [[4, 12], [27, 30]], "bboxes": [[376.75, 143.6, 263.25, 179.9], [0.73, 0.0, 308.23, 355.98]]}}
{"image_file": "000000409985.jpg", "image_link": "http://images.cocodataset.org/train2017/000000409985.jpg", "width": 480, "height": 640, "caption": "The pizza is under the tv.", "label": 0, "relation": "under", "ref_exp": {"labels": ["pizza", "tv"], "label_positions": [[4, 9], [23, 25]], "bboxes": [[66.16, 422.83, 381.12, 205.66], [171.91, 117.63, 36.92, 18.46]]}}
{"image_file": "000000490117.jpg", "image_link": "http://images.cocodataset.org/train2017/000000490117.jpg", "width": 640, "height": 426, "caption": "The cat is part of the cake.", "label": 1, "relation": "part of", "ref_exp": {"labels": ["cat", "cake"], "label_positions": [[4, 7], [23, 27]], "bboxes": [[278.28, 69.66, 108.65, 98.16], [131.69, 33.12, 357.16, 366.14]]}}
{"image_file": "000000011340.jpg", "image_link": "http://images.cocodataset.org/train2017/000000011340.jpg", "width": 640, "height": 426, "caption": "The car is perpendicular to the elephant.", "label": 0, "relation": "perpendicular to", "ref_exp": {"labels": ["car", "elephant"], "label_positions": [[4, 7], [32, 40]], "bboxes": [[376.33, 102.2, 263.63, 319.02], [48.97, 90.35, 401.02, 294.93]]}}
{"image_file": "000000205355.jpg", "image_link": "http://images.cocodataset.org/train2017/000000205355.jpg", "width": 640, "height": 428, "caption": "The bed is under the person.", "label": 0, "relation": "under", "ref_exp": {"labels": ["bed", "person"], "label_positions": [[4, 7], [21, 27]], "bboxes": [[230.31, 1.87, 248.55, 269.66], [372.06, 36.88, 267.94, 231.1]]}}
{"image_file": "000000062716.jpg", "image_link": "http://images.cocodataset.org/train2017/000000062716.jpg", "width": 640, "height": 480, "caption": "The broccoli is on top of the pizza.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["broccoli", "pizza"], "label_positions": [[4, 12], [30, 35]], "bboxes": [[383.57, 199.88, 49.31, 30.88], [114.34, 239.46, 282.6, 213.57]]}}
{"image_file": "000000206255.jpg", "image_link": "http://images.cocodataset.org/train2017/000000206255.jpg", "width": 480, "height": 640, "caption": "The bed is beneath the car.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["bed", "car"], "label_positions": [[4, 7], [23, 26]], "bboxes": [[2.87, 292.74, 473.54, 337.22], [116.99, 419.56, 158.28, 97.72]]}}
{"image_file": "000000418409.jpg", "image_link": "http://images.cocodataset.org/train2017/000000418409.jpg", "width": 640, "height": 480, "caption": "The person is at the right side of the couch.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["person", "couch"], "label_positions": [[4, 10], [39, 44]], "bboxes": [[67.8, 37.67, 517.67, 436.95], [0.0, 129.66, 640.0, 342.86]]}}
{"image_file": "000000116696.jpg", "image_link": "http://images.cocodataset.org/train2017/000000116696.jpg", "width": 480, "height": 640, "caption": "The cake is facing away from the person.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["cake", "person"], "label_positions": [[4, 8], [33, 39]], "bboxes": [[109.48, 189.2, 290.54, 375.64], [0.0, 10.01, 91.26, 272.31]]}}
{"image_file": "000000219567.jpg", "image_link": "http://images.cocodataset.org/train2017/000000219567.jpg", "width": 346, "height": 504, "caption": "The toilet is left of the cat.", "label": 0, "relation": "left of", "ref_exp": {"labels": ["toilet", "cat"], "label_positions": [[4, 10], [26, 29]], "bboxes": [[40.77, 29.45, 305.23, 466.62], [48.98, 203.29, 199.21, 85.99]]}}
{"image_file": "000000138699.jpg", "image_link": "http://images.cocodataset.org/train2017/000000138699.jpg", "width": 500, "height": 388, "caption": "The cat is in the vase.", "label": 0, "relation": "in", "ref_exp": {"labels": ["cat", "vase"], "label_positions": [[4, 7], [18, 22]], "bboxes": [[19.55, 58.97, 301.01, 329.03], [292.09, 181.09, 131.66, 201.41]]}}
{"image_file": "000000338924.jpg", "image_link": "http://images.cocodataset.org/train2017/000000338924.jpg", "width": 496, "height": 640, "caption": "The book is beside the pizza.", "label": 0, "relation": "beside", "ref_exp": {"labels": ["book", "pizza"], "label_positions": [[4, 8], [23, 28]], "bboxes": [[241.27, 147.75, 200.36, 59.89], [52.04, 298.03, 366.71, 261.07]]}}
{"image_file": "000000316089.jpg", "image_link": "http://images.cocodataset.org/train2017/000000316089.jpg", "width": 640, "height": 481, "caption": "The bench is above the cat.", "label": 0, "relation": "above", "ref_exp": {"labels": ["bench", "cat"], "label_positions": [[4, 9], [23, 26]], "bboxes": [[0.0, 1.25, 639.67, 479.75], [101.97, 40.51, 443.92, 415.09]]}}
{"image_file": "000000302240.jpg", "image_link": "http://images.cocodataset.org/train2017/000000302240.jpg", "width": 640, "height": 480, "caption": "The person is facing the refrigerator.", "label": 1, "relation": "facing", "ref_exp": {"labels": ["person", "refrigerator"], "label_positions": [[4, 10], [25, 37]], "bboxes": [[290.58, 80.84, 325.03, 394.98], [0.0, 118.92, 324.67, 352.72]]}}
{"image_file": "000000063740.jpg", "image_link": "http://images.cocodataset.org/val2017/000000063740.jpg", "width": 640, "height": 480, "caption": "The orange is below the laptop.", "label": 1, "relation": "below", "ref_exp": {"labels": ["orange", "laptop"], "label_positions": [[4, 10], [24, 30]], "bboxes": [[262.4, 291.46, 46.19, 41.0], [393.71, 50.52, 220.04, 203.86]]}}
{"image_file": "000000168775.jpg", "image_link": "http://images.cocodataset.org/train2017/000000168775.jpg", "width": 434, "height": 640, "caption": "The horse is on the dining table.", "label": 1, "relation": "on", "ref_exp": {"labels": ["horse", "dining table"], "label_positions": [[4, 9], [20, 32]], "bboxes": [[255.82, 542.05, 83.07, 83.07], [178.13, 471.49, 255.87, 168.51]]}}
{"image_file": "000000418372.jpg", "image_link": "http://images.cocodataset.org/train2017/000000418372.jpg", "width": 640, "height": 478, "caption": "The banana is far away from the cake.", "label": 0, "relation": "far away from", "ref_exp": {"labels": ["banana", "cake"], "label_positions": [[4, 10], [32, 36]], "bboxes": [[251.93, 4.5, 388.07, 283.42], [243.81, 170.13, 363.58, 300.49]]}}
{"image_file": "000000521906.jpg", "image_link": "http://images.cocodataset.org/train2017/000000521906.jpg", "width": 500, "height": 375, "caption": "The person is with the scissors.", "label": 0, "relation": "with", "ref_exp": {"labels": ["person", "scissors"], "label_positions": [[4, 10], [23, 31]], "bboxes": [[179.9, 1.27, 320.1, 372.46], [71.63, 127.83, 35.39, 107.02]]}}
{"image_file": "000000017914.jpg", "image_link": "http://images.cocodataset.org/train2017/000000017914.jpg", "width": 500, "height": 375, "caption": "The bed is at the side of the laptop.", "label": 0, "relation": "at the side of", "ref_exp": {"labels": ["bed", "laptop"], "label_positions": [[4, 7], [30, 36]], "bboxes": [[79.1, 35.16, 420.9, 333.98], [155.9, 51.4, 251.97, 323.6]]}}
{"image_file": "000000507794.jpg", "image_link": "http://images.cocodataset.org/train2017/000000507794.jpg", "width": 464, "height": 640, "caption": "The person is close to the oven.", "label": 1, "relation": "close to", "ref_exp": {"labels": ["person", "oven"], "label_positions": [[4, 10], [27, 31]], "bboxes": [[151.01, 46.02, 312.99, 585.35], [2.88, 142.38, 253.12, 428.59]]}}
{"image_file": "000000041132.jpg", "image_link": "http://images.cocodataset.org/train2017/000000041132.jpg", "width": 500, "height": 375, "caption": "The backpack is inside the suitcase.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["backpack", "suitcase"], "label_positions": [[4, 12], [27, 35]], "bboxes": [[71.89, 32.06, 379.86, 342.75], [69.77, 32.14, 421.67, 342.6]]}}
{"image_file": "000000432917.jpg", "image_link": "http://images.cocodataset.org/train2017/000000432917.jpg", "width": 640, "height": 532, "caption": "The truck is next to the sheep.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["truck", "sheep"], "label_positions": [[4, 9], [25, 30]], "bboxes": [[11.98, 8.31, 306.74, 301.94], [49.3, 176.57, 458.62, 342.82]]}}
{"image_file": "000000381875.jpg", "image_link": "http://images.cocodataset.org/train2017/000000381875.jpg", "width": 640, "height": 432, "caption": "The cat is at the right side of the person.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["cat", "person"], "label_positions": [[4, 7], [36, 42]], "bboxes": [[56.79, 13.03, 583.21, 393.83], [404.82, 0.0, 233.96, 214.54]]}}
{"image_file": "000000093333.jpg", "image_link": "http://images.cocodataset.org/train2017/000000093333.jpg", "width": 640, "height": 428, "caption": "The cow is parallel to the car.", "label": 0, "relation": "parallel to", "ref_exp": {"labels": ["cow", "car"], "label_positions": [[4, 7], [27, 30]], "bboxes": [[0.0, 133.22, 483.58, 245.68], [467.19, 45.33, 41.69, 23.31]]}}
{"image_file": "000000542205.jpg", "image_link": "http://images.cocodataset.org/train2017/000000542205.jpg", "width": 640, "height": 480, "caption": "The bird is beneath the umbrella.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["bird", "umbrella"], "label_positions": [[4, 8], [24, 32]], "bboxes": [[44.48, 41.9, 258.62, 412.76], [424.54, 100.65, 124.24, 44.4]]}}
{"image_file": "000000212248.jpg", "image_link": "http://images.cocodataset.org/train2017/000000212248.jpg", "width": 480, "height": 640, "caption": "The hot dog is connected to the person.", "label": 1, "relation": "connected to", "ref_exp": {"labels": ["hot dog", "person"], "label_positions": [[4, 11], [32, 38]], "bboxes": [[33.24, 280.21, 103.31, 96.9], [0.0, 37.69, 479.88, 602.31]]}}
{"image_file": "000000159465.jpg", "image_link": "http://images.cocodataset.org/train2017/000000159465.jpg", "width": 612, "height": 612, "caption": "The truck is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["truck", "person"], "label_positions": [[4, 9], [26, 32]], "bboxes": [[121.39, 251.89, 359.21, 245.54], [353.76, 351.22, 53.0, 138.36]]}}
{"image_file": "000000228477.jpg", "image_link": "http://images.cocodataset.org/train2017/000000228477.jpg", "width": 640, "height": 426, "caption": "The bus is perpendicular to the car.", "label": 0, "relation": "perpendicular to", "ref_exp": {"labels": ["bus", "car"], "label_positions": [[4, 7], [32, 35]], "bboxes": [[1.91, 0.09, 461.26, 410.75], [578.99, 155.74, 61.01, 86.12]]}}
{"image_file": "000000260347.jpg", "image_link": "http://images.cocodataset.org/train2017/000000260347.jpg", "width": 640, "height": 480, "caption": "The cup is touching the banana.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cup", "banana"], "label_positions": [[4, 7], [24, 30]], "bboxes": [[222.7, 23.78, 210.81, 342.71], [410.97, 218.64, 168.27, 253.48]]}}
{"image_file": "000000415768.jpg", "image_link": "http://images.cocodataset.org/train2017/000000415768.jpg", "width": 640, "height": 427, "caption": "The oven contains the bowl.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["oven", "bowl"], "label_positions": [[4, 8], [22, 26]], "bboxes": [[2.22, 1.11, 637.78, 420.34], [0.96, 0.24, 585.33, 423.16]]}}
{"image_file": "000000574769.jpg", "image_link": "http://images.cocodataset.org/train2017/000000574769.jpg", "width": 480, "height": 640, "caption": "The person is at the left side of the refrigerator.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["person", "refrigerator"], "label_positions": [[4, 10], [38, 50]], "bboxes": [[103.32, 133.45, 231.03, 421.89], [357.53, 143.94, 122.4, 399.47]]}}
{"image_file": "000000044719.jpg", "image_link": "http://images.cocodataset.org/train2017/000000044719.jpg", "width": 640, "height": 480, "caption": "The person is touching the cat.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "cat"], "label_positions": [[4, 10], [27, 30]], "bboxes": [[0.0, 1.08, 560.9, 469.21], [0.0, 256.55, 266.9, 218.28]]}}
{"image_file": "000000073904.jpg", "image_link": "http://images.cocodataset.org/train2017/000000073904.jpg", "width": 640, "height": 480, "caption": "The hot dog is in the middle of the dining table.", "label": 0, "relation": "in the middle of", "ref_exp": {"labels": ["hot dog", "dining table"], "label_positions": [[4, 11], [36, 48]], "bboxes": [[80.19, 192.0, 232.66, 245.08], [5.41, 77.77, 634.59, 395.67]]}}
{"image_file": "000000355124.jpg", "image_link": "http://images.cocodataset.org/train2017/000000355124.jpg", "width": 500, "height": 375, "caption": "The chair is beneath the hair drier.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["chair", "hair drier"], "label_positions": [[4, 9], [25, 35]], "bboxes": [[0.0, 0.0, 500.0, 375.0], [86.8, 9.27, 356.46, 348.03]]}}
{"image_file": "000000024081.jpg", "image_link": "http://images.cocodataset.org/train2017/000000024081.jpg", "width": 640, "height": 480, "caption": "The toaster is right of the person.", "label": 1, "relation": "right of", "ref_exp": {"labels": ["toaster", "person"], "label_positions": [[4, 11], [28, 34]], "bboxes": [[537.94, 177.55, 62.19, 31.09], [134.83, 11.54, 231.91, 461.66]]}}
{"image_file": "000000112228.jpg", "image_link": "http://images.cocodataset.org/train2017/000000112228.jpg", "width": 640, "height": 480, "caption": "The book is under the bird.", "label": 0, "relation": "under", "ref_exp": {"labels": ["book", "bird"], "label_positions": [[4, 8], [22, 26]], "bboxes": [[53.87, 120.57, 292.06, 199.73], [225.26, 287.82, 56.54, 42.03]]}}
{"image_file": "000000373395.jpg", "image_link": "http://images.cocodataset.org/train2017/000000373395.jpg", "width": 640, "height": 424, "caption": "The horse is in front of the train.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["horse", "train"], "label_positions": [[4, 9], [29, 34]], "bboxes": [[146.01, 244.87, 62.23, 82.37], [224.91, 67.85, 233.49, 237.71]]}}
{"image_file": "000000113707.jpg", "image_link": "http://images.cocodataset.org/train2017/000000113707.jpg", "width": 640, "height": 480, "caption": "The car is under the cat.", "label": 0, "relation": "under", "ref_exp": {"labels": ["car", "cat"], "label_positions": [[4, 7], [21, 24]], "bboxes": [[589.22, 25.22, 50.49, 32.83], [88.77, 142.45, 470.71, 239.49]]}}
{"image_file": "000000258523.jpg", "image_link": "http://images.cocodataset.org/train2017/000000258523.jpg", "width": 500, "height": 449, "caption": "The toilet is under the cat.", "label": 1, "relation": "under", "ref_exp": {"labels": ["toilet", "cat"], "label_positions": [[4, 10], [24, 27]], "bboxes": [[12.05, 124.65, 424.9, 319.42], [4.83, 2.9, 495.17, 368.85]]}}
{"image_file": "000000278411.jpg", "image_link": "http://images.cocodataset.org/train2017/000000278411.jpg", "width": 640, "height": 428, "caption": "The mouse is on the bed.", "label": 0, "relation": "on", "ref_exp": {"labels": ["mouse", "bed"], "label_positions": [[4, 9], [20, 23]], "bboxes": [[492.65, 174.04, 28.24, 22.84], [185.63, 276.1, 454.37, 145.23]]}}
{"image_file": "000000040419.jpg", "image_link": "http://images.cocodataset.org/train2017/000000040419.jpg", "width": 640, "height": 428, "caption": "The cat is at the left side of the couch.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["cat", "couch"], "label_positions": [[4, 7], [35, 40]], "bboxes": [[20.25, 98.49, 561.46, 301.9], [0.96, 0.67, 593.43, 271.22]]}}
{"image_file": "000000135410.jpg", "image_link": "http://images.cocodataset.org/val2017/000000135410.jpg", "width": 480, "height": 640, "caption": "The parking meter is in front of the motorcycle.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["parking meter", "motorcycle"], "label_positions": [[4, 17], [37, 47]], "bboxes": [[44.62, 216.43, 143.2, 319.56], [176.73, 252.22, 187.94, 110.78]]}}
{"image_file": "000000166631.jpg", "image_link": "http://images.cocodataset.org/train2017/000000166631.jpg", "width": 569, "height": 640, "caption": "The truck is away from the elephant.", "label": 1, "relation": "away from", "ref_exp": {"labels": ["truck", "elephant"], "label_positions": [[4, 9], [27, 35]], "bboxes": [[34.55, 292.79, 60.49, 44.86], [325.15, 169.53, 193.2, 470.47]]}}
{"image_file": "000000320015.jpg", "image_link": "http://images.cocodataset.org/train2017/000000320015.jpg", "width": 480, "height": 640, "caption": "The bed is touching the person.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["bed", "person"], "label_positions": [[4, 7], [24, 30]], "bboxes": [[0.0, 456.32, 480.0, 183.68], [47.46, 139.07, 401.26, 304.9]]}}
{"image_file": "000000156246.jpg", "image_link": "http://images.cocodataset.org/train2017/000000156246.jpg", "width": 640, "height": 640, "caption": "The person is touching the elephant.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "elephant"], "label_positions": [[4, 10], [27, 35]], "bboxes": [[366.53, 160.5, 247.7, 465.32], [12.94, 54.65, 444.41, 513.44]]}}
{"image_file": "000000369521.jpg", "image_link": "http://images.cocodataset.org/train2017/000000369521.jpg", "width": 640, "height": 480, "caption": "The chair is touching the dog.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["chair", "dog"], "label_positions": [[4, 9], [26, 29]], "bboxes": [[459.82, 0.0, 180.18, 179.38], [143.23, 175.16, 449.03, 304.65]]}}
{"image_file": "000000384160.jpg", "image_link": "http://images.cocodataset.org/train2017/000000384160.jpg", "width": 640, "height": 426, "caption": "The person is on the bed.", "label": 1, "relation": "on", "ref_exp": {"labels": ["person", "bed"], "label_positions": [[4, 10], [21, 24]], "bboxes": [[2.87, 143.6, 416.43, 282.4], [81.96, 1.05, 558.04, 422.18]]}}
{"image_file": "000000517764.jpg", "image_link": "http://images.cocodataset.org/train2017/000000517764.jpg", "width": 640, "height": 426, "caption": "The toilet contains the cat.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["toilet", "cat"], "label_positions": [[4, 10], [24, 27]], "bboxes": [[146.47, 0.96, 491.09, 425.04], [171.49, 32.97, 377.66, 272.75]]}}
{"image_file": "000000009002.jpg", "image_link": "http://images.cocodataset.org/train2017/000000009002.jpg", "width": 640, "height": 480, "caption": "The cat is touching the pizza.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cat", "pizza"], "label_positions": [[4, 7], [24, 29]], "bboxes": [[572.33, 101.03, 67.67, 57.75], [55.34, 109.36, 501.46, 203.3]]}}
{"image_file": "000000239536.jpg", "image_link": "http://images.cocodataset.org/train2017/000000239536.jpg", "width": 640, "height": 426, "caption": "The person is in front of the couch.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["person", "couch"], "label_positions": [[4, 10], [30, 35]], "bboxes": [[187.63, 14.07, 304.42, 402.06], [445.24, 43.06, 194.76, 382.94]]}}
{"image_file": "000000358287.jpg", "image_link": "http://images.cocodataset.org/train2017/000000358287.jpg", "width": 424, "height": 640, "caption": "The person is next to the vase.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["person", "vase"], "label_positions": [[4, 10], [26, 30]], "bboxes": [[300.77, 262.49, 80.42, 106.59], [0.0, 44.58, 297.71, 583.91]]}}
{"image_file": "000000358630.jpg", "image_link": "http://images.cocodataset.org/train2017/000000358630.jpg", "width": 640, "height": 427, "caption": "The truck is on the couch.", "label": 0, "relation": "on", "ref_exp": {"labels": ["truck", "couch"], "label_positions": [[4, 9], [20, 25]], "bboxes": [[44.21, 41.77, 456.19, 337.8], [169.84, 43.18, 224.54, 125.7]]}}
{"image_file": "000000516911.jpg", "image_link": "http://images.cocodataset.org/train2017/000000516911.jpg", "width": 640, "height": 480, "caption": "The bus is behind the cow.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["bus", "cow"], "label_positions": [[4, 7], [22, 25]], "bboxes": [[1.24, 2.42, 185.29, 210.16], [180.71, 226.04, 161.65, 183.72]]}}
{"image_file": "000000573881.jpg", "image_link": "http://images.cocodataset.org/train2017/000000573881.jpg", "width": 640, "height": 437, "caption": "The bicycle is behind the cat.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["bicycle", "cat"], "label_positions": [[4, 11], [26, 29]], "bboxes": [[0.94, 0.0, 639.06, 362.76], [119.35, 40.41, 116.54, 265.96]]}}
{"image_file": "000000323919.jpg", "image_link": "http://images.cocodataset.org/train2017/000000323919.jpg", "width": 640, "height": 460, "caption": "The car is behind the teddy bear.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["car", "teddy bear"], "label_positions": [[4, 7], [22, 32]], "bboxes": [[1.03, 1.03, 638.84, 452.77], [195.8, 247.99, 116.36, 126.74]]}}
{"image_file": "000000389458.jpg", "image_link": "http://images.cocodataset.org/train2017/000000389458.jpg", "width": 640, "height": 480, "caption": "The sandwich is at the right side of the person.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["sandwich", "person"], "label_positions": [[4, 12], [41, 47]], "bboxes": [[93.63, 341.81, 119.46, 132.38], [186.34, 3.65, 453.66, 469.39]]}}
{"image_file": "000000478981.jpg", "image_link": "http://images.cocodataset.org/train2017/000000478981.jpg", "width": 640, "height": 480, "caption": "The broccoli is on top of the pizza.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["broccoli", "pizza"], "label_positions": [[4, 12], [30, 35]], "bboxes": [[90.35, 49.35, 465.32, 316.23], [0.5, 0.0, 639.5, 479.35]]}}
{"image_file": "000000024223.jpg", "image_link": "http://images.cocodataset.org/train2017/000000024223.jpg", "width": 640, "height": 480, "caption": "The pizza is inside the oven.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["pizza", "oven"], "label_positions": [[4, 9], [24, 28]], "bboxes": [[129.44, 88.45, 453.03, 304.18], [2.16, 1.35, 637.84, 474.61]]}}
{"image_file": "000000375140.jpg", "image_link": "http://images.cocodataset.org/train2017/000000375140.jpg", "width": 479, "height": 640, "caption": "The suitcase is behind the dog.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["suitcase", "dog"], "label_positions": [[4, 12], [27, 30]], "bboxes": [[43.33, 312.5, 326.67, 255.0], [54.19, 0.77, 228.39, 443.88]]}}
{"image_file": "000000527571.jpg", "image_link": "http://images.cocodataset.org/train2017/000000527571.jpg", "width": 640, "height": 427, "caption": "The apple is close to the banana.", "label": 1, "relation": "close to", "ref_exp": {"labels": ["apple", "banana"], "label_positions": [[4, 9], [26, 32]], "bboxes": [[261.28, 259.89, 227.81, 167.11], [73.05, 146.89, 566.95, 141.91]]}}
{"image_file": "000000340004.jpg", "image_link": "http://images.cocodataset.org/train2017/000000340004.jpg", "width": 640, "height": 640, "caption": "The motorcycle is above the cat.", "label": 1, "relation": "above", "ref_exp": {"labels": ["motorcycle", "cat"], "label_positions": [[4, 14], [28, 31]], "bboxes": [[2.88, 3.6, 634.24, 445.41], [1.43, 285.06, 638.57, 283.49]]}}
{"image_file": "000000332833.jpg", "image_link": "http://images.cocodataset.org/train2017/000000332833.jpg", "width": 640, "height": 518, "caption": "The teddy bear is touching the person.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["teddy bear", "person"], "label_positions": [[4, 14], [31, 37]], "bboxes": [[208.36, 24.44, 339.91, 310.8], [41.84, 229.26, 560.52, 288.74]]}}
{"image_file": "000000528094.jpg", "image_link": "http://images.cocodataset.org/train2017/000000528094.jpg", "width": 403, "height": 640, "caption": "The person is touching the bird.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "bird"], "label_positions": [[4, 10], [27, 31]], "bboxes": [[59.1, 10.81, 309.91, 622.7], [178.59, 149.84, 138.15, 192.43]]}}
{"image_file": "000000173228.jpg", "image_link": "http://images.cocodataset.org/train2017/000000173228.jpg", "width": 640, "height": 426, "caption": "The oven is in front of the dining table.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["oven", "dining table"], "label_positions": [[4, 8], [28, 40]], "bboxes": [[117.75, 165.61, 221.14, 259.43], [315.74, 178.11, 130.31, 115.27]]}}
{"image_file": "000000363947.jpg", "image_link": "http://images.cocodataset.org/train2017/000000363947.jpg", "width": 640, "height": 428, "caption": "The bed is beneath the dining table.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["bed", "dining table"], "label_positions": [[4, 7], [23, 35]], "bboxes": [[1.93, 111.82, 557.17, 311.36], [511.28, 219.75, 82.6, 70.57]]}}
{"image_file": "000000140435.jpg", "image_link": "http://images.cocodataset.org/train2017/000000140435.jpg", "width": 480, "height": 640, "caption": "The bed is inside the truck.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["bed", "truck"], "label_positions": [[4, 7], [22, 27]], "bboxes": [[52.02, 328.07, 383.05, 264.82], [2.88, 142.38, 425.7, 342.29]]}}
{"image_file": "000000266071.jpg", "image_link": "http://images.cocodataset.org/train2017/000000266071.jpg", "width": 612, "height": 612, "caption": "The donut is behind the person.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["donut", "person"], "label_positions": [[4, 9], [24, 30]], "bboxes": [[1.38, 418.09, 391.95, 187.03], [24.6, 4.76, 587.4, 588.94]]}}
{"image_file": "000000160267.jpg", "image_link": "http://images.cocodataset.org/train2017/000000160267.jpg", "width": 429, "height": 640, "caption": "The person is next to the refrigerator.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["person", "refrigerator"], "label_positions": [[4, 10], [26, 38]], "bboxes": [[0.0, 3.0, 429.0, 556.96], [0.0, 0.0, 119.81, 268.97]]}}
{"image_file": "000000268102.jpg", "image_link": "http://images.cocodataset.org/train2017/000000268102.jpg", "width": 612, "height": 612, "caption": "The tv is under the cat.", "label": 0, "relation": "under", "ref_exp": {"labels": ["tv", "cat"], "label_positions": [[4, 6], [20, 23]], "bboxes": [[0.0, 1.44, 612.0, 525.6], [260.03, 122.93, 241.65, 425.51]]}}
{"image_file": "000000378087.jpg", "image_link": "http://images.cocodataset.org/train2017/000000378087.jpg", "width": 640, "height": 480, "caption": "The dog is facing away from the tv.", "label": 1, "relation": "facing away from", "ref_exp": {"labels": ["dog", "tv"], "label_positions": [[4, 7], [32, 34]], "bboxes": [[266.56, 296.68, 286.84, 183.32], [0.0, 2.0, 211.56, 289.39]]}}
{"image_file": "000000314822.jpg", "image_link": "http://images.cocodataset.org/train2017/000000314822.jpg", "width": 640, "height": 480, "caption": "The hot dog is in the middle of the dining table.", "label": 1, "relation": "in the middle of", "ref_exp": {"labels": ["hot dog", "dining table"], "label_positions": [[4, 11], [36, 48]], "bboxes": [[186.0, 285.66, 152.49, 115.49], [0.0, 36.79, 640.0, 438.62]]}}
{"image_file": "000000370493.jpg", "image_link": "http://images.cocodataset.org/train2017/000000370493.jpg", "width": 640, "height": 427, "caption": "The bicycle is behind the bench.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["bicycle", "bench"], "label_positions": [[4, 11], [26, 31]], "bboxes": [[259.08, 11.39, 153.47, 79.66], [0.96, 122.55, 631.88, 299.66]]}}
{"image_file": "000000332420.jpg", "image_link": "http://images.cocodataset.org/train2017/000000332420.jpg", "width": 640, "height": 480, "caption": "The cat is in the suitcase.", "label": 1, "relation": "in", "ref_exp": {"labels": ["cat", "suitcase"], "label_positions": [[4, 7], [18, 26]], "bboxes": [[251.87, 144.77, 258.07, 123.88], [0.0, 143.46, 551.19, 265.35]]}}
{"image_file": "000000580212.jpg", "image_link": "http://images.cocodataset.org/train2017/000000580212.jpg", "width": 640, "height": 480, "caption": "The hot dog is at the left side of the person.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["hot dog", "person"], "label_positions": [[4, 11], [39, 45]], "bboxes": [[138.0, 255.0, 172.0, 52.5], [150.0, 121.47, 331.21, 358.43]]}}
{"image_file": "000000228506.jpg", "image_link": "http://images.cocodataset.org/train2017/000000228506.jpg", "width": 640, "height": 451, "caption": "The bed is beside the handbag.", "label": 0, "relation": "beside", "ref_exp": {"labels": ["bed", "handbag"], "label_positions": [[4, 7], [22, 29]], "bboxes": [[1.01, 346.44, 454.04, 100.34], [0.57, 80.44, 293.49, 315.8]]}}
{"image_file": "000000220770.jpg", "image_link": "http://images.cocodataset.org/train2017/000000220770.jpg", "width": 640, "height": 494, "caption": "The cow is at the right side of the person.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["cow", "person"], "label_positions": [[4, 7], [36, 42]], "bboxes": [[66.61, 107.68, 466.24, 325.26], [490.67, 86.59, 106.57, 321.93]]}}
{"image_file": "000000518966.jpg", "image_link": "http://images.cocodataset.org/train2017/000000518966.jpg", "width": 427, "height": 640, "caption": "The car is connected to the surfboard.", "label": 0, "relation": "connected to", "ref_exp": {"labels": ["car", "surfboard"], "label_positions": [[4, 7], [28, 37]], "bboxes": [[300.39, 106.37, 33.26, 32.23], [158.2, 142.38, 208.54, 457.35]]}}
{"image_file": "000000180479.jpg", "image_link": "http://images.cocodataset.org/train2017/000000180479.jpg", "width": 640, "height": 480, "caption": "The pizza is in the oven.", "label": 0, "relation": "in", "ref_exp": {"labels": ["pizza", "oven"], "label_positions": [[4, 9], [20, 24]], "bboxes": [[91.69, 127.28, 453.03, 276.14], [0.0, 68.2, 312.73, 411.8]]}}
{"image_file": "000000472462.jpg", "image_link": "http://images.cocodataset.org/train2017/000000472462.jpg", "width": 480, "height": 640, "caption": "The dog is at the right side of the apple.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["dog", "apple"], "label_positions": [[4, 7], [36, 41]], "bboxes": [[0.07, 136.38, 226.41, 187.03], [177.69, 344.85, 299.67, 236.42]]}}
{"image_file": "000000241283.jpg", "image_link": "http://images.cocodataset.org/train2017/000000241283.jpg", "width": 640, "height": 482, "caption": "The person is facing the book.", "label": 1, "relation": "facing", "ref_exp": {"labels": ["person", "book"], "label_positions": [[4, 10], [25, 29]], "bboxes": [[15.1, 14.12, 559.63, 467.88], [155.62, 204.26, 250.73, 135.09]]}}
{"image_file": "000000423380.jpg", "image_link": "http://images.cocodataset.org/train2017/000000423380.jpg", "width": 480, "height": 640, "caption": "The cat is at the edge of the sink.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["cat", "sink"], "label_positions": [[4, 7], [30, 34]], "bboxes": [[63.45, 199.31, 416.55, 321.38], [1.44, 327.91, 455.91, 302.02]]}}
{"image_file": "000000377853.jpg", "image_link": "http://images.cocodataset.org/train2017/000000377853.jpg", "width": 610, "height": 423, "caption": "The person is facing away from the giraffe.", "label": 0, "relation": "facing away from", "ref_exp": {"labels": ["person", "giraffe"], "label_positions": [[4, 10], [35, 42]], "bboxes": [[438.28, 173.54, 171.72, 112.68], [0.0, 40.78, 402.18, 377.58]]}}
{"image_file": "000000349133.jpg", "image_link": "http://images.cocodataset.org/train2017/000000349133.jpg", "width": 640, "height": 480, "caption": "The pizza is above the book.", "label": 1, "relation": "above", "ref_exp": {"labels": ["pizza", "book"], "label_positions": [[4, 9], [23, 27]], "bboxes": [[83.06, 99.24, 409.88, 277.21], [0.12, 264.81, 639.64, 215.19]]}}
{"image_file": "000000262371.jpg", "image_link": "http://images.cocodataset.org/train2017/000000262371.jpg", "width": 640, "height": 480, "caption": "The cat is by the backpack.", "label": 0, "relation": "by", "ref_exp": {"labels": ["cat", "backpack"], "label_positions": [[4, 7], [18, 26]], "bboxes": [[126.49, 56.76, 387.02, 225.94], [0.0, 149.61, 592.21, 324.16]]}}
{"image_file": "000000288729.jpg", "image_link": "http://images.cocodataset.org/train2017/000000288729.jpg", "width": 480, "height": 640, "caption": "The cake is beneath the teddy bear.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["cake", "teddy bear"], "label_positions": [[4, 8], [24, 34]], "bboxes": [[4.32, 165.77, 475.68, 464.14], [218.86, 499.01, 123.62, 140.06]]}}
{"image_file": "000000298680.jpg", "image_link": "http://images.cocodataset.org/train2017/000000298680.jpg", "width": 640, "height": 426, "caption": "The carrot is at the left side of the spoon.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["carrot", "spoon"], "label_positions": [[4, 10], [38, 43]], "bboxes": [[115.27, 46.11, 475.12, 254.6], [0.96, 172.31, 236.45, 108.18]]}}
{"image_file": "000000121952.jpg", "image_link": "http://images.cocodataset.org/train2017/000000121952.jpg", "width": 480, "height": 640, "caption": "The bottle is touching the dining table.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["bottle", "dining table"], "label_positions": [[4, 10], [27, 39]], "bboxes": [[115.29, 178.27, 84.47, 107.38], [1.44, 242.62, 478.56, 386.87]]}}
{"image_file": "000000087216.jpg", "image_link": "http://images.cocodataset.org/train2017/000000087216.jpg", "width": 640, "height": 480, "caption": "The bus is away from the bench.", "label": 1, "relation": "away from", "ref_exp": {"labels": ["bus", "bench"], "label_positions": [[4, 7], [25, 30]], "bboxes": [[543.3, 55.67, 96.7, 44.65], [1.08, 204.94, 615.91, 177.98]]}}
{"image_file": "000000250424.jpg", "image_link": "http://images.cocodataset.org/train2017/000000250424.jpg", "width": 480, "height": 640, "caption": "The dining table is at the left side of the dog.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["dining table", "dog"], "label_positions": [[4, 16], [44, 47]], "bboxes": [[222.59, 213.19, 98.05, 174.12], [46.55, 2.19, 215.91, 460.28]]}}
{"image_file": "000000204853.jpg", "image_link": "http://images.cocodataset.org/train2017/000000204853.jpg", "width": 640, "height": 427, "caption": "The dining table is touching the teddy bear.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["dining table", "teddy bear"], "label_positions": [[4, 16], [33, 43]], "bboxes": [[165.78, 318.74, 445.08, 93.44], [550.97, 222.69, 72.91, 66.28]]}}
{"image_file": "000000005804.jpg", "image_link": "http://images.cocodataset.org/train2017/000000005804.jpg", "width": 457, "height": 640, "caption": "The laptop is adjacent to the cat.", "label": 0, "relation": "adjacent to", "ref_exp": {"labels": ["laptop", "cat"], "label_positions": [[4, 10], [30, 33]], "bboxes": [[185.53, 74.79, 244.49, 209.97], [54.53, 118.15, 154.95, 100.91]]}}
{"image_file": "000000256285.jpg", "image_link": "http://images.cocodataset.org/train2017/000000256285.jpg", "width": 480, "height": 640, "caption": "The couch is in front of the teddy bear.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["couch", "teddy bear"], "label_positions": [[4, 9], [29, 39]], "bboxes": [[0.0, 1.44, 480.0, 631.37], [50.34, 44.34, 388.31, 572.41]]}}
{"image_file": "000000320015.jpg", "image_link": "http://images.cocodataset.org/train2017/000000320015.jpg", "width": 480, "height": 640, "caption": "The bed is under the person.", "label": 1, "relation": "under", "ref_exp": {"labels": ["bed", "person"], "label_positions": [[4, 7], [21, 27]], "bboxes": [[0.0, 456.32, 480.0, 183.68], [47.46, 139.07, 401.26, 304.9]]}}
{"image_file": "000000340491.jpg", "image_link": "http://images.cocodataset.org/train2017/000000340491.jpg", "width": 640, "height": 427, "caption": "The bench is beside the bus.", "label": 1, "relation": "beside", "ref_exp": {"labels": ["bench", "bus"], "label_positions": [[4, 9], [24, 27]], "bboxes": [[561.57, 308.62, 68.26, 63.66], [40.3, 36.46, 530.63, 378.07]]}}
{"image_file": "000000294775.jpg", "image_link": "http://images.cocodataset.org/train2017/000000294775.jpg", "width": 612, "height": 612, "caption": "The cup is behind the bowl.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["cup", "bowl"], "label_positions": [[4, 7], [22, 26]], "bboxes": [[468.68, 0.0, 143.32, 329.6], [9.65, 29.64, 93.73, 137.83]]}}
{"image_file": "000000151896.jpg", "image_link": "http://images.cocodataset.org/train2017/000000151896.jpg", "width": 426, "height": 640, "caption": "The potted plant is behind the person.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["potted plant", "person"], "label_positions": [[4, 16], [31, 37]], "bboxes": [[7.19, 182.21, 136.63, 399.82], [184.7, 328.01, 118.83, 304.97]]}}
{"image_file": "000000069745.jpg", "image_link": "http://images.cocodataset.org/train2017/000000069745.jpg", "width": 640, "height": 480, "caption": "The laptop is in front of the dog.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["laptop", "dog"], "label_positions": [[4, 10], [30, 33]], "bboxes": [[111.8, 339.85, 77.32, 59.67], [165.82, 164.85, 404.36, 234.67]]}}
{"image_file": "000000211806.jpg", "image_link": "http://images.cocodataset.org/train2017/000000211806.jpg", "width": 480, "height": 640, "caption": "The person is at the right side of the refrigerator.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["person", "refrigerator"], "label_positions": [[4, 10], [39, 51]], "bboxes": [[2.87, 76.22, 381.7, 555.34], [210.47, 120.47, 269.53, 511.14]]}}
{"image_file": "000000163197.jpg", "image_link": "http://images.cocodataset.org/train2017/000000163197.jpg", "width": 425, "height": 640, "caption": "The sandwich consists of the donut.", "label": 1, "relation": "consists of", "ref_exp": {"labels": ["sandwich", "donut"], "label_positions": [[4, 12], [29, 34]], "bboxes": [[184.89, 365.04, 221.23, 263.9], [223.56, 369.58, 179.21, 166.85]]}}
{"image_file": "000000272440.jpg", "image_link": "http://images.cocodataset.org/train2017/000000272440.jpg", "width": 427, "height": 640, "caption": "The person is touching the pizza.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "pizza"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[154.98, 80.53, 269.77, 546.72], [106.98, 425.16, 169.51, 82.26]]}}
{"image_file": "000000050828.jpg", "image_link": "http://images.cocodataset.org/val2017/000000050828.jpg", "width": 640, "height": 480, "caption": "The suitcase is beside the bed.", "label": 1, "relation": "beside", "ref_exp": {"labels": ["suitcase", "bed"], "label_positions": [[4, 12], [27, 30]], "bboxes": [[84.41, 333.99, 74.35, 74.35], [147.06, 189.32, 458.51, 290.68]]}}
{"image_file": "000000185197.jpg", "image_link": "http://images.cocodataset.org/train2017/000000185197.jpg", "width": 612, "height": 612, "caption": "The bed is beneath the person.", "label": 1, "relation": "beneath", "ref_exp": {"labels": ["bed", "person"], "label_positions": [[4, 7], [23, 29]], "bboxes": [[0.0, 163.12, 612.0, 440.86], [316.31, 93.52, 295.69, 352.07]]}}
{"image_file": "000000499225.jpg", "image_link": "http://images.cocodataset.org/train2017/000000499225.jpg", "width": 640, "height": 480, "caption": "The dog is on the chair.", "label": 1, "relation": "on", "ref_exp": {"labels": ["dog", "chair"], "label_positions": [[4, 7], [18, 23]], "bboxes": [[174.0, 106.47, 300.34, 139.44], [116.68, 57.99, 354.76, 415.99]]}}
{"image_file": "000000230335.jpg", "image_link": "http://images.cocodataset.org/train2017/000000230335.jpg", "width": 469, "height": 640, "caption": "The umbrella is above the person.", "label": 0, "relation": "above", "ref_exp": {"labels": ["umbrella", "person"], "label_positions": [[4, 12], [26, 32]], "bboxes": [[34.82, 142.78, 363.11, 323.32], [214.29, 1.01, 254.56, 245.93]]}}
{"image_file": "000000421455.jpg", "image_link": "http://images.cocodataset.org/val2017/000000421455.jpg", "width": 500, "height": 375, "caption": "The truck is behind the car.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["truck", "car"], "label_positions": [[4, 9], [24, 27]], "bboxes": [[443.72, 289.31, 33.71, 29.61], [2.52, 2.24, 454.04, 363.23]]}}
{"image_file": "000000441182.jpg", "image_link": "http://images.cocodataset.org/train2017/000000441182.jpg", "width": 640, "height": 480, "caption": "The cake is on the dining table.", "label": 1, "relation": "on", "ref_exp": {"labels": ["cake", "dining table"], "label_positions": [[4, 8], [19, 31]], "bboxes": [[54.05, 94.05, 585.95, 339.46], [20.42, 62.8, 328.73, 98.89]]}}
{"image_file": "000000482127.jpg", "image_link": "http://images.cocodataset.org/train2017/000000482127.jpg", "width": 640, "height": 480, "caption": "The book is touching the bird.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["book", "bird"], "label_positions": [[4, 8], [25, 29]], "bboxes": [[0.0, 68.71, 639.64, 403.42], [171.65, 20.66, 240.51, 212.76]]}}
{"image_file": "000000422669.jpg", "image_link": "http://images.cocodataset.org/train2017/000000422669.jpg", "width": 640, "height": 427, "caption": "The bus is in front of the truck.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["bus", "truck"], "label_positions": [[4, 7], [27, 32]], "bboxes": [[550.78, 190.95, 89.22, 109.39], [48.72, 158.67, 520.61, 213.02]]}}
{"image_file": "000000064723.jpg", "image_link": "http://images.cocodataset.org/train2017/000000064723.jpg", "width": 640, "height": 478, "caption": "The motorcycle is behind the car.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["motorcycle", "car"], "label_positions": [[4, 14], [29, 32]], "bboxes": [[132.85, 160.16, 417.16, 311.63], [89.42, 135.59, 342.71, 139.74]]}}
{"image_file": "000000054111.jpg", "image_link": "http://images.cocodataset.org/train2017/000000054111.jpg", "width": 640, "height": 463, "caption": "The elephant is facing the car.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["elephant", "car"], "label_positions": [[4, 12], [27, 30]], "bboxes": [[180.39, 117.85, 400.46, 345.15], [446.4, 3.78, 97.4, 83.98]]}}
{"image_file": "000000239801.jpg", "image_link": "http://images.cocodataset.org/train2017/000000239801.jpg", "width": 640, "height": 426, "caption": "The cake is at the left side of the banana.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["cake", "banana"], "label_positions": [[4, 8], [36, 42]], "bboxes": [[88.29, 54.74, 302.39, 315.64], [475.12, 0.0, 164.88, 420.99]]}}
{"image_file": "000000258159.jpg", "image_link": "http://images.cocodataset.org/train2017/000000258159.jpg", "width": 640, "height": 387, "caption": "The dog is at the edge of the bed.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["dog", "bed"], "label_positions": [[4, 7], [30, 33]], "bboxes": [[108.6, 35.21, 483.52, 351.79], [0.0, 0.87, 639.2, 381.78]]}}
{"image_file": "000000244284.jpg", "image_link": "http://images.cocodataset.org/train2017/000000244284.jpg", "width": 640, "height": 480, "caption": "The bed is under the person.", "label": 1, "relation": "under", "ref_exp": {"labels": ["bed", "person"], "label_positions": [[4, 7], [21, 27]], "bboxes": [[0.0, 0.0, 637.85, 299.7], [0.0, 112.18, 340.85, 367.82]]}}
{"image_file": "000000450247.jpg", "image_link": "http://images.cocodataset.org/train2017/000000450247.jpg", "width": 640, "height": 425, "caption": "The cat is on top of the umbrella.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["cat", "umbrella"], "label_positions": [[4, 7], [25, 33]], "bboxes": [[97.3, 93.4, 465.39, 293.74], [253.11, 298.49, 192.81, 93.88]]}}
{"image_file": "000000313520.jpg", "image_link": "http://images.cocodataset.org/train2017/000000313520.jpg", "width": 640, "height": 427, "caption": "The chair is above the dog.", "label": 1, "relation": "above", "ref_exp": {"labels": ["chair", "dog"], "label_positions": [[4, 9], [23, 26]], "bboxes": [[109.8, 2.22, 530.2, 229.58], [77.48, 81.74, 562.52, 314.23]]}}
{"image_file": "000000112951.jpg", "image_link": "http://images.cocodataset.org/train2017/000000112951.jpg", "width": 640, "height": 427, "caption": "The cat is next to the fire hydrant.", "label": 1, "relation": "next to", "ref_exp": {"labels": ["cat", "fire hydrant"], "label_positions": [[4, 7], [23, 35]], "bboxes": [[22.96, 61.52, 249.77, 313.14], [388.7, 27.38, 239.35, 399.62]]}}
{"image_file": "000000002570.jpg", "image_link": "http://images.cocodataset.org/train2017/000000002570.jpg", "width": 640, "height": 480, "caption": "The donut is in front of the laptop.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["donut", "laptop"], "label_positions": [[4, 9], [29, 35]], "bboxes": [[176.9, 169.35, 387.23, 250.25], [0.0, 0.0, 606.2, 177.98]]}}
{"image_file": "000000053531.jpg", "image_link": "http://images.cocodataset.org/train2017/000000053531.jpg", "width": 640, "height": 427, "caption": "The elephant is right of the potted plant.", "label": 1, "relation": "right of", "ref_exp": {"labels": ["elephant", "potted plant"], "label_positions": [[4, 12], [29, 41]], "bboxes": [[235.62, 139.93, 288.51, 246.2], [0.96, 197.26, 152.57, 76.76]]}}
{"image_file": "000000199940.jpg", "image_link": "http://images.cocodataset.org/train2017/000000199940.jpg", "width": 500, "height": 375, "caption": "The cat is in the backpack.", "label": 0, "relation": "in", "ref_exp": {"labels": ["cat", "backpack"], "label_positions": [[4, 7], [18, 26]], "bboxes": [[0.0, 36.46, 478.44, 338.54], [417.88, 4.19, 50.95, 106.98]]}}
{"image_file": "000000052983.jpg", "image_link": "http://images.cocodataset.org/train2017/000000052983.jpg", "width": 640, "height": 427, "caption": "The motorcycle is ahead of the train.", "label": 1, "relation": "ahead of", "ref_exp": {"labels": ["motorcycle", "train"], "label_positions": [[4, 14], [31, 36]], "bboxes": [[184.4, 353.12, 87.2, 73.88], [209.67, 57.06, 430.33, 358.07]]}}
{"image_file": "000000197775.jpg", "image_link": "http://images.cocodataset.org/train2017/000000197775.jpg", "width": 640, "height": 480, "caption": "The surfboard is inside the truck.", "label": 1, "relation": "inside", "ref_exp": {"labels": ["surfboard", "truck"], "label_positions": [[4, 13], [28, 33]], "bboxes": [[121.4, 114.94, 131.19, 117.46], [0.0, 0.0, 640.0, 473.54]]}}
{"image_file": "000000490871.jpg", "image_link": "http://images.cocodataset.org/train2017/000000490871.jpg", "width": 612, "height": 612, "caption": "The bowl is at the left side of the banana.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["bowl", "banana"], "label_positions": [[4, 8], [36, 42]], "bboxes": [[47.83, 338.72, 225.61, 228.04], [313.76, 263.76, 270.66, 267.21]]}}
{"image_file": "000000414137.jpg", "image_link": "http://images.cocodataset.org/train2017/000000414137.jpg", "width": 425, "height": 640, "caption": "The dog is toward the person.", "label": 1, "relation": "toward", "ref_exp": {"labels": ["dog", "person"], "label_positions": [[4, 7], [22, 28]], "bboxes": [[184.89, 2.59, 240.11, 456.4], [0.0, 1.57, 316.42, 625.68]]}}
{"image_file": "000000432176.jpg", "image_link": "http://images.cocodataset.org/train2017/000000432176.jpg", "width": 640, "height": 480, "caption": "The bench is behind the potted plant.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["bench", "potted plant"], "label_positions": [[4, 9], [24, 36]], "bboxes": [[0.0, 316.94, 463.82, 157.49], [64.3, 128.07, 197.29, 152.16]]}}
{"image_file": "000000052290.jpg", "image_link": "http://images.cocodataset.org/train2017/000000052290.jpg", "width": 640, "height": 480, "caption": "The laptop is under the cat.", "label": 0, "relation": "under", "ref_exp": {"labels": ["laptop", "cat"], "label_positions": [[4, 10], [24, 27]], "bboxes": [[234.04, 43.88, 405.96, 433.41], [4.13, 0.0, 263.22, 474.84]]}}
{"image_file": "000000372536.jpg", "image_link": "http://images.cocodataset.org/train2017/000000372536.jpg", "width": 508, "height": 640, "caption": "The car is next to the motorcycle.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["car", "motorcycle"], "label_positions": [[4, 7], [23, 33]], "bboxes": [[310.34, 31.03, 197.66, 126.9], [31.71, 100.18, 428.11, 471.35]]}}
{"image_file": "000000518592.jpg", "image_link": "http://images.cocodataset.org/train2017/000000518592.jpg", "width": 640, "height": 480, "caption": "The laptop is at the right side of the cake.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["laptop", "cake"], "label_positions": [[4, 10], [39, 43]], "bboxes": [[153.17, 2.16, 486.83, 471.37], [12.0, 251.94, 85.67, 100.72]]}}
{"image_file": "000000235069.jpg", "image_link": "http://images.cocodataset.org/train2017/000000235069.jpg", "width": 640, "height": 452, "caption": "The truck is under the boat.", "label": 1, "relation": "under", "ref_exp": {"labels": ["truck", "boat"], "label_positions": [[4, 9], [23, 27]], "bboxes": [[2.04, 147.1, 637.28, 299.3], [0.0, 62.91, 405.81, 77.98]]}}
{"image_file": "000000415710.jpg", "image_link": "http://images.cocodataset.org/train2017/000000415710.jpg", "width": 500, "height": 373, "caption": "The handbag is in front of the teddy bear.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["handbag", "teddy bear"], "label_positions": [[4, 11], [31, 41]], "bboxes": [[272.73, 91.49, 94.4, 101.28], [51.13, 91.36, 198.65, 276.61]]}}
{"image_file": "000000565002.jpg", "image_link": "http://images.cocodataset.org/train2017/000000565002.jpg", "width": 425, "height": 640, "caption": "The person is at the left side of the dining table.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["person", "dining table"], "label_positions": [[4, 10], [38, 50]], "bboxes": [[66.01, 93.44, 289.86, 321.44], [0.0, 373.96, 425.0, 262.01]]}}
{"image_file": "000000361157.jpg", "image_link": "http://images.cocodataset.org/train2017/000000361157.jpg", "width": 500, "height": 439, "caption": "The cat is touching the bottle.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["cat", "bottle"], "label_positions": [[4, 7], [24, 30]], "bboxes": [[120.33, 4.83, 373.19, 427.72], [0.0, 0.0, 144.41, 438.74]]}}
{"image_file": "000000097936.jpg", "image_link": "http://images.cocodataset.org/train2017/000000097936.jpg", "width": 640, "height": 426, "caption": "The parking meter is touching the bicycle.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["parking meter", "bicycle"], "label_positions": [[4, 17], [34, 41]], "bboxes": [[428.87, 81.08, 41.17, 91.9], [229.03, 180.54, 348.13, 214.37]]}}
{"image_file": "000000382081.jpg", "image_link": "http://images.cocodataset.org/train2017/000000382081.jpg", "width": 640, "height": 480, "caption": "The cow is alongside the train.", "label": 0, "relation": "alongside", "ref_exp": {"labels": ["cow", "train"], "label_positions": [[4, 7], [25, 30]], "bboxes": [[283.87, 149.51, 355.1, 325.16], [3.24, 34.97, 636.4, 22.65]]}}
{"image_file": "000000080168.jpg", "image_link": "http://images.cocodataset.org/train2017/000000080168.jpg", "width": 640, "height": 480, "caption": "The cat is on top of the suitcase.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "suitcase"], "label_positions": [[4, 7], [25, 33]], "bboxes": [[103.45, 55.34, 536.55, 343.45], [42.07, 165.03, 597.93, 311.73]]}}
{"image_file": "000000081686.jpg", "image_link": "http://images.cocodataset.org/train2017/000000081686.jpg", "width": 424, "height": 640, "caption": "The dog is on the couch.", "label": 0, "relation": "on", "ref_exp": {"labels": ["dog", "couch"], "label_positions": [[4, 7], [18, 23]], "bboxes": [[0.0, 46.55, 382.71, 586.99], [95.93, 267.37, 328.07, 138.42]]}}
{"image_file": "000000139008.jpg", "image_link": "http://images.cocodataset.org/train2017/000000139008.jpg", "width": 640, "height": 480, "caption": "The handbag is behind the bed.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["handbag", "bed"], "label_positions": [[4, 11], [26, 29]], "bboxes": [[1.25, 1.25, 261.81, 453.81], [2.49, 1.25, 637.51, 472.52]]}}
{"image_file": "000000204272.jpg", "image_link": "http://images.cocodataset.org/train2017/000000204272.jpg", "width": 640, "height": 480, "caption": "The bed is parallel to the surfboard.", "label": 1, "relation": "parallel to", "ref_exp": {"labels": ["bed", "surfboard"], "label_positions": [[4, 7], [27, 36]], "bboxes": [[3.01, 276.52, 634.19, 203.48], [190.6, 229.44, 449.4, 138.5]]}}
{"image_file": "000000177572.jpg", "image_link": "http://images.cocodataset.org/train2017/000000177572.jpg", "width": 281, "height": 500, "caption": "The person is touching the toilet.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "toilet"], "label_positions": [[4, 10], [27, 33]], "bboxes": [[24.72, 108.99, 206.23, 387.64], [22.44, 279.53, 52.5, 220.47]]}}
{"image_file": "000000059034.jpg", "image_link": "http://images.cocodataset.org/train2017/000000059034.jpg", "width": 640, "height": 480, "caption": "The dining table is on the boat.", "label": 1, "relation": "on", "ref_exp": {"labels": ["dining table", "boat"], "label_positions": [[4, 16], [27, 31]], "bboxes": [[364.05, 335.38, 275.95, 138.39], [2.16, 295.55, 637.48, 184.45]]}}
{"image_file": "000000306581.jpg", "image_link": "http://images.cocodataset.org/train2017/000000306581.jpg", "width": 480, "height": 640, "caption": "The bus is behind the cow.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["bus", "cow"], "label_positions": [[4, 7], [22, 25]], "bboxes": [[87.34, 129.65, 161.23, 108.85], [80.86, 281.07, 316.57, 352.21]]}}
{"image_file": "000000369476.jpg", "image_link": "http://images.cocodataset.org/train2017/000000369476.jpg", "width": 640, "height": 640, "caption": "The dog is in the middle of the bus.", "label": 0, "relation": "in the middle of", "ref_exp": {"labels": ["dog", "bus"], "label_positions": [[4, 7], [32, 35]], "bboxes": [[281.86, 288.32, 93.09, 148.69], [4.31, 1.44, 635.69, 628.49]]}}
{"image_file": "000000099230.jpg", "image_link": "http://images.cocodataset.org/train2017/000000099230.jpg", "width": 640, "height": 480, "caption": "The cat is touching the couch.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cat", "couch"], "label_positions": [[4, 7], [24, 29]], "bboxes": [[384.41, 11.99, 250.79, 462.53], [3.24, 2.16, 636.76, 470.29]]}}
{"image_file": "000000398767.jpg", "image_link": "http://images.cocodataset.org/train2017/000000398767.jpg", "width": 640, "height": 480, "caption": "The cat is on top of the laptop.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "laptop"], "label_positions": [[4, 7], [25, 31]], "bboxes": [[84.13, 45.3, 555.51, 402.34], [1.24, 1.18, 638.76, 478.82]]}}
{"image_file": "000000344507.jpg", "image_link": "http://images.cocodataset.org/train2017/000000344507.jpg", "width": 640, "height": 426, "caption": "The tv is next to the boat.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["tv", "boat"], "label_positions": [[4, 6], [22, 26]], "bboxes": [[5.53, 24.62, 596.4, 396.12], [58.4, 173.27, 466.2, 204.86]]}}
{"image_file": "000000161605.jpg", "image_link": "http://images.cocodataset.org/train2017/000000161605.jpg", "width": 480, "height": 640, "caption": "The cup is behind the sandwich.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["cup", "sandwich"], "label_positions": [[4, 7], [22, 30]], "bboxes": [[0.0, 273.09, 62.63, 320.33], [169.51, 397.21, 244.47, 163.28]]}}
{"image_file": "000000443018.jpg", "image_link": "http://images.cocodataset.org/train2017/000000443018.jpg", "width": 640, "height": 427, "caption": "The person is touching the wine glass.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "wine glass"], "label_positions": [[4, 10], [27, 37]], "bboxes": [[0.79, 2.59, 639.21, 418.71], [167.87, 219.51, 188.15, 137.45]]}}
{"image_file": "000000444285.jpg", "image_link": "http://images.cocodataset.org/train2017/000000444285.jpg", "width": 640, "height": 480, "caption": "The umbrella is at the left side of the couch.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["umbrella", "couch"], "label_positions": [[4, 12], [40, 45]], "bboxes": [[2.16, 0.07, 581.39, 387.24], [42.39, 84.78, 437.61, 231.9]]}}
{"image_file": "000000318646.jpg", "image_link": "http://images.cocodataset.org/train2017/000000318646.jpg", "width": 640, "height": 426, "caption": "The bed is below the person.", "label": 1, "relation": "below", "ref_exp": {"labels": ["bed", "person"], "label_positions": [[4, 7], [21, 27]], "bboxes": [[0.96, 116.53, 498.59, 304.69], [65.98, 196.87, 512.85, 229.13]]}}
{"image_file": "000000179968.jpg", "image_link": "http://images.cocodataset.org/train2017/000000179968.jpg", "width": 640, "height": 478, "caption": "The tv is behind the airplane.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["tv", "airplane"], "label_positions": [[4, 6], [21, 29]], "bboxes": [[427.56, 46.46, 52.46, 37.89], [243.35, 266.94, 362.53, 204.85]]}}
{"image_file": "000000513733.jpg", "image_link": "http://images.cocodataset.org/train2017/000000513733.jpg", "width": 480, "height": 640, "caption": "The cake is under the train.", "label": 1, "relation": "under", "ref_exp": {"labels": ["cake", "train"], "label_positions": [[4, 8], [22, 27]], "bboxes": [[70.63, 38.92, 371.89, 454.05], [132.31, 33.08, 132.32, 250.25]]}}
{"image_file": "000000240967.jpg", "image_link": "http://images.cocodataset.org/train2017/000000240967.jpg", "width": 640, "height": 360, "caption": "The refrigerator is on the truck.", "label": 1, "relation": "on", "ref_exp": {"labels": ["refrigerator", "truck"], "label_positions": [[4, 16], [27, 32]], "bboxes": [[452.3, 99.53, 147.23, 117.13], [185.65, 80.39, 454.35, 274.28]]}}
{"image_file": "000000045197.jpg", "image_link": "http://images.cocodataset.org/train2017/000000045197.jpg", "width": 640, "height": 480, "caption": "The laptop is touching the bed.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["laptop", "bed"], "label_positions": [[4, 10], [27, 30]], "bboxes": [[382.92, 0.9, 255.64, 473.53], [0.0, 0.0, 443.33, 474.43]]}}
{"image_file": "000000574619.jpg", "image_link": "http://images.cocodataset.org/train2017/000000574619.jpg", "width": 427, "height": 640, "caption": "The giraffe is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["giraffe", "person"], "label_positions": [[4, 11], [28, 34]], "bboxes": [[0.0, 87.21, 245.05, 328.65], [192.72, 317.84, 221.48, 309.22]]}}
{"image_file": "000000127407.jpg", "image_link": "http://images.cocodataset.org/train2017/000000127407.jpg", "width": 319, "height": 500, "caption": "The cat is off the person.", "label": 1, "relation": "off", "ref_exp": {"labels": ["cat", "person"], "label_positions": [[4, 7], [19, 25]], "bboxes": [[66.43, 352.58, 197.71, 122.57], [10.53, 0.68, 234.84, 396.55]]}}
{"image_file": "000000364517.jpg", "image_link": "http://images.cocodataset.org/train2017/000000364517.jpg", "width": 375, "height": 500, "caption": "The sandwich is right of the bowl.", "label": 1, "relation": "right of", "ref_exp": {"labels": ["sandwich", "bowl"], "label_positions": [[4, 12], [29, 33]], "bboxes": [[144.94, 164.04, 230.06, 216.86], [2.27, 116.5, 120.65, 122.71]]}}
{"image_file": "000000508977.jpg", "image_link": "http://images.cocodataset.org/train2017/000000508977.jpg", "width": 512, "height": 640, "caption": "The cat is on top of the handbag.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["cat", "handbag"], "label_positions": [[4, 7], [25, 32]], "bboxes": [[0.0, 309.68, 406.02, 279.4], [319.15, 261.54, 117.68, 85.68]]}}
{"image_file": "000000231637.jpg", "image_link": "http://images.cocodataset.org/train2017/000000231637.jpg", "width": 640, "height": 425, "caption": "The pizza is adjacent to the bowl.", "label": 1, "relation": "adjacent to", "ref_exp": {"labels": ["pizza", "bowl"], "label_positions": [[4, 9], [29, 33]], "bboxes": [[120.0, 124.0, 520.0, 270.0], [0.96, 4.78, 318.03, 148.03]]}}
{"image_file": "000000154140.jpg", "image_link": "http://images.cocodataset.org/train2017/000000154140.jpg", "width": 375, "height": 500, "caption": "The toilet is at the back of the truck.", "label": 0, "relation": "at the back of", "ref_exp": {"labels": ["toilet", "truck"], "label_positions": [[4, 10], [33, 38]], "bboxes": [[26.65, 81.85, 313.45, 376.91], [38.15, 196.15, 73.02, 81.75]]}}
{"image_file": "000000428329.jpg", "image_link": "http://images.cocodataset.org/train2017/000000428329.jpg", "width": 480, "height": 640, "caption": "The couch is below the umbrella.", "label": 1, "relation": "below", "ref_exp": {"labels": ["couch", "umbrella"], "label_positions": [[4, 9], [23, 31]], "bboxes": [[1.39, 355.4, 283.21, 213.8], [1.44, 2.88, 468.85, 461.66]]}}
{"image_file": "000000444285.jpg", "image_link": "http://images.cocodataset.org/train2017/000000444285.jpg", "width": 640, "height": 480, "caption": "The bed is adjacent to the umbrella.", "label": 1, "relation": "adjacent to", "ref_exp": {"labels": ["bed", "umbrella"], "label_positions": [[4, 7], [27, 35]], "bboxes": [[42.07, 46.06, 597.93, 418.52], [2.16, 0.07, 581.39, 387.24]]}}
{"image_file": "000000563403.jpg", "image_link": "http://images.cocodataset.org/train2017/000000563403.jpg", "width": 640, "height": 480, "caption": "The cat is on top of the keyboard.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "keyboard"], "label_positions": [[4, 7], [25, 33]], "bboxes": [[0.0, 1.18, 492.89, 472.48], [340.4, 314.73, 269.53, 160.0]]}}
{"image_file": "000000259555.jpg", "image_link": "http://images.cocodataset.org/train2017/000000259555.jpg", "width": 640, "height": 384, "caption": "The bench is in front of the potted plant.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["bench", "potted plant"], "label_positions": [[4, 9], [29, 41]], "bboxes": [[331.12, 88.37, 292.99, 286.05], [74.21, 0.0, 297.71, 277.86]]}}
{"image_file": "000000194528.jpg", "image_link": "http://images.cocodataset.org/train2017/000000194528.jpg", "width": 640, "height": 480, "caption": "The elephant is part of the bench.", "label": 1, "relation": "part of", "ref_exp": {"labels": ["elephant", "bench"], "label_positions": [[4, 12], [28, 33]], "bboxes": [[341.88, 188.15, 78.76, 75.59], [1.08, 124.04, 634.25, 349.49]]}}
{"image_file": "000000180383.jpg", "image_link": "http://images.cocodataset.org/val2017/000000180383.jpg", "width": 640, "height": 480, "caption": "The cow is on the tv.", "label": 0, "relation": "on", "ref_exp": {"labels": ["cow", "tv"], "label_positions": [[4, 7], [18, 20]], "bboxes": [[25.83, 51.34, 597.12, 368.49], [267.51, 77.93, 182.29, 167.19]]}}
{"image_file": "000000302528.jpg", "image_link": "http://images.cocodataset.org/train2017/000000302528.jpg", "width": 500, "height": 375, "caption": "The handbag is beneath the cat.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["handbag", "cat"], "label_positions": [[4, 11], [27, 30]], "bboxes": [[0.0, 125.65, 249.35, 244.48], [118.0, 106.28, 213.36, 161.63]]}}
{"image_file": "000000230851.jpg", "image_link": "http://images.cocodataset.org/train2017/000000230851.jpg", "width": 640, "height": 480, "caption": "The laptop is on top of the couch.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["laptop", "couch"], "label_positions": [[4, 10], [28, 33]], "bboxes": [[76.14, 100.16, 190.82, 158.6], [0.0, 133.88, 640.0, 301.42]]}}
{"image_file": "000000239000.jpg", "image_link": "http://images.cocodataset.org/train2017/000000239000.jpg", "width": 640, "height": 480, "caption": "The motorcycle is attached to the suitcase.", "label": 1, "relation": "attached to", "ref_exp": {"labels": ["motorcycle", "suitcase"], "label_positions": [[4, 14], [34, 42]], "bboxes": [[34.52, 43.15, 604.04, 405.57], [37.75, 58.25, 252.41, 310.65]]}}
{"image_file": "000000312212.jpg", "image_link": "http://images.cocodataset.org/train2017/000000312212.jpg", "width": 375, "height": 500, "caption": "The dining table is next to the dog.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["dining table", "dog"], "label_positions": [[4, 16], [32, 35]], "bboxes": [[2.6, 33.77, 372.4, 459.74], [100.2, 1.01, 274.29, 339.07]]}}
{"image_file": "000000353663.jpg", "image_link": "http://images.cocodataset.org/train2017/000000353663.jpg", "width": 500, "height": 375, "caption": "The couch is below the snowboard.", "label": 1, "relation": "below", "ref_exp": {"labels": ["couch", "snowboard"], "label_positions": [[4, 9], [23, 32]], "bboxes": [[328.25, 31.17, 171.75, 337.99], [39.0, 29.0, 322.0, 338.0]]}}
{"image_file": "000000126536.jpg", "image_link": "http://images.cocodataset.org/train2017/000000126536.jpg", "width": 640, "height": 426, "caption": "The fire hydrant is adjacent to the bench.", "label": 1, "relation": "adjacent to", "ref_exp": {"labels": ["fire hydrant", "bench"], "label_positions": [[4, 16], [36, 41]], "bboxes": [[49.68, 226.66, 78.52, 142.97], [202.19, 240.93, 356.49, 155.42]]}}
{"image_file": "000000265315.jpg", "image_link": "http://images.cocodataset.org/train2017/000000265315.jpg", "width": 640, "height": 361, "caption": "The bicycle is by the teddy bear.", "label": 0, "relation": "by", "ref_exp": {"labels": ["bicycle", "teddy bear"], "label_positions": [[4, 11], [22, 32]], "bboxes": [[139.74, 144.4, 500.26, 212.72], [291.08, 20.73, 257.74, 300.02]]}}
{"image_file": "000000475510.jpg", "image_link": "http://images.cocodataset.org/train2017/000000475510.jpg", "width": 640, "height": 480, "caption": "The refrigerator is at the back of the person.", "label": 0, "relation": "at the back of", "ref_exp": {"labels": ["refrigerator", "person"], "label_positions": [[4, 16], [39, 45]], "bboxes": [[0.0, 0.0, 348.99, 213.8], [116.27, 100.31, 253.71, 340.86]]}}
{"image_file": "000000521197.jpg", "image_link": "http://images.cocodataset.org/train2017/000000521197.jpg", "width": 640, "height": 483, "caption": "The banana is in front of the bicycle.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["banana", "bicycle"], "label_positions": [[4, 10], [30, 37]], "bboxes": [[141.25, 310.38, 95.45, 66.81], [30.06, 14.1, 593.9, 439.46]]}}
{"image_file": "000000403619.jpg", "image_link": "http://images.cocodataset.org/train2017/000000403619.jpg", "width": 640, "height": 426, "caption": "The laptop is at the right side of the person.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["laptop", "person"], "label_positions": [[4, 10], [39, 45]], "bboxes": [[217.31, 5.74, 421.21, 410.69], [86.95, 302.5, 334.74, 122.53]]}}
{"image_file": "000000087264.jpg", "image_link": "http://images.cocodataset.org/train2017/000000087264.jpg", "width": 500, "height": 375, "caption": "The clock is behind the cow.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["clock", "cow"], "label_positions": [[4, 9], [24, 27]], "bboxes": [[0.0, 1.74, 384.27, 358.99], [0.0, 49.1, 396.34, 325.9]]}}
{"image_file": "000000442554.jpg", "image_link": "http://images.cocodataset.org/train2017/000000442554.jpg", "width": 640, "height": 480, "caption": "The cake is touching the keyboard.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["cake", "keyboard"], "label_positions": [[4, 8], [25, 33]], "bboxes": [[127.28, 85.99, 374.29, 375.37], [37.63, 32.98, 602.37, 447.02]]}}
{"image_file": "000000003048.jpg", "image_link": "http://images.cocodataset.org/train2017/000000003048.jpg", "width": 480, "height": 640, "caption": "The teddy bear is at the right side of the person.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["teddy bear", "person"], "label_positions": [[4, 14], [43, 49]], "bboxes": [[221.22, 134.01, 240.83, 343.56], [57.53, 136.73, 241.62, 381.12]]}}
{"image_file": "000000338994.jpg", "image_link": "http://images.cocodataset.org/train2017/000000338994.jpg", "width": 640, "height": 427, "caption": "The dog is inside the car.", "label": 1, "relation": "inside", "ref_exp": {"labels": ["dog", "car"], "label_positions": [[4, 7], [22, 25]], "bboxes": [[259.46, 162.5, 90.22, 94.51], [0.0, 1.02, 637.75, 418.76]]}}
{"image_file": "000000438154.jpg", "image_link": "http://images.cocodataset.org/train2017/000000438154.jpg", "width": 640, "height": 427, "caption": "The cow is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["cow", "person"], "label_positions": [[4, 7], [24, 30]], "bboxes": [[278.9, 3.37, 361.1, 401.99], [0.46, 0.06, 439.97, 426.94]]}}
{"image_file": "000000469793.jpg", "image_link": "http://images.cocodataset.org/train2017/000000469793.jpg", "width": 561, "height": 640, "caption": "The oven is at the left side of the person.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["oven", "person"], "label_positions": [[4, 8], [36, 42]], "bboxes": [[1.44, 369.62, 155.32, 263.19], [176.9, 136.19, 254.56, 494.74]]}}
{"image_file": "000000291194.jpg", "image_link": "http://images.cocodataset.org/train2017/000000291194.jpg", "width": 480, "height": 640, "caption": "The cup is behind the hot dog.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["cup", "hot dog"], "label_positions": [[4, 7], [22, 29]], "bboxes": [[1.33, 129.04, 71.03, 192.42], [138.54, 132.52, 259.01, 462.3]]}}
{"image_file": "000000391976.jpg", "image_link": "http://images.cocodataset.org/train2017/000000391976.jpg", "width": 640, "height": 480, "caption": "The refrigerator contains the dog.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["refrigerator", "dog"], "label_positions": [[4, 16], [30, 33]], "bboxes": [[83.55, 0.0, 192.04, 82.06], [132.41, 132.17, 379.72, 342.72]]}}
{"image_file": "000000410627.jpg", "image_link": "http://images.cocodataset.org/train2017/000000410627.jpg", "width": 427, "height": 640, "caption": "The person is above the toaster.", "label": 1, "relation": "above", "ref_exp": {"labels": ["person", "toaster"], "label_positions": [[4, 10], [24, 31]], "bboxes": [[1.66, 11.13, 374.03, 478.75], [283.94, 371.22, 142.86, 201.04]]}}
{"image_file": "000000459767.jpg", "image_link": "http://images.cocodataset.org/train2017/000000459767.jpg", "width": 640, "height": 480, "caption": "The person is touching the pizza.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "pizza"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[374.62, 0.0, 265.38, 168.28], [69.03, 120.81, 570.97, 353.8]]}}
{"image_file": "000000253004.jpg", "image_link": "http://images.cocodataset.org/train2017/000000253004.jpg", "width": 640, "height": 427, "caption": "The book is on top of the keyboard.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["book", "keyboard"], "label_positions": [[4, 8], [26, 34]], "bboxes": [[0.0, 21.11, 504.72, 401.09], [16.28, 2.97, 623.26, 216.37]]}}
{"image_file": "000000511644.jpg", "image_link": "http://images.cocodataset.org/train2017/000000511644.jpg", "width": 640, "height": 425, "caption": "The apple is on top of the keyboard.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["apple", "keyboard"], "label_positions": [[4, 9], [27, 35]], "bboxes": [[215.23, 32.09, 210.73, 201.53], [339.04, 159.49, 300.96, 258.82]]}}
{"image_file": "000000471869.jpg", "image_link": "http://images.cocodataset.org/val2017/000000471869.jpg", "width": 413, "height": 500, "caption": "The tie is touching the teddy bear.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["tie", "teddy bear"], "label_positions": [[4, 7], [24, 34]], "bboxes": [[127.52, 229.41, 108.5, 76.07], [0.0, 35.96, 362.92, 451.68]]}}
{"image_file": "000000020632.jpg", "image_link": "http://images.cocodataset.org/train2017/000000020632.jpg", "width": 521, "height": 640, "caption": "The teddy bear is part of the handbag.", "label": 0, "relation": "part of", "ref_exp": {"labels": ["teddy bear", "handbag"], "label_positions": [[4, 14], [30, 37]], "bboxes": [[144.64, 67.41, 262.65, 312.54], [67.6, 326.47, 355.23, 306.34]]}}
{"image_file": "000000135038.jpg", "image_link": "http://images.cocodataset.org/train2017/000000135038.jpg", "width": 428, "height": 640, "caption": "The cat is touching the person.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["cat", "person"], "label_positions": [[4, 7], [24, 30]], "bboxes": [[146.7, 128.0, 234.42, 444.4], [0.0, 0.0, 428.0, 447.6]]}}
{"image_file": "000000273288.jpg", "image_link": "http://images.cocodataset.org/train2017/000000273288.jpg", "width": 640, "height": 545, "caption": "The apple is above the orange.", "label": 1, "relation": "above", "ref_exp": {"labels": ["apple", "orange"], "label_positions": [[4, 9], [23, 29]], "bboxes": [[177.07, 10.63, 286.44, 286.43], [0.0, 16.67, 640.0, 528.33]]}}
{"image_file": "000000139355.jpg", "image_link": "http://images.cocodataset.org/train2017/000000139355.jpg", "width": 375, "height": 500, "caption": "The teddy bear is touching the dog.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["teddy bear", "dog"], "label_positions": [[4, 14], [31, 34]], "bboxes": [[61.8, 0.0, 313.2, 494.38], [0.0, 223.39, 175.4, 272.17]]}}
{"image_file": "000000291752.jpg", "image_link": "http://images.cocodataset.org/train2017/000000291752.jpg", "width": 640, "height": 426, "caption": "The pizza is far from the chair.", "label": 0, "relation": "far from", "ref_exp": {"labels": ["pizza", "chair"], "label_positions": [[4, 9], [26, 31]], "bboxes": [[205.48, 214.34, 158.37, 132.31], [389.82, 60.95, 250.18, 365.05]]}}
{"image_file": "000000001536.jpg", "image_link": "http://images.cocodataset.org/train2017/000000001536.jpg", "width": 640, "height": 480, "caption": "The pizza is out of the oven.", "label": 1, "relation": "out of", "ref_exp": {"labels": ["pizza", "oven"], "label_positions": [[4, 9], [24, 28]], "bboxes": [[148.85, 101.39, 381.85, 290.16], [350.34, 122.18, 289.66, 355.33]]}}
{"image_file": "000000070309.jpg", "image_link": "http://images.cocodataset.org/train2017/000000070309.jpg", "width": 500, "height": 375, "caption": "The couch is behind the bed.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["couch", "bed"], "label_positions": [[4, 9], [24, 27]], "bboxes": [[290.32, 1.84, 209.68, 188.71], [0.0, 179.49, 500.0, 195.51]]}}
{"image_file": "000000012085.jpg", "image_link": "http://images.cocodataset.org/train2017/000000012085.jpg", "width": 640, "height": 480, "caption": "The bed contains the person.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["bed", "person"], "label_positions": [[4, 7], [21, 27]], "bboxes": [[0.0, 124.86, 640.0, 348.11], [143.46, 215.73, 491.87, 256.72]]}}
{"image_file": "000000246736.jpg", "image_link": "http://images.cocodataset.org/train2017/000000246736.jpg", "width": 640, "height": 427, "caption": "The cat is under the chair.", "label": 0, "relation": "under", "ref_exp": {"labels": ["cat", "chair"], "label_positions": [[4, 7], [21, 26]], "bboxes": [[134.07, 63.36, 490.36, 306.71], [2.22, 3.33, 637.78, 417.02]]}}
{"image_file": "000000043291.jpg", "image_link": "http://images.cocodataset.org/train2017/000000043291.jpg", "width": 480, "height": 640, "caption": "The refrigerator is left of the cat.", "label": 0, "relation": "left of", "ref_exp": {"labels": ["refrigerator", "cat"], "label_positions": [[4, 16], [32, 35]], "bboxes": [[63.42, 35.32, 245.05, 308.46], [0.0, 329.73, 410.32, 310.27]]}}
{"image_file": "000000489550.jpg", "image_link": "http://images.cocodataset.org/train2017/000000489550.jpg", "width": 640, "height": 480, "caption": "The dining table is in front of the couch.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["dining table", "couch"], "label_positions": [[4, 16], [36, 41]], "bboxes": [[36.16, 22.44, 603.84, 447.59], [74.81, 0.0, 472.51, 249.35]]}}
{"image_file": "000000139008.jpg", "image_link": "http://images.cocodataset.org/train2017/000000139008.jpg", "width": 640, "height": 480, "caption": "The bed is above the handbag.", "label": 0, "relation": "above", "ref_exp": {"labels": ["bed", "handbag"], "label_positions": [[4, 7], [21, 28]], "bboxes": [[2.49, 1.25, 637.51, 472.52], [1.25, 1.25, 261.81, 453.81]]}}
{"image_file": "000000236234.jpg", "image_link": "http://images.cocodataset.org/train2017/000000236234.jpg", "width": 640, "height": 480, "caption": "The cat is above the wine glass.", "label": 1, "relation": "above", "ref_exp": {"labels": ["cat", "wine glass"], "label_positions": [[4, 7], [21, 31]], "bboxes": [[243.61, 14.45, 396.39, 458.32], [210.7, 179.45, 164.39, 282.53]]}}
{"image_file": "000000184116.jpg", "image_link": "http://images.cocodataset.org/train2017/000000184116.jpg", "width": 640, "height": 480, "caption": "The cat is on the dining table.", "label": 1, "relation": "on", "ref_exp": {"labels": ["cat", "dining table"], "label_positions": [[4, 7], [18, 30]], "bboxes": [[348.9, 54.71, 254.97, 329.29], [48.16, 270.92, 591.39, 201.24]]}}
{"image_file": "000000263098.jpg", "image_link": "http://images.cocodataset.org/train2017/000000263098.jpg", "width": 640, "height": 432, "caption": "The bicycle is beside the teddy bear.", "label": 0, "relation": "beside", "ref_exp": {"labels": ["bicycle", "teddy bear"], "label_positions": [[4, 11], [26, 36]], "bboxes": [[219.75, 60.31, 110.79, 76.86], [185.84, 126.0, 375.57, 279.24]]}}
{"image_file": "000000073946.jpg", "image_link": "http://images.cocodataset.org/val2017/000000073946.jpg", "width": 640, "height": 428, "caption": "The surfboard is below the bed.", "label": 0, "relation": "below", "ref_exp": {"labels": ["surfboard", "bed"], "label_positions": [[4, 13], [27, 30]], "bboxes": [[249.11, 44.24, 199.09, 351.06], [1.45, 65.68, 186.61, 361.21]]}}
{"image_file": "000000182032.jpg", "image_link": "http://images.cocodataset.org/train2017/000000182032.jpg", "width": 640, "height": 632, "caption": "The bench is adjacent to the cow.", "label": 1, "relation": "adjacent to", "ref_exp": {"labels": ["bench", "cow"], "label_positions": [[4, 9], [29, 32]], "bboxes": [[0.0, 163.09, 205.93, 462.99], [129.68, 14.77, 364.43, 609.02]]}}
{"image_file": "000000207093.jpg", "image_link": "http://images.cocodataset.org/train2017/000000207093.jpg", "width": 500, "height": 375, "caption": "The cat is on the backpack.", "label": 1, "relation": "on", "ref_exp": {"labels": ["cat", "backpack"], "label_positions": [[4, 7], [18, 26]], "bboxes": [[0.0, 44.35, 362.9, 325.81], [30.2, 67.2, 346.48, 307.8]]}}
{"image_file": "000000477673.jpg", "image_link": "http://images.cocodataset.org/train2017/000000477673.jpg", "width": 640, "height": 426, "caption": "The cat is next to the backpack.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["cat", "backpack"], "label_positions": [[4, 7], [23, 31]], "bboxes": [[177.73, 57.03, 192.39, 311.48], [85.2, 0.0, 554.8, 426.0]]}}
{"image_file": "000000281678.jpg", "image_link": "http://images.cocodataset.org/train2017/000000281678.jpg", "width": 640, "height": 426, "caption": "The person is on the bench.", "label": 0, "relation": "on", "ref_exp": {"labels": ["person", "bench"], "label_positions": [[4, 10], [21, 26]], "bboxes": [[259.43, 141.39, 52.65, 130.19], [273.45, 220.2, 366.55, 205.8]]}}
{"image_file": "000000200764.jpg", "image_link": "http://images.cocodataset.org/train2017/000000200764.jpg", "width": 480, "height": 640, "caption": "The train is touching the dining table.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["train", "dining table"], "label_positions": [[4, 9], [26, 38]], "bboxes": [[245.46, 379.37, 126.41, 103.35], [0.0, 337.1, 480.0, 302.9]]}}
{"image_file": "000000026908.jpg", "image_link": "http://images.cocodataset.org/train2017/000000026908.jpg", "width": 640, "height": 427, "caption": "The dog is touching the donut.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["dog", "donut"], "label_positions": [[4, 7], [24, 29]], "bboxes": [[124.72, 169.54, 490.23, 148.11], [491.96, 263.15, 45.5, 31.5]]}}
{"image_file": "000000297374.jpg", "image_link": "http://images.cocodataset.org/train2017/000000297374.jpg", "width": 375, "height": 500, "caption": "The bicycle is over the cat.", "label": 1, "relation": "over", "ref_exp": {"labels": ["bicycle", "cat"], "label_positions": [[4, 11], [24, 27]], "bboxes": [[0.0, 6.97, 201.83, 446.93], [99.79, 230.08, 103.31, 115.24]]}}
{"image_file": "000000083663.jpg", "image_link": "http://images.cocodataset.org/train2017/000000083663.jpg", "width": 640, "height": 427, "caption": "The dog is below the bench.", "label": 1, "relation": "below", "ref_exp": {"labels": ["dog", "bench"], "label_positions": [[4, 7], [21, 26]], "bboxes": [[48.4, 191.46, 153.0, 179.79], [0.0, 0.96, 640.0, 421.24]]}}
{"image_file": "000000174496.jpg", "image_link": "http://images.cocodataset.org/train2017/000000174496.jpg", "width": 500, "height": 375, "caption": "The pizza is in the toaster.", "label": 1, "relation": "in", "ref_exp": {"labels": ["pizza", "toaster"], "label_positions": [[4, 9], [20, 27]], "bboxes": [[213.06, 124.43, 131.76, 89.51], [16.85, 0.0, 396.91, 283.15]]}}
{"image_file": "000000128691.jpg", "image_link": "http://images.cocodataset.org/train2017/000000128691.jpg", "width": 640, "height": 480, "caption": "The pizza is near the sandwich.", "label": 1, "relation": "near", "ref_exp": {"labels": ["pizza", "sandwich"], "label_positions": [[4, 9], [22, 30]], "bboxes": [[231.79, 213.39, 334.51, 191.92], [96.42, 86.8, 113.62, 71.37]]}}
{"image_file": "000000461902.jpg", "image_link": "http://images.cocodataset.org/train2017/000000461902.jpg", "width": 612, "height": 612, "caption": "The truck is under the elephant.", "label": 1, "relation": "under", "ref_exp": {"labels": ["truck", "elephant"], "label_positions": [[4, 9], [23, 31]], "bboxes": [[0.0, 119.23, 606.5, 484.1], [0.18, 16.63, 539.14, 461.08]]}}
{"image_file": "000000438267.jpg", "image_link": "http://images.cocodataset.org/train2017/000000438267.jpg", "width": 480, "height": 640, "caption": "The person is away from the pizza.", "label": 0, "relation": "away from", "ref_exp": {"labels": ["person", "pizza"], "label_positions": [[4, 10], [28, 33]], "bboxes": [[5.74, 88.49, 474.26, 543.86], [1.44, 322.16, 437.21, 176.9]]}}
{"image_file": "000000571076.jpg", "image_link": "http://images.cocodataset.org/train2017/000000571076.jpg", "width": 582, "height": 640, "caption": "The dog is above the cat.", "label": 1, "relation": "above", "ref_exp": {"labels": ["dog", "cat"], "label_positions": [[4, 7], [21, 24]], "bboxes": [[114.14, 0.0, 467.86, 640.0], [95.93, 376.69, 310.69, 256.29]]}}
{"image_file": "000000018046.jpg", "image_link": "http://images.cocodataset.org/train2017/000000018046.jpg", "width": 640, "height": 447, "caption": "The horse is on the bus.", "label": 1, "relation": "on", "ref_exp": {"labels": ["horse", "bus"], "label_positions": [[4, 9], [20, 23]], "bboxes": [[182.74, 169.59, 173.4, 205.19], [0.0, 27.03, 640.0, 419.97]]}}
{"image_file": "000000179580.jpg", "image_link": "http://images.cocodataset.org/train2017/000000179580.jpg", "width": 375, "height": 500, "caption": "The couch is right of the potted plant.", "label": 0, "relation": "right of", "ref_exp": {"labels": ["couch", "potted plant"], "label_positions": [[4, 9], [26, 38]], "bboxes": [[5.19, 166.23, 163.64, 266.24], [15.7, 15.7, 359.3, 476.45]]}}
{"image_file": "000000485560.jpg", "image_link": "http://images.cocodataset.org/train2017/000000485560.jpg", "width": 427, "height": 640, "caption": "The cat is on top of the dog.", "label": 1, "relation": "on top of", "ref_exp": {"labels": ["cat", "dog"], "label_positions": [[4, 7], [25, 28]], "bboxes": [[64.69, 121.12, 235.35, 140.39], [1.29, 232.26, 378.06, 314.84]]}}
{"image_file": "000000364994.jpg", "image_link": "http://images.cocodataset.org/train2017/000000364994.jpg", "width": 480, "height": 640, "caption": "The pizza is at the left side of the dog.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["pizza", "dog"], "label_positions": [[4, 9], [37, 40]], "bboxes": [[197.18, 116.02, 38.83, 20.65], [126.71, 345.21, 193.94, 288.33]]}}
{"image_file": "000000281111.jpg", "image_link": "http://images.cocodataset.org/train2017/000000281111.jpg", "width": 640, "height": 480, "caption": "The person is at the side of the oven.", "label": 1, "relation": "at the side of", "ref_exp": {"labels": ["person", "oven"], "label_positions": [[4, 10], [33, 37]], "bboxes": [[0.0, 91.36, 104.63, 380.76], [142.13, 2.49, 388.99, 392.73]]}}
{"image_file": "000000297819.jpg", "image_link": "http://images.cocodataset.org/train2017/000000297819.jpg", "width": 640, "height": 360, "caption": "The dining table is in front of the handbag.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["dining table", "handbag"], "label_positions": [[4, 16], [36, 43]], "bboxes": [[0.81, 71.67, 603.53, 241.9], [544.36, 59.11, 61.07, 127.08]]}}
{"image_file": "000000490959.jpg", "image_link": "http://images.cocodataset.org/train2017/000000490959.jpg", "width": 480, "height": 640, "caption": "The bus is far away from the bicycle.", "label": 1, "relation": "far away from", "ref_exp": {"labels": ["bus", "bicycle"], "label_positions": [[4, 7], [29, 36]], "bboxes": [[147.28, 210.07, 169.42, 105.45], [0.0, 0.0, 480.0, 640.0]]}}
{"image_file": "000000061414.jpg", "image_link": "http://images.cocodataset.org/train2017/000000061414.jpg", "width": 426, "height": 640, "caption": "The couch is under the person.", "label": 0, "relation": "under", "ref_exp": {"labels": ["couch", "person"], "label_positions": [[4, 9], [23, 29]], "bboxes": [[0.0, 365.04, 132.74, 274.92], [24.92, 32.64, 268.54, 429.16]]}}
{"image_file": "000000533049.jpg", "image_link": "http://images.cocodataset.org/train2017/000000533049.jpg", "width": 640, "height": 480, "caption": "The book is behind the cat.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["book", "cat"], "label_positions": [[4, 8], [23, 26]], "bboxes": [[444.95, 83.56, 195.05, 175.23], [80.52, 81.62, 251.87, 373.67]]}}
{"image_file": "000000035774.jpg", "image_link": "http://images.cocodataset.org/train2017/000000035774.jpg", "width": 500, "height": 375, "caption": "The suitcase is beside the bed.", "label": 0, "relation": "beside", "ref_exp": {"labels": ["suitcase", "bed"], "label_positions": [[4, 12], [27, 30]], "bboxes": [[0.84, 11.8, 435.68, 358.99], [318.54, 250.28, 181.46, 118.82]]}}
{"image_file": "000000369156.jpg", "image_link": "http://images.cocodataset.org/train2017/000000369156.jpg", "width": 640, "height": 349, "caption": "The truck is next to the bus.", "label": 1, "relation": "next to", "ref_exp": {"labels": ["truck", "bus"], "label_positions": [[4, 9], [25, 28]], "bboxes": [[194.5, 15.69, 395.27, 325.47], [17.25, 54.77, 225.87, 235.28]]}}
{"image_file": "000000221681.jpg", "image_link": "http://images.cocodataset.org/train2017/000000221681.jpg", "width": 480, "height": 640, "caption": "The toilet is adjacent to the sink.", "label": 0, "relation": "adjacent to", "ref_exp": {"labels": ["toilet", "sink"], "label_positions": [[4, 10], [30, 34]], "bboxes": [[426.03, 391.03, 53.97, 170.08], [1.44, 281.89, 304.9, 195.59]]}}
{"image_file": "000000213579.jpg", "image_link": "http://images.cocodataset.org/train2017/000000213579.jpg", "width": 640, "height": 360, "caption": "The bench is next to the cake.", "label": 1, "relation": "next to", "ref_exp": {"labels": ["bench", "cake"], "label_positions": [[4, 9], [25, 29]], "bboxes": [[0.0, 4.97, 242.82, 211.97], [58.04, 198.43, 131.94, 66.73]]}}
{"image_file": "000000466491.jpg", "image_link": "http://images.cocodataset.org/train2017/000000466491.jpg", "width": 640, "height": 480, "caption": "The person is across the bed.", "label": 1, "relation": "across", "ref_exp": {"labels": ["person", "bed"], "label_positions": [[4, 10], [25, 28]], "bboxes": [[42.79, 178.4, 298.95, 298.59], [0.0, 128.07, 523.05, 346.55]]}}
{"image_file": "000000479528.jpg", "image_link": "http://images.cocodataset.org/train2017/000000479528.jpg", "width": 428, "height": 640, "caption": "The cat is on the clock.", "label": 0, "relation": "on", "ref_exp": {"labels": ["cat", "clock"], "label_positions": [[4, 7], [18, 23]], "bboxes": [[0.0, 146.85, 316.56, 298.66], [323.97, 129.88, 74.84, 78.91]]}}
{"image_file": "000000040931.jpg", "image_link": "http://images.cocodataset.org/train2017/000000040931.jpg", "width": 640, "height": 427, "caption": "The car is over the cat.", "label": 1, "relation": "over", "ref_exp": {"labels": ["car", "cat"], "label_positions": [[4, 7], [20, 23]], "bboxes": [[3.01, 3.85, 636.99, 118.56], [93.46, 104.09, 450.83, 227.25]]}}
{"image_file": "000000109265.jpg", "image_link": "http://images.cocodataset.org/train2017/000000109265.jpg", "width": 640, "height": 406, "caption": "The elephant is next to the bird.", "label": 1, "relation": "next to", "ref_exp": {"labels": ["elephant", "bird"], "label_positions": [[4, 12], [28, 32]], "bboxes": [[99.89, 20.53, 389.89, 303.97], [84.57, 269.23, 24.73, 28.12]]}}
{"image_file": "000000520531.jpg", "image_link": "http://images.cocodataset.org/val2017/000000520531.jpg", "width": 640, "height": 480, "caption": "The teddy bear is touching the cat.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["teddy bear", "cat"], "label_positions": [[4, 14], [31, 34]], "bboxes": [[179.82, 1.06, 54.72, 48.87], [224.0, 105.55, 341.68, 349.93]]}}
{"image_file": "000000548219.jpg", "image_link": "http://images.cocodataset.org/train2017/000000548219.jpg", "width": 640, "height": 480, "caption": "The suitcase contains the cat.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["suitcase", "cat"], "label_positions": [[4, 12], [26, 29]], "bboxes": [[0.0, 2.16, 638.56, 469.21], [14.45, 150.97, 392.26, 166.19]]}}
{"image_file": "000000511644.jpg", "image_link": "http://images.cocodataset.org/train2017/000000511644.jpg", "width": 640, "height": 425, "caption": "The apple is beside the keyboard.", "label": 1, "relation": "beside", "ref_exp": {"labels": ["apple", "keyboard"], "label_positions": [[4, 9], [24, 32]], "bboxes": [[215.23, 32.09, 210.73, 201.53], [339.04, 159.49, 300.96, 258.82]]}}
{"image_file": "000000071090.jpg", "image_link": "http://images.cocodataset.org/train2017/000000071090.jpg", "width": 480, "height": 640, "caption": "The cat is surrounding the teddy bear.", "label": 0, "relation": "surrounding", "ref_exp": {"labels": ["cat", "teddy bear"], "label_positions": [[4, 7], [27, 37]], "bboxes": [[152.77, 406.02, 297.29, 143.14], [0.0, 90.61, 448.72, 401.26]]}}
{"image_file": "000000550812.jpg", "image_link": "http://images.cocodataset.org/train2017/000000550812.jpg", "width": 640, "height": 560, "caption": "The person is touching the orange.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "orange"], "label_positions": [[4, 10], [27, 33]], "bboxes": [[12.58, 38.8, 376.27, 481.98], [410.71, 279.57, 126.43, 78.41]]}}
{"image_file": "000000451440.jpg", "image_link": "http://images.cocodataset.org/train2017/000000451440.jpg", "width": 640, "height": 480, "caption": "The dining table is beneath the cat.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["dining table", "cat"], "label_positions": [[4, 16], [32, 35]], "bboxes": [[245.15, 51.09, 394.85, 422.32], [88.64, 172.36, 146.86, 245.97]]}}
{"image_file": "000000399480.jpg", "image_link": "http://images.cocodataset.org/train2017/000000399480.jpg", "width": 500, "height": 375, "caption": "The donut is in front of the person.", "label": 1, "relation": "in front of", "ref_exp": {"labels": ["donut", "person"], "label_positions": [[4, 9], [29, 35]], "bboxes": [[255.88, 0.0, 244.12, 228.53], [77.18, 39.59, 422.82, 335.41]]}}
{"image_file": "000000267770.jpg", "image_link": "http://images.cocodataset.org/train2017/000000267770.jpg", "width": 612, "height": 612, "caption": "The sandwich is next to the broccoli.", "label": 1, "relation": "next to", "ref_exp": {"labels": ["sandwich", "broccoli"], "label_positions": [[4, 12], [28, 36]], "bboxes": [[338.17, 156.21, 168.41, 158.82], [0.0, 86.13, 438.58, 490.18]]}}
{"image_file": "000000531568.jpg", "image_link": "http://images.cocodataset.org/train2017/000000531568.jpg", "width": 457, "height": 640, "caption": "The couch is behind the teddy bear.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["couch", "teddy bear"], "label_positions": [[4, 9], [24, 34]], "bboxes": [[1.44, 351.92, 76.22, 279.01], [47.46, 48.9, 368.18, 582.47]]}}
{"image_file": "000000214571.jpg", "image_link": "http://images.cocodataset.org/train2017/000000214571.jpg", "width": 640, "height": 427, "caption": "The person is behind the dining table.", "label": 0, "relation": "behind", "ref_exp": {"labels": ["person", "dining table"], "label_positions": [[4, 10], [25, 37]], "bboxes": [[0.0, 5.29, 346.22, 395.26], [59.76, 53.25, 575.44, 364.35]]}}
{"image_file": "000000523220.jpg", "image_link": "http://images.cocodataset.org/train2017/000000523220.jpg", "width": 640, "height": 480, "caption": "The person is across from the sandwich.", "label": 0, "relation": "across from", "ref_exp": {"labels": ["person", "sandwich"], "label_positions": [[4, 10], [30, 38]], "bboxes": [[166.58, 118.96, 315.26, 268.4], [497.26, 319.28, 104.63, 66.88]]}}
{"image_file": "000000468017.jpg", "image_link": "http://images.cocodataset.org/train2017/000000468017.jpg", "width": 281, "height": 500, "caption": "The chair is on top of the horse.", "label": 0, "relation": "on top of", "ref_exp": {"labels": ["chair", "horse"], "label_positions": [[4, 9], [27, 32]], "bboxes": [[11.83, 86.02, 253.76, 386.02], [110.3, 80.64, 121.23, 143.34]]}}
{"image_file": "000000207889.jpg", "image_link": "http://images.cocodataset.org/train2017/000000207889.jpg", "width": 612, "height": 612, "caption": "The dog is left of the pizza.", "label": 0, "relation": "left of", "ref_exp": {"labels": ["dog", "pizza"], "label_positions": [[4, 7], [23, 28]], "bboxes": [[35.93, 4.34, 336.97, 417.49], [90.97, 433.5, 521.03, 178.5]]}}
{"image_file": "000000250951.jpg", "image_link": "http://images.cocodataset.org/train2017/000000250951.jpg", "width": 640, "height": 480, "caption": "The cat is inside the handbag.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["cat", "handbag"], "label_positions": [[4, 7], [22, 29]], "bboxes": [[0.0, 90.61, 299.87, 384.0], [194.6, 74.64, 278.43, 298.97]]}}
{"image_file": "000000396890.jpg", "image_link": "http://images.cocodataset.org/train2017/000000396890.jpg", "width": 640, "height": 478, "caption": "The dog is at the right side of the refrigerator.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["dog", "refrigerator"], "label_positions": [[4, 7], [36, 48]], "bboxes": [[332.77, 1.1, 306.81, 343.35], [1.07, 0.0, 176.17, 182.61]]}}
{"image_file": "000000368983.jpg", "image_link": "http://images.cocodataset.org/train2017/000000368983.jpg", "width": 428, "height": 640, "caption": "The potted plant is at the side of the bench.", "label": 0, "relation": "at the side of", "ref_exp": {"labels": ["potted plant", "bench"], "label_positions": [[4, 16], [39, 44]], "bboxes": [[312.84, 108.51, 112.91, 148.02], [129.44, 355.24, 298.56, 277.57]]}}
{"image_file": "000000003711.jpg", "image_link": "http://images.cocodataset.org/train2017/000000003711.jpg", "width": 480, "height": 640, "caption": "The car contains the cat.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["car", "cat"], "label_positions": [[4, 7], [21, 24]], "bboxes": [[22.07, 1.47, 456.09, 631.17], [239.19, 17.17, 151.65, 259.7]]}}
{"image_file": "000000108751.jpg", "image_link": "http://images.cocodataset.org/train2017/000000108751.jpg", "width": 480, "height": 640, "caption": "The suitcase is behind the dining table.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["suitcase", "dining table"], "label_positions": [[4, 12], [27, 39]], "bboxes": [[310.65, 316.4, 110.74, 110.75], [1.51, 374.85, 475.09, 257.21]]}}
{"image_file": "000000513280.jpg", "image_link": "http://images.cocodataset.org/train2017/000000513280.jpg", "width": 426, "height": 640, "caption": "The bench is behind the vase.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["bench", "vase"], "label_positions": [[4, 9], [24, 28]], "bboxes": [[153.63, 306.99, 18.88, 31.45], [89.17, 127.56, 244.49, 503.37]]}}
{"image_file": "000000210368.jpg", "image_link": "http://images.cocodataset.org/train2017/000000210368.jpg", "width": 640, "height": 427, "caption": "The dining table is at the right side of the teddy bear.", "label": 0, "relation": "at the right side of", "ref_exp": {"labels": ["dining table", "teddy bear"], "label_positions": [[4, 16], [45, 55]], "bboxes": [[1.92, 83.48, 638.08, 338.72], [226.53, 35.42, 179.42, 279.65]]}}
{"image_file": "000000219075.jpg", "image_link": "http://images.cocodataset.org/train2017/000000219075.jpg", "width": 640, "height": 480, "caption": "The refrigerator is at the left side of the person.", "label": 1, "relation": "at the left side of", "ref_exp": {"labels": ["refrigerator", "person"], "label_positions": [[4, 16], [44, 50]], "bboxes": [[189.76, 147.18, 151.18, 332.82], [336.62, 98.49, 139.64, 375.28]]}}
{"image_file": "000000574315.jpg", "image_link": "http://images.cocodataset.org/val2017/000000574315.jpg", "width": 640, "height": 480, "caption": "The laptop is opposite to the couch.", "label": 0, "relation": "opposite to", "ref_exp": {"labels": ["laptop", "couch"], "label_positions": [[4, 10], [30, 35]], "bboxes": [[0.0, 257.47, 557.66, 215.73], [2.06, 1.1, 637.94, 469.68]]}}
{"image_file": "000000437452.jpg", "image_link": "http://images.cocodataset.org/train2017/000000437452.jpg", "width": 640, "height": 481, "caption": "The laptop is at the edge of the bed.", "label": 0, "relation": "at the edge of", "ref_exp": {"labels": ["laptop", "bed"], "label_positions": [[4, 10], [33, 36]], "bboxes": [[22.75, 108.88, 257.83, 261.08], [0.0, 1.08, 639.89, 479.92]]}}
{"image_file": "000000345160.jpg", "image_link": "http://images.cocodataset.org/train2017/000000345160.jpg", "width": 460, "height": 640, "caption": "The truck contains the motorcycle.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["truck", "motorcycle"], "label_positions": [[4, 9], [23, 33]], "bboxes": [[407.53, 156.41, 52.47, 327.18], [1.43, 317.99, 458.57, 319.41]]}}
{"image_file": "000000506586.jpg", "image_link": "http://images.cocodataset.org/train2017/000000506586.jpg", "width": 640, "height": 640, "caption": "The cat is inside the backpack.", "label": 0, "relation": "inside", "ref_exp": {"labels": ["cat", "backpack"], "label_positions": [[4, 7], [22, 30]], "bboxes": [[43.95, 19.5, 498.54, 526.01], [0.0, 151.33, 512.87, 481.09]]}}
{"image_file": "000000123176.jpg", "image_link": "http://images.cocodataset.org/train2017/000000123176.jpg", "width": 640, "height": 419, "caption": "The car is behind the train.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["car", "train"], "label_positions": [[4, 7], [22, 27]], "bboxes": [[514.39, 215.13, 38.36, 29.02], [76.27, 100.59, 438.77, 194.91]]}}
{"image_file": "000000429971.jpg", "image_link": "http://images.cocodataset.org/train2017/000000429971.jpg", "width": 480, "height": 640, "caption": "The truck is away from the bed.", "label": 0, "relation": "away from", "ref_exp": {"labels": ["truck", "bed"], "label_positions": [[4, 9], [27, 30]], "bboxes": [[58.86, 0.0, 400.33, 632.96], [101.73, 174.97, 62.73, 168.73]]}}
{"image_file": "000000042042.jpg", "image_link": "http://images.cocodataset.org/train2017/000000042042.jpg", "width": 428, "height": 640, "caption": "The dining table is near the person.", "label": 1, "relation": "near", "ref_exp": {"labels": ["dining table", "person"], "label_positions": [[4, 16], [29, 35]], "bboxes": [[0.0, 364.59, 428.0, 275.41], [1.58, 37.93, 412.44, 407.7]]}}
{"image_file": "000000286662.jpg", "image_link": "http://images.cocodataset.org/train2017/000000286662.jpg", "width": 426, "height": 640, "caption": "The wine glass is touching the person.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["wine glass", "person"], "label_positions": [[4, 14], [31, 37]], "bboxes": [[84.86, 327.18, 258.83, 312.82], [64.57, 3.04, 344.4, 285.56]]}}
{"image_file": "000000097272.jpg", "image_link": "http://images.cocodataset.org/train2017/000000097272.jpg", "width": 640, "height": 480, "caption": "The person is touching the sheep.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["person", "sheep"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[0.0, 64.4, 92.76, 262.11], [220.71, 136.51, 396.87, 312.99]]}}
{"image_file": "000000483130.jpg", "image_link": "http://images.cocodataset.org/train2017/000000483130.jpg", "width": 640, "height": 480, "caption": "The dog is away from the couch.", "label": 1, "relation": "away from", "ref_exp": {"labels": ["dog", "couch"], "label_positions": [[4, 7], [25, 30]], "bboxes": [[533.29, 356.74, 64.54, 93.84], [60.77, 222.49, 261.63, 235.88]]}}
{"image_file": "000000561953.jpg", "image_link": "http://images.cocodataset.org/train2017/000000561953.jpg", "width": 640, "height": 478, "caption": "The pizza is in front of the cup.", "label": 0, "relation": "in front of", "ref_exp": {"labels": ["pizza", "cup"], "label_positions": [[4, 9], [29, 32]], "bboxes": [[174.23, 96.14, 432.24, 342.87], [6.44, 127.9, 154.68, 179.38]]}}
{"image_file": "000000326700.jpg", "image_link": "http://images.cocodataset.org/train2017/000000326700.jpg", "width": 640, "height": 480, "caption": "The truck is ahead of the elephant.", "label": 0, "relation": "ahead of", "ref_exp": {"labels": ["truck", "elephant"], "label_positions": [[4, 9], [26, 34]], "bboxes": [[22.65, 44.22, 533.93, 406.66], [210.2, 196.57, 40.39, 48.42]]}}
{"image_file": "000000526225.jpg", "image_link": "http://images.cocodataset.org/train2017/000000526225.jpg", "width": 640, "height": 480, "caption": "The cat is in the backpack.", "label": 1, "relation": "in", "ref_exp": {"labels": ["cat", "backpack"], "label_positions": [[4, 7], [18, 26]], "bboxes": [[125.94, 55.74, 355.09, 394.32], [56.22, 1.08, 529.73, 446.49]]}}
{"image_file": "000000553378.jpg", "image_link": "http://images.cocodataset.org/train2017/000000553378.jpg", "width": 640, "height": 480, "caption": "The cat is inside the handbag.", "label": 1, "relation": "inside", "ref_exp": {"labels": ["cat", "handbag"], "label_positions": [[4, 7], [22, 29]], "bboxes": [[135.52, 60.52, 397.24, 237.93], [33.66, 28.68, 536.11, 442.59]]}}
{"image_file": "000000013882.jpg", "image_link": "http://images.cocodataset.org/train2017/000000013882.jpg", "width": 426, "height": 640, "caption": "The dog is at the right side of the toilet.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["dog", "toilet"], "label_positions": [[4, 7], [36, 42]], "bboxes": [[46.64, 91.34, 330.36, 307.04], [0.0, 106.43, 110.74, 214.29]]}}
{"image_file": "000000423065.jpg", "image_link": "http://images.cocodataset.org/train2017/000000423065.jpg", "width": 480, "height": 640, "caption": "The umbrella is touching the orange.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["umbrella", "orange"], "label_positions": [[4, 12], [29, 35]], "bboxes": [[28.76, 1.44, 424.27, 378.25], [0.0, 421.32, 349.27, 207.95]]}}
{"image_file": "000000222659.jpg", "image_link": "http://images.cocodataset.org/train2017/000000222659.jpg", "width": 640, "height": 500, "caption": "The cat is below the bench.", "label": 0, "relation": "below", "ref_exp": {"labels": ["cat", "bench"], "label_positions": [[4, 7], [21, 26]], "bboxes": [[16.85, 15.73, 612.36, 473.03], [80.52, 244.16, 559.48, 255.84]]}}
{"image_file": "000000273704.jpg", "image_link": "http://images.cocodataset.org/train2017/000000273704.jpg", "width": 640, "height": 425, "caption": "The truck is part of the cake.", "label": 0, "relation": "part of", "ref_exp": {"labels": ["truck", "cake"], "label_positions": [[4, 9], [25, 29]], "bboxes": [[1.05, 6.3, 155.31, 113.33], [85.19, 267.06, 463.29, 153.15]]}}
{"image_file": "000000467720.jpg", "image_link": "http://images.cocodataset.org/train2017/000000467720.jpg", "width": 500, "height": 332, "caption": "The dog is under the bowl.", "label": 0, "relation": "under", "ref_exp": {"labels": ["dog", "bowl"], "label_positions": [[4, 7], [21, 25]], "bboxes": [[14.76, 18.11, 485.24, 213.28], [0.0, 150.46, 37.12, 21.41]]}}
{"image_file": "000000260953.jpg", "image_link": "http://images.cocodataset.org/train2017/000000260953.jpg", "width": 480, "height": 640, "caption": "The keyboard is alongside the person.", "label": 1, "relation": "alongside", "ref_exp": {"labels": ["keyboard", "person"], "label_positions": [[4, 12], [30, 36]], "bboxes": [[13.73, 503.38, 424.33, 136.62], [0.0, 0.0, 364.11, 512.39]]}}
{"image_file": "000000032578.jpg", "image_link": "http://images.cocodataset.org/train2017/000000032578.jpg", "width": 375, "height": 500, "caption": "The oven contains the pizza.", "label": 0, "relation": "contains", "ref_exp": {"labels": ["oven", "pizza"], "label_positions": [[4, 8], [22, 27]], "bboxes": [[2.25, 117.64, 198.87, 208.99], [67.14, 365.6, 301.36, 134.4]]}}
{"image_file": "000000359085.jpg", "image_link": "http://images.cocodataset.org/train2017/000000359085.jpg", "width": 640, "height": 426, "caption": "The dog is under the chair.", "label": 1, "relation": "under", "ref_exp": {"labels": ["dog", "chair"], "label_positions": [[4, 7], [21, 26]], "bboxes": [[70.57, 169.54, 253.02, 251.3], [0.0, 0.0, 640.0, 322.92]]}}
{"image_file": "000000567789.jpg", "image_link": "http://images.cocodataset.org/train2017/000000567789.jpg", "width": 640, "height": 554, "caption": "The book is at the left side of the wine glass.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["book", "wine glass"], "label_positions": [[4, 8], [36, 46]], "bboxes": [[586.79, 196.35, 53.21, 53.71], [88.39, 33.61, 283.85, 514.17]]}}
{"image_file": "000000308025.jpg", "image_link": "http://images.cocodataset.org/train2017/000000308025.jpg", "width": 640, "height": 429, "caption": "The toilet is beneath the person.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["toilet", "person"], "label_positions": [[4, 10], [26, 32]], "bboxes": [[333.56, 19.28, 306.44, 409.72], [0.93, 0.0, 475.76, 429.0]]}}
{"image_file": "000000283942.jpg", "image_link": "http://images.cocodataset.org/train2017/000000283942.jpg", "width": 640, "height": 381, "caption": "The person is close to the bear.", "label": 0, "relation": "close to", "ref_exp": {"labels": ["person", "bear"], "label_positions": [[4, 10], [27, 31]], "bboxes": [[374.99, 52.17, 265.01, 324.37], [29.24, 121.05, 99.77, 72.25]]}}
{"image_file": "000000217874.jpg", "image_link": "http://images.cocodataset.org/train2017/000000217874.jpg", "width": 490, "height": 500, "caption": "The giraffe is touching the truck.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["giraffe", "truck"], "label_positions": [[4, 11], [28, 33]], "bboxes": [[94.89, 72.49, 363.64, 422.88], [61.27, 318.71, 71.25, 32.12]]}}
{"image_file": "000000036324.jpg", "image_link": "http://images.cocodataset.org/train2017/000000036324.jpg", "width": 500, "height": 375, "caption": "The oven is beneath the pizza.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["oven", "pizza"], "label_positions": [[4, 8], [24, 29]], "bboxes": [[0.84, 0.8, 496.92, 235.42], [62.36, 120.51, 410.39, 165.16]]}}
{"image_file": "000000516168.jpg", "image_link": "http://images.cocodataset.org/train2017/000000516168.jpg", "width": 640, "height": 480, "caption": "The suitcase is on the dining table.", "label": 0, "relation": "on", "ref_exp": {"labels": ["suitcase", "dining table"], "label_positions": [[4, 12], [23, 35]], "bboxes": [[325.41, 0.54, 113.51, 74.6], [0.0, 288.75, 640.0, 184.45]]}}
{"image_file": "000000346158.jpg", "image_link": "http://images.cocodataset.org/train2017/000000346158.jpg", "width": 375, "height": 500, "caption": "The chair is above the dog.", "label": 0, "relation": "above", "ref_exp": {"labels": ["chair", "dog"], "label_positions": [[4, 9], [23, 26]], "bboxes": [[309.18, 78.41, 57.88, 100.17], [5.04, 47.98, 328.63, 443.55]]}}
{"image_file": "000000057091.jpg", "image_link": "http://images.cocodataset.org/train2017/000000057091.jpg", "width": 640, "height": 427, "caption": "The backpack is beneath the bed.", "label": 0, "relation": "beneath", "ref_exp": {"labels": ["backpack", "bed"], "label_positions": [[4, 12], [28, 31]], "bboxes": [[5.76, 41.26, 257.16, 309.94], [194.79, 0.8, 445.21, 110.35]]}}
{"image_file": "000000451038.jpg", "image_link": "http://images.cocodataset.org/train2017/000000451038.jpg", "width": 388, "height": 500, "caption": "The person is touching the apple.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["person", "apple"], "label_positions": [[4, 10], [27, 32]], "bboxes": [[1.12, 0.0, 386.88, 365.17], [113.85, 250.54, 274.15, 249.46]]}}
{"image_file": "000000574717.jpg", "image_link": "http://images.cocodataset.org/train2017/000000574717.jpg", "width": 480, "height": 640, "caption": "The chair is away from the horse.", "label": 1, "relation": "away from", "ref_exp": {"labels": ["chair", "horse"], "label_positions": [[4, 9], [27, 32]], "bboxes": [[253.74, 461.32, 56.45, 103.3], [198.19, 217.46, 281.81, 421.16]]}}
{"image_file": "000000481313.jpg", "image_link": "http://images.cocodataset.org/train2017/000000481313.jpg", "width": 640, "height": 479, "caption": "The book is touching the cat.", "label": 0, "relation": "touching", "ref_exp": {"labels": ["book", "cat"], "label_positions": [[4, 8], [25, 28]], "bboxes": [[72.38, 285.83, 186.69, 76.75], [305.66, 179.6, 334.34, 219.49]]}}
{"image_file": "000000020485.jpg", "image_link": "http://images.cocodataset.org/train2017/000000020485.jpg", "width": 640, "height": 480, "caption": "The pizza is at the edge of the dining table.", "label": 0, "relation": "at the edge of", "ref_exp": {"labels": ["pizza", "dining table"], "label_positions": [[4, 9], [32, 44]], "bboxes": [[73.35, 112.18, 533.93, 284.76], [0.0, 1.18, 640.0, 470.33]]}}
{"image_file": "000000255244.jpg", "image_link": "http://images.cocodataset.org/train2017/000000255244.jpg", "width": 500, "height": 375, "caption": "The cat is next to the potted plant.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["cat", "potted plant"], "label_positions": [[4, 7], [23, 35]], "bboxes": [[1.79, 39.49, 473.92, 326.07], [266.73, 26.32, 37.61, 62.08]]}}
{"image_file": "000000060126.jpg", "image_link": "http://images.cocodataset.org/train2017/000000060126.jpg", "width": 432, "height": 354, "caption": "The cake is touching the banana.", "label": 1, "relation": "touching", "ref_exp": {"labels": ["cake", "banana"], "label_positions": [[4, 8], [25, 31]], "bboxes": [[48.56, 33.1, 345.9, 311.55], [65.88, 31.37, 323.67, 278.22]]}}
{"image_file": "000000358265.jpg", "image_link": "http://images.cocodataset.org/train2017/000000358265.jpg", "width": 640, "height": 427, "caption": "The elephant is in the truck.", "label": 0, "relation": "in", "ref_exp": {"labels": ["elephant", "truck"], "label_positions": [[4, 12], [23, 28]], "bboxes": [[157.37, 62.37, 371.34, 294.58], [0.42, 175.86, 273.46, 165.54]]}}
{"image_file": "000000444304.jpg", "image_link": "http://images.cocodataset.org/train2017/000000444304.jpg", "width": 640, "height": 429, "caption": "The person is at the edge of the bed.", "label": 1, "relation": "at the edge of", "ref_exp": {"labels": ["person", "bed"], "label_positions": [[4, 10], [33, 36]], "bboxes": [[0.0, 1.03, 210.16, 423.21], [48.2, 301.59, 296.93, 121.47]]}}
{"image_file": "000000252354.jpg", "image_link": "http://images.cocodataset.org/train2017/000000252354.jpg", "width": 640, "height": 480, "caption": "The teddy bear is at the left side of the bed.", "label": 0, "relation": "at the left side of", "ref_exp": {"labels": ["teddy bear", "bed"], "label_positions": [[4, 14], [42, 45]], "bboxes": [[169.35, 236.22, 382.92, 238.39], [0.0, 5.06, 640.0, 366.75]]}}
{"image_file": "000000135975.jpg", "image_link": "http://images.cocodataset.org/train2017/000000135975.jpg", "width": 640, "height": 480, "caption": "The teddy bear is next to the potted plant.", "label": 0, "relation": "next to", "ref_exp": {"labels": ["teddy bear", "potted plant"], "label_positions": [[4, 14], [30, 42]], "bboxes": [[201.08, 75.14, 254.06, 334.05], [510.34, 0.92, 73.73, 137.11]]}}
{"image_file": "000000197245.jpg", "image_link": "http://images.cocodataset.org/train2017/000000197245.jpg", "width": 500, "height": 375, "caption": "The couch is congruent the cat.", "label": 0, "relation": "congruent", "ref_exp": {"labels": ["couch", "cat"], "label_positions": [[4, 9], [27, 30]], "bboxes": [[102.42, 0.0, 241.13, 139.52], [214.86, 2.15, 284.87, 368.56]]}}
{"image_file": "000000048882.jpg", "image_link": "http://images.cocodataset.org/train2017/000000048882.jpg", "width": 640, "height": 427, "caption": "The book is perpendicular to the bed.", "label": 0, "relation": "perpendicular to", "ref_exp": {"labels": ["book", "bed"], "label_positions": [[4, 8], [33, 36]], "bboxes": [[159.29, 217.82, 480.71, 209.18], [0.0, 1.91, 637.63, 420.3]]}}
{"image_file": "000000292232.jpg", "image_link": "http://images.cocodataset.org/train2017/000000292232.jpg", "width": 640, "height": 427, "caption": "The suitcase contains the cat.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["suitcase", "cat"], "label_positions": [[4, 12], [26, 29]], "bboxes": [[0.0, 0.0, 640.0, 384.78], [33.06, 59.69, 433.43, 217.63]]}}
{"image_file": "000000135685.jpg", "image_link": "http://images.cocodataset.org/train2017/000000135685.jpg", "width": 480, "height": 640, "caption": "The banana is into the person.", "label": 0, "relation": "into", "ref_exp": {"labels": ["banana", "person"], "label_positions": [[4, 10], [23, 29]], "bboxes": [[30.13, 62.66, 388.88, 490.76], [0.0, 361.08, 245.05, 278.92]]}}
{"image_file": "000000379733.jpg", "image_link": "http://images.cocodataset.org/train2017/000000379733.jpg", "width": 640, "height": 480, "caption": "The dog is facing the boat.", "label": 0, "relation": "facing", "ref_exp": {"labels": ["dog", "boat"], "label_positions": [[4, 7], [22, 26]], "bboxes": [[111.92, 137.95, 283.76, 300.82], [0.0, 258.69, 640.0, 213.45]]}}
{"image_file": "000000178761.jpg", "image_link": "http://images.cocodataset.org/train2017/000000178761.jpg", "width": 640, "height": 640, "caption": "The sheep is left of the dog.", "label": 1, "relation": "left of", "ref_exp": {"labels": ["sheep", "dog"], "label_positions": [[4, 9], [25, 28]], "bboxes": [[6.87, 0.0, 365.32, 450.47], [356.03, 127.19, 283.97, 380.69]]}}
{"image_file": "000000431494.jpg", "image_link": "http://images.cocodataset.org/train2017/000000431494.jpg", "width": 640, "height": 480, "caption": "The truck contains the bed.", "label": 1, "relation": "contains", "ref_exp": {"labels": ["truck", "bed"], "label_positions": [[4, 9], [23, 26]], "bboxes": [[175.36, 154.35, 33.65, 34.29], [1.24, 195.23, 638.76, 278.55]]}}
{"image_file": "000000434275.jpg", "image_link": "http://images.cocodataset.org/train2017/000000434275.jpg", "width": 612, "height": 612, "caption": "The dog is at the right side of the laptop.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["dog", "laptop"], "label_positions": [[4, 7], [36, 42]], "bboxes": [[309.08, 230.45, 229.04, 310.31], [0.0, 71.27, 313.15, 351.3]]}}
{"image_file": "000000307316.jpg", "image_link": "http://images.cocodataset.org/train2017/000000307316.jpg", "width": 425, "height": 640, "caption": "The bed is behind the person.", "label": 1, "relation": "behind", "ref_exp": {"labels": ["bed", "person"], "label_positions": [[4, 7], [22, 28]], "bboxes": [[0.0, 392.1, 92.61, 247.9], [40.27, 38.59, 294.83, 593.98]]}}
{"image_file": "000000356648.jpg", "image_link": "http://images.cocodataset.org/train2017/000000356648.jpg", "width": 640, "height": 427, "caption": "The bench is at the right side of the refrigerator.", "label": 1, "relation": "at the right side of", "ref_exp": {"labels": ["bench", "refrigerator"], "label_positions": [[4, 9], [38, 50]], "bboxes": [[347.36, 137.22, 292.64, 256.2], [89.24, 78.75, 248.52, 205.34]]}}
|