File size: 127,739 Bytes
561ecf2 |
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 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 |
[
{
"scene_name": "scene0011_00",
"context_views_id": [1239, 1268],
"context_objects": 3,
"texts": "a brown table, placed in the middle of the room, on the left is 4 brown chairs, on the right are 4 brown chairs. the front is a brown door with light shining on."
},
{
"scene_name": "scene0015_00",
"context_views_id": [71, 87],
"context_objects": 34,
"texts": "there is a brown wooden desk. placed on the first raw of the clasroom."
},
{
"scene_name": "scene0019_00",
"context_views_id": [185, 195],
"context_objects": 13,
"texts": "this is an upside down brown leather chair. the chair is located on the top right end of the second row, of a group of six brown leather chairs. the chairs are stacked against the wall."
},
{
"scene_name": "scene0025_00",
"context_views_id": [1579, 1591],
"context_objects": 4,
"texts": "this is a small, black sofa. it is sitting in front of a gray bookcase. the bookcase is placed in a corner to the left of the door to the room, when facing the door from the inside."
},
{
"scene_name": "scene0030_00",
"context_views_id": [980, 1000],
"context_objects": 19,
"texts": "tall bookshelf in the corner of the room next to the window with blinds on it. the bookshelf is a double bookshelf and if packed fairly full with books."
},
{
"scene_name": "scene0046_00",
"context_views_id": [756, 769],
"context_objects": 4,
"texts": "this is a white bed. it is in the corner of the room."
},
{
"scene_name": "scene0050_00",
"context_views_id": [4390, 4412],
"context_objects": 6,
"texts": "the brown desk is right next to the window by the chair. the desk is also right in front of the door."
},
{
"scene_name": "scene0063_00",
"context_views_id": [240, 260],
"context_objects": 11,
"texts": "this is a black kitchen cabinet. it sets by the refrigerator."
},
{
"scene_name": "scene0064_00",
"context_views_id": [255, 269],
"context_objects": 1,
"texts": "it is a long brown wooden shelf. on the side of the room."
},
{
"scene_name": "scene0077_00",
"context_views_id": [8, 26],
"context_objects": 4,
"texts": "it is a small two paned window. the window is above the counter, on the right side."
},
{
"scene_name": "scene0081_00",
"context_views_id": [53, 78],
"context_objects": 7,
"texts": "a round brown table. it is next to a red squared chair."
},
{
"scene_name": "scene0084_00",
"context_views_id": [1748, 1769],
"context_objects": 24,
"texts": "this is a white door. it is to the left of a black paper towel dispenser."
},
{
"scene_name": "scene0086_00",
"context_views_id": [451, 477],
"context_objects": 9,
"texts": "the door is beige with a dark bottom. the door is in the middle of a white wall."
},
{
"scene_name": "scene0088_00",
"context_views_id": [521, 538],
"context_objects": 18,
"texts": "the chair is black with metal legs. the chair is back against the wall and has two chairs to the right."
},
{
"scene_name": "scene0095_00",
"context_views_id": [45, 72],
"context_objects": 13,
"texts": "this is a wood or imitation wood chair against a wall with one other chair to it's right. it's to the left of the cabinet. this is an l shaped chair."
},
{
"scene_name": "scene0100_00",
"context_views_id": [318, 329],
"context_objects": 5,
"texts": "this is a bathroom cabinet. it sets against the wall."
},
{
"scene_name": "scene0131_00",
"context_views_id": [217, 232],
"context_objects": 5,
"texts": "this is a cushion rolling chair. the chair is facing to the white board."
},
{
"scene_name": "scene0139_00",
"context_views_id": [163, 175],
"context_objects": 2,
"texts": "this is a white washing machine. it is to the right of another washing machine."
},
{
"scene_name": "scene0144_00",
"context_views_id": [484, 502],
"context_objects": 20,
"texts": "a white closet door. it is behind a black dresser."
},
{
"scene_name": "scene0146_00",
"context_views_id": [254, 283],
"context_objects": 6,
"texts": "there is a sink in the room on the other side of it is our object. it is a white toilet bowl."
},
{
"scene_name": "scene0149_00",
"context_views_id": [1205, 1223],
"context_objects": 1,
"texts": "the curved kitchen counter. the counter is next to the sink."
},
{
"scene_name": "scene0153_00",
"context_views_id": [242, 268],
"context_objects": 5,
"texts": "this is a yellow shower curtain. the curtain is hanged on the top of bath tub."
},
{
"scene_name": "scene0164_00",
"context_views_id": [1157, 1187],
"context_objects": 1,
"texts": "there is a counter that runs along a large portion of the kitchen wall. it is to the right of the refrigerator."
},
{
"scene_name": "scene0169_00",
"context_views_id": [420, 436],
"context_objects": 5,
"texts": "a black office chair. it is right next to a same chair."
},
{
"scene_name": "scene0187_00",
"context_views_id": [504, 515],
"context_objects": 8,
"texts": "the table is south of the coffee table. the table looks like a long white rectangle."
},
{
"scene_name": "scene0193_00",
"context_views_id": [620, 636],
"context_objects": 6,
"texts": "this is a black, rolling office chair. this chair sits at the desk, at the end of the bed."
},
{
"scene_name": "scene0196_00",
"context_views_id": [1445, 1469],
"context_objects": 3,
"texts": "enter you enter through the door there is a table. it is the table in the middle on the wall farthest to the right."
},
{
"scene_name": "scene0203_00",
"context_views_id": [476, 500],
"context_objects": 27,
"texts": "this is a black sofa. it is facing the corner of the room, adjacent to an armchair."
},
{
"scene_name": "scene0207_00",
"context_views_id": [34, 56],
"context_objects": 8,
"texts": "this bed is lying close and parallel to the wall. pillow and the comforter are present on the bed."
},
{
"scene_name": "scene0208_00",
"context_views_id": [2006, 2022],
"context_objects": 1,
"texts": "bookshelf with 7 shelves and 4 sections. it is on the wall opposite the table that has books on it."
},
{
"scene_name": "scene0221_00",
"context_views_id": [673, 688],
"context_objects": 11,
"texts": "this is a wooden dresser with a television on top. it is to the left of the bathroom and has a clock on it."
},
{
"scene_name": "scene0222_00",
"context_views_id": [4162, 4182],
"context_objects": 1,
"texts": "bed is lying parallel to the wall and attached to the wall. a night stand is on right side of the bed."
},
{
"scene_name": "scene0231_00",
"context_views_id": [4179, 4190],
"context_objects": 5,
"texts": "there is desk. it is to the right of the window."
},
{
"scene_name": "scene0246_00",
"context_views_id": [357, 381],
"context_objects": 4,
"texts": "there is a white table. it is next to the red curtains and at the corner of the room."
},
{
"scene_name": "scene0249_00",
"context_views_id": [2392, 2404],
"context_objects": 4,
"texts": "this is a brown chair. it is to the left of the recycle trash can."
},
{
"scene_name": "scene0251_00",
"context_views_id": [302, 323],
"context_objects": 9,
"texts": "the trash can is left of an open door. the trash can is a gray rectangle."
},
{
"scene_name": "scene0256_00",
"context_views_id": [1316, 1340],
"context_objects": 12,
"texts": "there is a dark clothing rack. it is next to a stack of plastic containers."
},
{
"scene_name": "scene0257_00",
"context_views_id": [803, 815],
"context_objects": 2,
"texts": "the pink chair, it is located near the door, on the left there is a fire extinguisher. on the right is a brown door."
},
{
"scene_name": "scene0277_00",
"context_views_id": [970, 996],
"context_objects": 2,
"texts": "the bed is made from wood. the mattress has a navy cover on it."
},
{
"scene_name": "scene0278_00",
"context_views_id": [77, 102],
"context_objects": 15,
"texts": "the cabinets are on the right side of the room. the cabinets are long rectangular boxes."
},
{
"scene_name": "scene0300_00",
"context_views_id": [355, 379],
"context_objects": 7,
"texts": "it is a table to the right of the windows. the table has 1 grey chair."
},
{
"scene_name": "scene0304_00",
"context_views_id": [243, 260],
"context_objects": 10,
"texts": "the cabinet is in the middle of the room. the cabinet is a white box with a blue top."
},
{
"scene_name": "scene0307_00",
"context_views_id": [1607, 1635],
"context_objects": 1,
"texts": "the door is open and is to the right of shelves. it opens into the room and is white."
},
{
"scene_name": "scene0314_00",
"context_views_id": [690, 714],
"context_objects": 1,
"texts": "the furniture is on the far wall behind the chair. it is dark brown and has open slates."
},
{
"scene_name": "scene0316_00",
"context_views_id": [573, 607],
"context_objects": 6,
"texts": "the chair is black and brown. it is to the right of the water fountain."
},
{
"scene_name": "scene0328_00",
"context_views_id": [597, 626],
"context_objects": 15,
"texts": "a dark grey counter top. it extends along the length of the kitchen, on either side of the stove, and goes from the left side of the kitchen next to the fridge, along the wall, past the stove, and around the right corner of the kitchen, including a kitchen sink before it connects to the last wall."
},
{
"scene_name": "scene0329_00",
"context_views_id": [579, 598],
"context_objects": 2,
"texts": "the couch has a pillow on the left side of it. there is a fire extinguisher on the wall behind the couch."
},
{
"scene_name": "scene0334_00",
"context_views_id": [537, 551],
"context_objects": 3,
"texts": "this is a round couch. it is in front of a bench."
},
{
"scene_name": "scene0338_00",
"context_views_id": [63, 74],
"context_objects": 3,
"texts": "there is a rectangular dark cabinet. it is next to a white cabinet."
},
{
"scene_name": "scene0342_00",
"context_views_id": [403, 424],
"context_objects": 2,
"texts": "the chair is in the 2nd row. it is the 2nd left most chair."
},
{
"scene_name": "scene0343_00",
"context_views_id": [425, 436],
"context_objects": 16,
"texts": "this is a white table with a rack underneath. it is straight across from the blue cart."
},
{
"scene_name": "scene0351_00",
"context_views_id": [1324, 1340],
"context_objects": 2,
"texts": "the chair is on the back edge of the table. it is in front of the whiteboard."
},
{
"scene_name": "scene0353_00",
"context_views_id": [2729, 2751],
"context_objects": 11,
"texts": "a small black mini fridge sitting across the room from the couch. it is at the foot of the bed that is to the right of the window."
},
{
"scene_name": "scene0354_00",
"context_views_id": [302, 321],
"context_objects": 6,
"texts": "the chair is black. it is the right one on the right."
},
{
"scene_name": "scene0355_00",
"context_views_id": [535, 559],
"context_objects": 4,
"texts": "the chair is small and brown. it is around the brown round table and on the left side in between the two patterned chairs."
},
{
"scene_name": "scene0356_00",
"context_views_id": [1195, 1211],
"context_objects": 24,
"texts": "there is a rectangular brown door. it is next to a cabinet."
},
{
"scene_name": "scene0357_00",
"context_views_id": [626, 646],
"context_objects": 12,
"texts": "there is a square brown table. it is next to a set of steps."
},
{
"scene_name": "scene0377_00",
"context_views_id": [67, 93],
"context_objects": 3,
"texts": "the furnace is against the right side of the room. there is a chair to the left in front of it. the furnace is blue."
},
{
"scene_name": "scene0378_00",
"context_views_id": [1764, 1784],
"context_objects": 1,
"texts": "a desk sits with a chair to both it's left and right. it's to the right of a bookshelf."
},
{
"scene_name": "scene0382_00",
"context_views_id": [1095, 1114],
"context_objects": 1,
"texts": "this is a tan desk. it is to the right of the chair."
},
{
"scene_name": "scene0389_00",
"context_views_id": [422, 443],
"context_objects": 6,
"texts": "there is a rectangular bed. it is next to a nightstand."
},
{
"scene_name": "scene0406_00",
"context_views_id": [951, 965],
"context_objects": 5,
"texts": "this is the marble counter top next to the inlay sink. it appears to be black in color."
},
{
"scene_name": "scene0412_00",
"context_views_id": [1397, 1426],
"context_objects": 6,
"texts": "the trash can is on the floor, in the left corner. it is to the left of the door."
},
{
"scene_name": "scene0414_00",
"context_views_id": [589, 600],
"context_objects": 5,
"texts": "there is a black chair. it is at the far end of the table."
},
{
"scene_name": "scene0423_00",
"context_views_id": [415, 440],
"context_objects": 2,
"texts": "the armchair is to the right of the other chair. it is facing the table."
},
{
"scene_name": "scene0426_00",
"context_views_id": [1102, 1131],
"context_objects": 25,
"texts": "there is a rectangular bed. it is next to the door."
},
{
"scene_name": "scene0427_00",
"context_views_id": [740, 761],
"context_objects": 5,
"texts": "this is a black chair. it is beside a table."
},
{
"scene_name": "scene0430_00",
"context_views_id": [1302, 1318],
"context_objects": 3,
"texts": "this is a plain office chair. it is slightly pulled out from the table. it is near the black doorway entrance."
},
{
"scene_name": "scene0432_00",
"context_views_id": [194, 219],
"context_objects": 2,
"texts": "the blue sofa chair is located on the back yellow wall. this chair is located on the right side of the room."
},
{
"scene_name": "scene0435_00",
"context_views_id": [3027, 3041],
"context_objects": 10,
"texts": "it is a bathtub behind the curtain. it is beside the toilet seat."
},
{
"scene_name": "scene0441_00",
"context_views_id": [499, 525],
"context_objects": 8,
"texts": "it is a white urinal. it is to the right of the sink."
},
{
"scene_name": "scene0458_00",
"context_views_id": [73, 99],
"context_objects": 31,
"texts": "there is a trash can. it is inside the shower stall on the right side."
},
{
"scene_name": "scene0461_00",
"context_views_id": [87, 101],
"context_objects": 2,
"texts": "to the right of this armchair is a black table. this gray armchair is located near the left wall."
},
{
"scene_name": "scene0462_00",
"context_views_id": [828, 849],
"context_objects": 17,
"texts": "this is a gray door. it is at the far end of the room."
},
{
"scene_name": "scene0474_00",
"context_views_id": [806, 817],
"context_objects": 7,
"texts": "the desk is on the left side of the room. there are 2 desks connected."
},
{
"scene_name": "scene0488_00",
"context_views_id": [483, 512],
"context_objects": 5,
"texts": "this is a single kitchen cabinet. the kitchen cabinet is at the top of the kitchen counter and next to refrigerator."
},
{
"scene_name": "scene0490_00",
"context_views_id": [675, 701],
"context_objects": 4,
"texts": "there is a gray chair. it is in the middle of a row with its back facing a whiteboard."
},
{
"scene_name": "scene0494_00",
"context_views_id": [30, 51],
"context_objects": 2,
"texts": "this chair is on the top left corner. it is facing the table."
},
{
"scene_name": "scene0496_00",
"context_views_id": [953, 982],
"context_objects": 7,
"texts": "if you were looking at the blackboard, on the left side of the room are two waste baskets against the wall. we are looking for the black chair in front of the blue wastebasket that is for recycling."
},
{
"scene_name": "scene0500_00",
"context_views_id": [1459, 1482],
"context_objects": 11,
"texts": "a wooden chair sits with it's back to the wall to the left of a blackboard. it's to the right of a swivel chair and they both hang out by the window."
},
{
"scene_name": "scene0518_00",
"context_views_id": [1388, 1418],
"context_objects": 4,
"texts": "this chair is on the left. it is black."
},
{
"scene_name": "scene0527_00",
"context_views_id": [349, 377],
"context_objects": 5,
"texts": "the table is brown with a shelf. it is under the white sign."
},
{
"scene_name": "scene0535_00",
"context_views_id": [273, 288],
"context_objects": 14,
"texts": "the white bookshelf is on the left wall. the bookshelf is located to the left of the window."
},
{
"scene_name": "scene0549_00",
"context_views_id": [480, 496],
"context_objects": 2,
"texts": "there is a rectangular teal couch. it is next to two armchairs."
},
{
"scene_name": "scene0550_00",
"context_views_id": [2054, 2082],
"context_objects": 4,
"texts": "it is a brown bathroom stall door. the brown bathroom stall door sits directly across from the sink."
},
{
"scene_name": "scene0552_00",
"context_views_id": [214, 228],
"context_objects": 1,
"texts": "there is a square wooden chair at a desk. its back is facing a gray trash can."
},
{
"scene_name": "scene0553_00",
"context_views_id": [1071, 1082],
"context_objects": 4,
"texts": "the square bathroom sink. the sink is next to the toilet."
},
{
"scene_name": "scene0558_00",
"context_views_id": [131, 150],
"context_objects": 5,
"texts": "it is a wooden bookshelf. it is an \" l \" shape and filled with books. there is a table in the middle."
},
{
"scene_name": "scene0559_00",
"context_views_id": [324, 338],
"context_objects": 11,
"texts": "a beige wooden, gray steel table. in the center of the room."
},
{
"scene_name": "scene0565_00",
"context_views_id": [894, 911],
"context_objects": 2,
"texts": "a gray chair in front of the table."
},
{
"scene_name": "scene0568_00",
"context_views_id": [955, 981],
"context_objects": 2,
"texts": "there is a small, red and blue chair. it is in front of the table."
},
{
"scene_name": "scene0574_00",
"context_views_id": [616, 632],
"context_objects": 7,
"texts": "there is a an oval sink. it is in a marble counter."
},
{
"scene_name": "scene0575_00",
"context_views_id": [2611, 2641],
"context_objects": 15,
"texts": "a long table sits in the center of the room. it's got two tv's hanging on the wall closest to the far side of the table."
},
{
"scene_name": "scene0578_00",
"context_views_id": [1054, 1070],
"context_objects": 6,
"texts": "the chair is around the table. it is on the right side and is the one in the front."
},
{
"scene_name": "scene0580_00",
"context_views_id": [1261, 1279],
"context_objects": 8,
"texts": "this bed is white. its in the middle."
},
{
"scene_name": "scene0583_00",
"context_views_id": [1678, 1688],
"context_objects": 2,
"texts": "it is a wooden door. it has a bath tub to its right."
},
{
"scene_name": "scene0591_00",
"context_views_id": [382, 400],
"context_objects": 3,
"texts": "the top portion of the back of a office chair facing parallel with the row of windows. the chair is located on the left hand side of the room."
},
{
"scene_name": "scene0593_00",
"context_views_id": [692, 713],
"context_objects": 13,
"texts": "the cabinet is to the left of the copy machine. there is a section for files sitting on top of the cabinet."
},
{
"scene_name": "scene0595_00",
"context_views_id": [47, 67],
"context_objects": 3,
"texts": "the clothes dryers are white. they are located perpendicular to the blue wall."
},
{
"scene_name": "scene0598_00",
"context_views_id": [959, 969],
"context_objects": 5,
"texts": "a white wooden shelf. on the side of the room."
},
{
"scene_name": "scene0599_00",
"context_views_id": [1380, 1394],
"context_objects": 6,
"texts": "this is a long table. it is in the center of the room."
},
{
"scene_name": "scene0606_00",
"context_views_id": [1347, 1375],
"context_objects": 5,
"texts": "there is a square brown chair. it is next to a table."
},
{
"scene_name": "scene0607_00",
"context_views_id": [180, 191],
"context_objects": 3,
"texts": "this counter is on the right wall. there are sinks in it. it is dark colored. there are cabinets below it."
},
{
"scene_name": "scene0608_00",
"context_views_id": [1195, 1221],
"context_objects": 9,
"texts": "an ottoman is sitting to the right of the couch. there is a picture on the wall to the right of it."
},
{
"scene_name": "scene0609_00",
"context_views_id": [165, 177],
"context_objects": 3,
"texts": "the chair is facing the table. it is located to the right of the chair beside it."
},
{
"scene_name": "scene0616_00",
"context_views_id": [142, 157],
"context_objects": 8,
"texts": "there is a square brown armchair. it is the one directly left of a gray trash can."
},
{
"scene_name": "scene0618_00",
"context_views_id": [19, 40],
"context_objects": 5,
"texts": "the is located in the corner between a table with black chairs and a bump out in the wall.. it is a tall brown chair and it is the chair closest to the bump out in the wall."
},
{
"scene_name": "scene0621_00",
"context_views_id": [2010, 2040],
"context_objects": 3,
"texts": "there is a black table farthest to the wall. it has 3 chairs."
},
{
"scene_name": "scene0629_00",
"context_views_id": [2208, 2225],
"context_objects": 7,
"texts": "this is a white cabinet place besides a black cabinet in the left side besides a railing. a door is seen in the front besides this cabinet."
},
{
"scene_name": "scene0633_00",
"context_views_id": [1367, 1378],
"context_objects": 9,
"texts": "this is a cream curtain. it is behind the chair."
},
{
"scene_name": "scene0643_00",
"context_views_id": [338, 349],
"context_objects": 30,
"texts": "this is a trash can. the trash can is next to blue color trash can."
},
{
"scene_name": "scene0644_00",
"context_views_id": [1272, 1285],
"context_objects": 27,
"texts": "this table is on the left. it is sturdy."
},
{
"scene_name": "scene0645_00",
"context_views_id": [2665, 2678],
"context_objects": 38,
"texts": "the cabinet is square and dark brown. it is under the tv."
},
{
"scene_name": "scene0647_00",
"context_views_id": [1041, 1069],
"context_objects": 6,
"texts": "there is a ping pong table in the center of the area. behind are the furniture."
},
{
"scene_name": "scene0648_00",
"context_views_id": [1837, 1864],
"context_objects": 14,
"texts": "the closet is behind the wooden desk. there are green picture frames on the self in front."
},
{
"scene_name": "scene0651_00",
"context_views_id": [462, 481],
"context_objects": 1,
"texts": "the kitchen counter is white, and shaped like the letter l. it is located above the white cupboards, and to the left of the white stove."
},
{
"scene_name": "scene0652_00",
"context_views_id": [1358, 1377],
"context_objects": 1,
"texts": "it is a bed that is located with its head on the left wall of the room. the head faces west and the foot of the bed raches towards the east."
},
{
"scene_name": "scene0653_00",
"context_views_id": [3335, 3365],
"context_objects": 4,
"texts": "this is a white and black office chair. it is under the wooden desk next to the windows."
},
{
"scene_name": "scene0655_00",
"context_views_id": [365, 377],
"context_objects": 1,
"texts": "the office chair is the southwest-most one next to the table. the office chair is red with a curved back."
},
{
"scene_name": "scene0658_00",
"context_views_id": [344, 365],
"context_objects": 7,
"texts": "it is a white wooden closet door. it is located to the right of the desk lamp."
},
{
"scene_name": "scene0660_00",
"context_views_id": [450, 469],
"context_objects": 4,
"texts": "the chair is made of brown leather. it is the chair to the furthest left on the side of the table in closest view. it is turned sideways, facing the right."
},
{
"scene_name": "scene0663_00",
"context_views_id": [1221, 1231],
"context_objects": 5,
"texts": "an l-shaped desk with a wood top that is opposite from the window in the room. when you enter the door it is directly on your left."
},
{
"scene_name": "scene0664_00",
"context_views_id": [847, 870],
"context_objects": 3,
"texts": "the bathroom vanity is located to the right of the toilet. it is located on the right side of the room."
},
{
"scene_name": "scene0665_00",
"context_views_id": [404, 430],
"context_objects": 10,
"texts": "a blue rolling chair sitting under the round table. the back of the chair faces the wooden study desks."
},
{
"scene_name": "scene0670_00",
"context_views_id": [576, 592],
"context_objects": 26,
"texts": "this is a small trash can. it is at the place by the oven and the separate counter top unit."
},
{
"scene_name": "scene0671_00",
"context_views_id": [303, 314],
"context_objects": 4,
"texts": "there is a brown chair pushed against the long side of the table on the same side as the white and red chair. it is on the end near the head of the table."
},
{
"scene_name": "scene0678_00",
"context_views_id": [1042, 1058],
"context_objects": 9,
"texts": "it is a white door. the white door is at the far left corner of the room."
},
{
"scene_name": "scene0684_00",
"context_views_id": [366, 383],
"context_objects": 5,
"texts": "this black chair is in front of a desk. it is in front of the window."
},
{
"scene_name": "scene0685_00",
"context_views_id": [1920, 1947],
"context_objects": 1,
"texts": "this is a large green trash can. there is a door to the right of it and a wall behind it."
},
{
"scene_name": "scene0686_00",
"context_views_id": [1166, 1186],
"context_objects": 26,
"texts": "this is a silver trash bin by the tiled wall. it is in the middle of the room."
},
{
"scene_name": "scene0689_00",
"context_views_id": [612, 625],
"context_objects": 1,
"texts": "this window is on the right. it is bright."
},
{
"scene_name": "scene0690_00",
"context_views_id": [481, 499],
"context_objects": 10,
"texts": "there is a rectangular brown cabinet. it is behind a rug."
},
{
"scene_name": "scene0693_00",
"context_views_id": [1050, 1080],
"context_objects": 4,
"texts": "the full size bathtub. the tub is next to the toilet."
},
{
"scene_name": "scene0695_00",
"context_views_id": [1711, 1730],
"context_objects": 8,
"texts": "it is a brown bed. the brown bed is next to the left wall in the room."
},
{
"scene_name": "scene0696_00",
"context_views_id": [1077, 1105],
"context_objects": 1,
"texts": "the large wall cabinet. the cabinet is by the table."
},
{
"scene_name": "scene0697_00",
"context_views_id": [2426, 2469],
"context_objects": 29,
"texts": "this window is on the left side. it is opaque."
},
{
"scene_name": "scene0699_00",
"context_views_id": [799, 813],
"context_objects": 7,
"texts": "the table is right of the white chair. the table is a yellow rectangle."
},
{
"scene_name": "scene0700_00",
"context_views_id": [309, 322],
"context_objects": 10,
"texts": "the door is on the northern wall. the door is white and rectangular."
},
{
"scene_name": "scene0701_00",
"context_views_id": [102, 118],
"context_objects": 1,
"texts": "this is a gray couch. it is facing a round table."
},
{
"scene_name": "scene0702_00",
"context_views_id": [386, 416],
"context_objects": 5,
"texts": "the door is to the right of the telephone. it is brown and has a doorknob."
},
{
"scene_name": "scene0704_00",
"context_views_id": [913, 934],
"context_objects": 19,
"texts": "this black trash can is in the center. it is empty or filled."
},
{
"scene_name": "scene0011_00",
"context_views_id": [1286, 1309],
"context_objects": 20,
"texts": "this is a stainless steel refrigerator. it is to the right of a kitchen counter."
},
{
"scene_name": "scene0015_00",
"context_views_id": [201, 223],
"context_objects": 20,
"texts": "this is a chair with no arms. it is facing a wooden chair."
},
{
"scene_name": "scene0019_00",
"context_views_id": [132, 159],
"context_objects": 13,
"texts": "this is a brown leather chair. the chair is placed on the far right end of the second row of a stack of brown leather chairs."
},
{
"scene_name": "scene0025_00",
"context_views_id": [1255, 1280],
"context_objects": 10,
"texts": "this is a brown office desk, slightly curved at the front. the desk contains two computer monitors, a keyboard, a bottle of water, a bottle of coke and a few other miscellaneous items."
},
{
"scene_name": "scene0030_00",
"context_views_id": [2381, 2399],
"context_objects": 10,
"texts": "it is a gray chair with a backrest. to the left of it is a blue chair on caster wheels."
},
{
"scene_name": "scene0046_00",
"context_views_id": [1275, 1296],
"context_objects": 22,
"texts": "this is down at the end of a long hallway. it is between two doors. it is black. it is the black door at the end of the hallway."
},
{
"scene_name": "scene0050_00",
"context_views_id": [3213, 3227],
"context_objects": 14,
"texts": "there is a couch on the left wall. the couch is sitting perpendicular to the windows and is almost up against them."
},
{
"scene_name": "scene0063_00",
"context_views_id": [478, 506],
"context_objects": 11,
"texts": "there is a dark brown wooden cabinet. placed next to the fridge."
},
{
"scene_name": "scene0064_00",
"context_views_id": [247, 275],
"context_objects": 1,
"texts": "the bookshelf is on the right side of the room. it is to the right of where the chairs are. at the far end, another bookshelf joins it at the corner."
},
{
"scene_name": "scene0077_00",
"context_views_id": [249, 270],
"context_objects": 9,
"texts": "a tall trash can is placed against the far wall. to the right of it is a copier machine."
},
{
"scene_name": "scene0081_00",
"context_views_id": [5, 16],
"context_objects": 2,
"texts": "it is a red ottoman. the ottoman is at the right corner edge of the couch."
},
{
"scene_name": "scene0084_00",
"context_views_id": [375, 400],
"context_objects": 11,
"texts": "this is a round trash can. it is under the counter top."
},
{
"scene_name": "scene0086_00",
"context_views_id": [659, 676],
"context_objects": 20,
"texts": "a white lavatory. it is attached in the wall with the other one."
},
{
"scene_name": "scene0088_00",
"context_views_id": [528, 547],
"context_objects": 18,
"texts": "one of many black office chairs site with its back to the far wall, against the white board. to the left is the far end of a large wooden conference table."
},
{
"scene_name": "scene0095_00",
"context_views_id": [883, 902],
"context_objects": 12,
"texts": "the chair is black and left of the table. there are two chairs in front of it."
},
{
"scene_name": "scene0100_00",
"context_views_id": [782, 812],
"context_objects": 3,
"texts": "this is a sink. it is set into the counter."
},
{
"scene_name": "scene0131_00",
"context_views_id": [115, 140],
"context_objects": 5,
"texts": "this is a cushion rolling chair. the chair is facing to the white board."
},
{
"scene_name": "scene0139_00",
"context_views_id": [60, 86],
"context_objects": 25,
"texts": "there is a white square sink placed on the corner of the bathroom."
},
{
"scene_name": "scene0144_00",
"context_views_id": [1006, 1025],
"context_objects": 2,
"texts": "the table is between the bed and the kitchen sink. the table is a brown rectangle."
},
{
"scene_name": "scene0146_00",
"context_views_id": [1361, 1374],
"context_objects": 1,
"texts": "the trash can is made of silver metal. it is to the left of the grab bar."
},
{
"scene_name": "scene0149_00",
"context_views_id": [4, 18],
"context_objects": 2,
"texts": "there is a refrigerator next to a cabinet. it is to the left of the stove."
},
{
"scene_name": "scene0153_00",
"context_views_id": [529, 545],
"context_objects": 2,
"texts": "the round sink. the sink is next to the toilet."
},
{
"scene_name": "scene0164_00",
"context_views_id": [320, 349],
"context_objects": 1,
"texts": "this is a multi-colored tan counter. this counter is in the kitchen, on top of the base cabinets."
},
{
"scene_name": "scene0169_00",
"context_views_id": [1868, 1893],
"context_objects": 11,
"texts": "there is a table in the center of the room surrounded by chairs. it is to the right of a whiteboard."
},
{
"scene_name": "scene0187_00",
"context_views_id": [2214, 2235],
"context_objects": 8,
"texts": "the table is located towards the right side of the room, and has two chairs under it. it is to the right of the table with the backpack beside it."
},
{
"scene_name": "scene0193_00",
"context_views_id": [560, 571],
"context_objects": 3,
"texts": "the door is west of the wooden desk. the door is white and rectangular."
},
{
"scene_name": "scene0196_00",
"context_views_id": [1384, 1404],
"context_objects": 3,
"texts": "the table is color white. the table is three chairs around this."
},
{
"scene_name": "scene0203_00",
"context_views_id": [530, 545],
"context_objects": 3,
"texts": "black love seat in living room area. the love seat couch faces a large book shelf when sitting on it."
},
{
"scene_name": "scene0207_00",
"context_views_id": [1605, 1634],
"context_objects": 18,
"texts": "there is a stainless steel sink. it is located above a white cabinet to the right of the stove."
},
{
"scene_name": "scene0208_00",
"context_views_id": [1946, 1974],
"context_objects": 10,
"texts": "the book rack is located to the right of another rack. it is on the end of an aisle of book shelves."
},
{
"scene_name": "scene0221_00",
"context_views_id": [871, 893],
"context_objects": 12,
"texts": "the object is a beige ironing board. it is resting against the wall on the other side of the vanity, and can not be seen from the doorway."
},
{
"scene_name": "scene0222_00",
"context_views_id": [4806, 4816],
"context_objects": 6,
"texts": "this is a bed with grey sheets and a blue cover. the bed is placed up against the only wall with windows."
},
{
"scene_name": "scene0231_00",
"context_views_id": [1795, 1823],
"context_objects": 23,
"texts": "this is a white metal trashcan that sits to the right of the paisley chair. it is also sitting in front of the steel floor lamp."
},
{
"scene_name": "scene0246_00",
"context_views_id": [13, 41],
"context_objects": 4,
"texts": "it's a white table with a mirror above it. there is a red curtain to the left of it."
},
{
"scene_name": "scene0249_00",
"context_views_id": [1340, 1365],
"context_objects": 5,
"texts": "the black chair, it is placed near a brown table, to the right is a black chair. behind is a wall."
},
{
"scene_name": "scene0251_00",
"context_views_id": [1256, 1266],
"context_objects": 7,
"texts": "the chair is a wood chair. the chair is to the left of the table."
},
{
"scene_name": "scene0256_00",
"context_views_id": [411, 430],
"context_objects": 1,
"texts": "the table is white and has a tape on it. the table does n't have a sewing machine on it."
},
{
"scene_name": "scene0257_00",
"context_views_id": [1449, 1459],
"context_objects": 17,
"texts": "the black chair, it is placed in the middle, on the right is two black chairs of the same type, on the left is a chair of the same type. it is arranged in the top row."
},
{
"scene_name": "scene0277_00",
"context_views_id": [542, 572],
"context_objects": 3,
"texts": "the wooden desk. it has three draws."
},
{
"scene_name": "scene0278_00",
"context_views_id": [520, 576],
"context_objects": 5,
"texts": "this is a white bucket with a white lid. it is in the corner adjacent to the copier."
},
{
"scene_name": "scene0300_00",
"context_views_id": [326, 342],
"context_objects": 19,
"texts": "there is a rectangular brown shelf. it is closest to the edge of a wood table."
},
{
"scene_name": "scene0304_00",
"context_views_id": [301, 324],
"context_objects": 10,
"texts": "the cabinet is in the middle of the room. the cabinet is a white prism with a blue top."
},
{
"scene_name": "scene0307_00",
"context_views_id": [1386, 1400],
"context_objects": 1,
"texts": "the door is open. it opens into the middle room."
},
{
"scene_name": "scene0314_00",
"context_views_id": [195, 215],
"context_objects": 5,
"texts": "the chair is pushed into the desk and is in front of a monitor. the chair is the furthest to the right."
},
{
"scene_name": "scene0316_00",
"context_views_id": [671, 684],
"context_objects": 11,
"texts": "a white door. it is to the right of the brown couch."
},
{
"scene_name": "scene0328_00",
"context_views_id": [1161, 1173],
"context_objects": 2,
"texts": "the window is between two kitchen cabinets on the northern wall. the window is white and rectangular."
},
{
"scene_name": "scene0329_00",
"context_views_id": [650, 670],
"context_objects": 2,
"texts": "there is a brown couch. it is placed between the wall and the coffee table."
},
{
"scene_name": "scene0334_00",
"context_views_id": [958, 981],
"context_objects": 6,
"texts": "there is a brown round table. placed in front of the seats."
},
{
"scene_name": "scene0338_00",
"context_views_id": [743, 767],
"context_objects": 2,
"texts": "there is a rectangular dark recycling bin with wheels. it is next to a door."
},
{
"scene_name": "scene0342_00",
"context_views_id": [113, 139],
"context_objects": 4,
"texts": "the chair is located in the third row and is the furthest chair to the right. it is a chair whose seat folds up and down."
},
{
"scene_name": "scene0343_00",
"context_views_id": [646, 670],
"context_objects": 4,
"texts": "it is a brown, wood table with white legs. it has a brown, wooden serving cart beside it and two white chairs pushed in under it."
},
{
"scene_name": "scene0351_00",
"context_views_id": [64, 74],
"context_objects": 3,
"texts": "a swivel chair sits sandwhiched between a stationary chair and a fan. it's the closest chair to the window."
},
{
"scene_name": "scene0353_00",
"context_views_id": [40, 64],
"context_objects": 9,
"texts": "the bookshelf has 3 shelves that are bull. it is located on the far wall behind the couch."
},
{
"scene_name": "scene0354_00",
"context_views_id": [811, 839],
"context_objects": 5,
"texts": "the chair is black. it is the first one on the left."
},
{
"scene_name": "scene0355_00",
"context_views_id": [95, 123],
"context_objects": 3,
"texts": "there is a rectangular chair. it is at a table with its back facing the door."
},
{
"scene_name": "scene0356_00",
"context_views_id": [531, 552],
"context_objects": 24,
"texts": "the door is a brown wooden door that opens inward to another room or closet. it is in the middle of the wall."
},
{
"scene_name": "scene0357_00",
"context_views_id": [384, 401],
"context_objects": 6,
"texts": "there is a rectangular door. it is next to a flight of stairs."
},
{
"scene_name": "scene0377_00",
"context_views_id": [178, 206],
"context_objects": 3,
"texts": "the furnace is to the left of the bucket. the furnace is blue in color."
},
{
"scene_name": "scene0378_00",
"context_views_id": [992, 1007],
"context_objects": 39,
"texts": "there is a brown rectangular shelf. it is next to a black cabinet."
},
{
"scene_name": "scene0382_00",
"context_views_id": [177, 187],
"context_objects": 1,
"texts": "this is a tan desk. it is to the right of a chair."
},
{
"scene_name": "scene0389_00",
"context_views_id": [846, 866],
"context_objects": 3,
"texts": "there is a square olive chair. it is to the left of a table."
},
{
"scene_name": "scene0406_00",
"context_views_id": [9, 31],
"context_objects": 1,
"texts": "this is a brown shower curtain. it is in the bathroom over the tub and to the right of the toilet."
},
{
"scene_name": "scene0412_00",
"context_views_id": [631, 645],
"context_objects": 29,
"texts": "if you was walk into the two double doors. it would be the first table for you write the object is a table."
},
{
"scene_name": "scene0414_00",
"context_views_id": [791, 816],
"context_objects": 15,
"texts": "this gray chair is located to the right of the red backpack. above this chair is a dry erase board."
},
{
"scene_name": "scene0423_00",
"context_views_id": [290, 305],
"context_objects": 2,
"texts": "this is a tan chair. it has a wire frame supporting it. it is near the flowers and around the small table."
},
{
"scene_name": "scene0426_00",
"context_views_id": [1320, 1333],
"context_objects": 15,
"texts": "this is a square window. it is above the bed."
},
{
"scene_name": "scene0427_00",
"context_views_id": [321, 344],
"context_objects": 1,
"texts": "this is a black trash can. it is on the floor."
},
{
"scene_name": "scene0430_00",
"context_views_id": [1898, 1913],
"context_objects": 1,
"texts": "this is a brown chair in an office. it is the third chair from the right up against a wall."
},
{
"scene_name": "scene0432_00",
"context_views_id": [103, 117],
"context_objects": 2,
"texts": "the blue sofa chair is located on the back yellow wall. this chair is located on the right side of the room."
},
{
"scene_name": "scene0435_00",
"context_views_id": [1656, 1685],
"context_objects": 5,
"texts": "to the left of the brown desk is the tv. hanging above the desk is a black and white photo."
},
{
"scene_name": "scene0441_00",
"context_views_id": [151, 172],
"context_objects": 14,
"texts": "above the bathroom sink is a mirror. to the left of the sink is a paper towel dispenser."
},
{
"scene_name": "scene0458_00",
"context_views_id": [1294, 1310],
"context_objects": 7,
"texts": "the toilet appears to be porcelain but looks almost gold. sits near the wall with moderate space on both sides. the toilet is near a trash can and shower."
},
{
"scene_name": "scene0461_00",
"context_views_id": [168, 193],
"context_objects": 2,
"texts": "there is a square beige armchair. it is left of a square table."
},
{
"scene_name": "scene0462_00",
"context_views_id": [161, 206],
"context_objects": 6,
"texts": "there is a white cabinet. it is to the left of the black trash bin."
},
{
"scene_name": "scene0474_00",
"context_views_id": [1238, 1250],
"context_objects": 4,
"texts": "this is a grey couch. it is against the back wall surface."
},
{
"scene_name": "scene0488_00",
"context_views_id": [326, 345],
"context_objects": 2,
"texts": "there is a rectangular white refrigerator. it is to the right of another refrigerator."
},
{
"scene_name": "scene0490_00",
"context_views_id": [644, 669],
"context_objects": 13,
"texts": "there is a rectangular beige table. it is surrounded by chairs."
},
{
"scene_name": "scene0494_00",
"context_views_id": [40, 61],
"context_objects": 2,
"texts": "a chair sits facing a table but away from us. it's near the bottom right corner of the table."
},
{
"scene_name": "scene0496_00",
"context_views_id": [834, 856],
"context_objects": 15,
"texts": "this black chair is at the far end of the room. there are many black chairs in this room but this is the chair that is in between two pieces of sunshine one of the pieces of sunshine is in the shape of a bird and the other piece of sunshine is in the shape of a capital j. this plaque chair is at the far end of the room on the shortest end of the room."
},
{
"scene_name": "scene0500_00",
"context_views_id": [583, 596],
"context_objects": 4,
"texts": "this chair is light. it is facing away."
},
{
"scene_name": "scene0518_00",
"context_views_id": [300, 311],
"context_objects": 4,
"texts": "there is a black office chair with mesh backing directly in front of the white desk. to its right is another black chair that has a yellow backpack hanging on it."
},
{
"scene_name": "scene0527_00",
"context_views_id": [240, 266],
"context_objects": 5,
"texts": "the table is brown and rectangular. it is to the right of the tall cabinet."
},
{
"scene_name": "scene0535_00",
"context_views_id": [565, 581],
"context_objects": 10,
"texts": "a black chair. in front of the door."
},
{
"scene_name": "scene0549_00",
"context_views_id": [338, 361],
"context_objects": 2,
"texts": "a big blue couch. it is between two end tables."
},
{
"scene_name": "scene0550_00",
"context_views_id": [2247, 2260],
"context_objects": 4,
"texts": "a black door. on the side of the bathroom on the left to the paper box."
},
{
"scene_name": "scene0552_00",
"context_views_id": [169, 180],
"context_objects": 1,
"texts": "it is a rusted looking chair. located at the corner of the cream colored table. it looks as if it is connected to another chair."
},
{
"scene_name": "scene0553_00",
"context_views_id": [166, 182],
"context_objects": 3,
"texts": "there is an oval white toilet. it is next to a roll of toilet paper."
},
{
"scene_name": "scene0558_00",
"context_views_id": [438, 452],
"context_objects": 2,
"texts": "the chair is around the round table. it has a blue bookbag on it."
},
{
"scene_name": "scene0559_00",
"context_views_id": [65, 82],
"context_objects": 4,
"texts": "this is a 2 seater couch. it is placed adjacent to another couch and a side table."
},
{
"scene_name": "scene0565_00",
"context_views_id": [973, 999],
"context_objects": 2,
"texts": "this is a grey chair. it is right in front of the computer monitor."
},
{
"scene_name": "scene0568_00",
"context_views_id": [603, 616],
"context_objects": 1,
"texts": "this chair is against the wall. it is on the right side."
},
{
"scene_name": "scene0574_00",
"context_views_id": [781, 799],
"context_objects": 12,
"texts": "this is a marble vanity. it has one porcelain inlay sink and is for the bathroom."
},
{
"scene_name": "scene0575_00",
"context_views_id": [514, 530],
"context_objects": 4,
"texts": "a chair sits in a row of like chairs. it's second from the right in the line of chairs."
},
{
"scene_name": "scene0578_00",
"context_views_id": [1014, 1042],
"context_objects": 7,
"texts": "the chair is brown. the chair is on the left of the table."
},
{
"scene_name": "scene0580_00",
"context_views_id": [1073, 1095],
"context_objects": 8,
"texts": "it is a bed covered with a bed sheet. it has two pillows on it with a tablet and a cloth."
},
{
"scene_name": "scene0583_00",
"context_views_id": [405, 432],
"context_objects": 10,
"texts": "there is a white bathroom vanity. it is to the right of the trashcan."
},
{
"scene_name": "scene0591_00",
"context_views_id": [70, 85],
"context_objects": 2,
"texts": "it is a black chair. the black chair is behind the white shelf on the right side of the room."
},
{
"scene_name": "scene0593_00",
"context_views_id": [1524, 1541],
"context_objects": 25,
"texts": "this is a white couch. it is to the left of the table."
},
{
"scene_name": "scene0595_00",
"context_views_id": [549, 562],
"context_objects": 2,
"texts": "the washing machines are tall and white. they are located perpendicular to the blue wall."
},
{
"scene_name": "scene0598_00",
"context_views_id": [142, 166],
"context_objects": 5,
"texts": "a white wooden shelf. on the side of the room."
},
{
"scene_name": "scene0599_00",
"context_views_id": [1421, 1446],
"context_objects": 6,
"texts": "it is a long red table. the long red table is in the middle of the room."
},
{
"scene_name": "scene0606_00",
"context_views_id": [1053, 1080],
"context_objects": 24,
"texts": "the sofa chair is dark grey. it is the first chair from the left."
},
{
"scene_name": "scene0607_00",
"context_views_id": [553, 574],
"context_objects": 6,
"texts": "a long wooden rectangle table is sitting in the middle of the room. there are several chairs on each side."
},
{
"scene_name": "scene0608_00",
"context_views_id": [932, 946],
"context_objects": 14,
"texts": "there is a picture hanging on the wall to the right of the world map also hanging on the wall. it is hanging above the couch."
},
{
"scene_name": "scene0609_00",
"context_views_id": [228, 251],
"context_objects": 3,
"texts": "the chair is on the left table. the chair is to the right of the other chair."
},
{
"scene_name": "scene0616_00",
"context_views_id": [591, 608],
"context_objects": 6,
"texts": "a table sits in the corner by a brightly colored wall. it's got two chairs facing it."
},
{
"scene_name": "scene0618_00",
"context_views_id": [800, 814],
"context_objects": 5,
"texts": "the is located in the corner between a table with black chairs and a bump out in the wall.. it is a tall brown chair and it is the chair closest to the bump out in the wall."
},
{
"scene_name": "scene0621_00",
"context_views_id": [1997, 2018],
"context_objects": 3,
"texts": "the object is a table. it is located in the middle of the floor."
},
{
"scene_name": "scene0629_00",
"context_views_id": [1484, 1496],
"context_objects": 4,
"texts": "the mattress is leaning against the wall. it is leaning on a picture behind it that is hung on the wall."
},
{
"scene_name": "scene0633_00",
"context_views_id": [980, 997],
"context_objects": 17,
"texts": "this crib is on the other side. it is ridged."
},
{
"scene_name": "scene0643_00",
"context_views_id": [483, 502],
"context_objects": 32,
"texts": "this is a wooden desk. it is the last desk on the left from the entrance."
},
{
"scene_name": "scene0644_00",
"context_views_id": [1311, 1331],
"context_objects": 2,
"texts": "this is an office chair. it is placed at the center of the computer desk next to the chair that is pulled away from the table."
},
{
"scene_name": "scene0645_00",
"context_views_id": [146, 170],
"context_objects": 21,
"texts": "the highlighted bed in the one on the left which is near the bathroom. it is the one opposite side of the window. it is located left side of the side table if you're facing the bed."
},
{
"scene_name": "scene0647_00",
"context_views_id": [622, 645],
"context_objects": 8,
"texts": "a wooden armless chair. it is facing the backpack on the floor."
},
{
"scene_name": "scene0648_00",
"context_views_id": [3404, 3424],
"context_objects": 16,
"texts": "this is a top bunk bed. it has a red fabric on top of the bed sheets."
},
{
"scene_name": "scene0651_00",
"context_views_id": [398, 408],
"context_objects": 1,
"texts": "the counter is white and l-shaped. it is located above the white cabinets and drawers, and to the left of the stove."
},
{
"scene_name": "scene0652_00",
"context_views_id": [775, 795],
"context_objects": 7,
"texts": "the cabinet is to the left of the other cabinet on the wall with the television. the cabinet is across from the foot of the bed."
},
{
"scene_name": "scene0653_00",
"context_views_id": [2164, 2176],
"context_objects": 8,
"texts": "the windows are behind a computer desk and monitor. one side is open."
},
{
"scene_name": "scene0655_00",
"context_views_id": [280, 306],
"context_objects": 3,
"texts": "this chair is black. it is facing right."
},
{
"scene_name": "scene0658_00",
"context_views_id": [79, 93],
"context_objects": 1,
"texts": "it is a white window with a blind. it is located at the back of the bed."
},
{
"scene_name": "scene0660_00",
"context_views_id": [259, 283],
"context_objects": 4,
"texts": "this is a black leather chair at the meeting table. it is the first chair facing the window on the right side of the table."
},
{
"scene_name": "scene0663_00",
"context_views_id": [1575, 1605],
"context_objects": 4,
"texts": "the desk is brown. the desk is under the window."
},
{
"scene_name": "scene0664_00",
"context_views_id": [872, 890],
"context_objects": 3,
"texts": "the bathroom vanity is black. the sink is in the middle of it."
},
{
"scene_name": "scene0665_00",
"context_views_id": [527, 555],
"context_objects": 7,
"texts": "this is a blue chair. it is at the round table."
},
{
"scene_name": "scene0670_00",
"context_views_id": [579, 595],
"context_objects": 26,
"texts": "this trash can is on the top left. it is empty."
},
{
"scene_name": "scene0671_00",
"context_views_id": [486, 496],
"context_objects": 6,
"texts": "this is a white chair in an office. it is at the end of the table closest to the picture on the wall."
},
{
"scene_name": "scene0678_00",
"context_views_id": [1807, 1831],
"context_objects": 12,
"texts": "five washing machines in a row in the middle of the room with a red container sitting on one on the end. they are on a checkered floor."
},
{
"scene_name": "scene0684_00",
"context_views_id": [739, 768],
"context_objects": 6,
"texts": "the table is on the northwest side of the room. the table is orange and rectangular."
},
{
"scene_name": "scene0685_00",
"context_views_id": [142, 152],
"context_objects": 1,
"texts": "this trash can is on the left. it is green."
},
{
"scene_name": "scene0686_00",
"context_views_id": [32, 47],
"context_objects": 12,
"texts": "item is an ivory colored sink. it is located in an alcove to the right of the raised toilet seat."
},
{
"scene_name": "scene0689_00",
"context_views_id": [612, 628],
"context_objects": 1,
"texts": "the window is on the northern wall. the window is a yellow square."
},
{
"scene_name": "scene0690_00",
"context_views_id": [69, 96],
"context_objects": 13,
"texts": "this is a table in front of the chairs and couch. it has a light top and wood legs. it is rectangular."
},
{
"scene_name": "scene0693_00",
"context_views_id": [756, 767],
"context_objects": 4,
"texts": "the bathtub is right of the toilet. the bathtub is white and hollowed out."
},
{
"scene_name": "scene0695_00",
"context_views_id": [1208, 1226],
"context_objects": 6,
"texts": "the large window curtain. the curtain is next to the little shelf."
},
{
"scene_name": "scene0696_00",
"context_views_id": [242, 258],
"context_objects": 9,
"texts": "item is the first brown chair on the left. it is located to the right of the table."
},
{
"scene_name": "scene0697_00",
"context_views_id": [504, 532],
"context_objects": 36,
"texts": "there is a long horizontal picture hanging on the wall. it is between the two wooden dressers."
},
{
"scene_name": "scene0699_00",
"context_views_id": [207, 223],
"context_objects": 12,
"texts": "this cabinet is in the middle. it is grey."
},
{
"scene_name": "scene0700_00",
"context_views_id": [1848, 1864],
"context_objects": 2,
"texts": "this is a gray chair. it is to the left of the backpack."
},
{
"scene_name": "scene0701_00",
"context_views_id": [382, 400],
"context_objects": 3,
"texts": "this is a round table. it is in between two couches."
},
{
"scene_name": "scene0702_00",
"context_views_id": [232, 248],
"context_objects": 1,
"texts": "the trash can is white. it is to the right of the toilet."
},
{
"scene_name": "scene0704_00",
"context_views_id": [1274, 1300],
"context_objects": 10,
"texts": "it is a black trash can. the black trash can is on the right side of the room, in front of the water cooler."
},
{
"scene_name": "scene0011_00",
"context_views_id": [1634, 1644],
"context_objects": 3,
"texts": "this is a long table. it is surrounded by chairs."
},
{
"scene_name": "scene0015_00",
"context_views_id": [372, 396],
"context_objects": 24,
"texts": "this is a chair with no arms. it is facing a long table."
},
{
"scene_name": "scene0019_00",
"context_views_id": [109, 124],
"context_objects": 1,
"texts": "it is a black chair, looks like leather. it has two arms and is between another black chair and brown chairs which are stacked on each other."
},
{
"scene_name": "scene0025_00",
"context_views_id": [919, 929],
"context_objects": 14,
"texts": "a black desk chair is sitting near a key pad. there is two empty bottles of coke behind it."
},
{
"scene_name": "scene0030_00",
"context_views_id": [2437, 2454],
"context_objects": 5,
"texts": "lot of chairs can be seen on the scene. in front of the chair a green board can also be seen."
},
{
"scene_name": "scene0046_00",
"context_views_id": [790, 814],
"context_objects": 4,
"texts": "the bed is covered with a blue and white colored bedspread. a chair can be seen in front of the bed."
},
{
"scene_name": "scene0050_00",
"context_views_id": [3230, 3241],
"context_objects": 14,
"texts": "it is a brown leather 2 person couch. it is sitting between a piano bench and the window."
},
{
"scene_name": "scene0063_00",
"context_views_id": [406, 431],
"context_objects": 11,
"texts": "there is a dark brown wooden cabinet. placed next to the fridge."
},
{
"scene_name": "scene0064_00",
"context_views_id": [458, 481],
"context_objects": 1,
"texts": "this is a long bookshelf. it is next to some brown armchairs."
},
{
"scene_name": "scene0077_00",
"context_views_id": [23, 50],
"context_objects": 4,
"texts": "the window in the office is on the far side of the room. it is above the desk against the wall and to the right of the shelves."
},
{
"scene_name": "scene0081_00",
"context_views_id": [233, 257],
"context_objects": 8,
"texts": "this is a portion of a larger blue couch that is up against a red wall. this portion of the blue couch has a red footrest to it's left and two wooden table on either side of it."
},
{
"scene_name": "scene0084_00",
"context_views_id": [1557, 1574],
"context_objects": 34,
"texts": "this is a white radiator. it is mounted on the wall near the corner."
},
{
"scene_name": "scene0086_00",
"context_views_id": [496, 519],
"context_objects": 11,
"texts": "this is a tan bathroom stall door. this bathroom stall door is for the stall with the window."
},
{
"scene_name": "scene0088_00",
"context_views_id": [952, 976],
"context_objects": 4,
"texts": "this is a black, mesh back, rolling office chair. this chair is the last one one the right at the table closest to front of room."
},
{
"scene_name": "scene0095_00",
"context_views_id": [269, 281],
"context_objects": 13,
"texts": "the tiny office chair. the chair is next to the chair in the corner."
},
{
"scene_name": "scene0100_00",
"context_views_id": [64, 89],
"context_objects": 5,
"texts": "this bathroom cabinet is brown and has ample cabinet doors and drawers. the tile on top is light brown or tan."
},
{
"scene_name": "scene0131_00",
"context_views_id": [90, 103],
"context_objects": 5,
"texts": "this is a cushion rolling chair. the chair is facing to the white board."
},
{
"scene_name": "scene0139_00",
"context_views_id": [275, 303],
"context_objects": 2,
"texts": "the washing machine is stainless steel and is front opening. it is on the left side of the similar appearing dryer. on its right side is a table for folding laundry."
},
{
"scene_name": "scene0144_00",
"context_views_id": [219, 230],
"context_objects": 3,
"texts": "the multi color curtain is closest to the open closet door. right in front of this curtain there is door straight ahead."
},
{
"scene_name": "scene0146_00",
"context_views_id": [988, 1013],
"context_objects": 1,
"texts": "a trash can is located in the room. it is on the against the wall in front of the toilet."
},
{
"scene_name": "scene0149_00",
"context_views_id": [952, 972],
"context_objects": 5,
"texts": "it is a small black / dark brown kitchen cabinet with a tan top. this kitchen cabinet is the one that is between the stove and refrigerator."
},
{
"scene_name": "scene0153_00",
"context_views_id": [403, 415],
"context_objects": 7,
"texts": "the bathroom door. the door is next to the tub."
},
{
"scene_name": "scene0164_00",
"context_views_id": [205, 218],
"context_objects": 1,
"texts": "this is a multi-colored tan counter. this counter is in the kitchen, on top of the base cabinets."
},
{
"scene_name": "scene0169_00",
"context_views_id": [1313, 1328],
"context_objects": 9,
"texts": "this computer chair is sitting by itself underneath a whiteboard. to the left is a set of light tan-colored cabinets. there's what appears to be a remote sitting on the cabinet next to the wall, beside the chair."
},
{
"scene_name": "scene0187_00",
"context_views_id": [492, 520],
"context_objects": 8,
"texts": "the table is south of the leftmost coffee table. the table is rectangular and has two legs."
},
{
"scene_name": "scene0193_00",
"context_views_id": [188, 213],
"context_objects": 8,
"texts": "the bed is in front of the entrance. the bed is a rectangle with a red mattress."
},
{
"scene_name": "scene0196_00",
"context_views_id": [1445, 1468],
"context_objects": 3,
"texts": "the table is on the middle of the row of tables in the northern are of the room. the table is a white rectangle."
},
{
"scene_name": "scene0203_00",
"context_views_id": [1427, 1437],
"context_objects": 4,
"texts": "there is a multi color chair. placed on the side of the window."
},
{
"scene_name": "scene0207_00",
"context_views_id": [515, 530],
"context_objects": 51,
"texts": "the door is between the shelf and the refrigerator. the door is white and has a metallic handle."
},
{
"scene_name": "scene0208_00",
"context_views_id": [1949, 1964],
"context_objects": 10,
"texts": "the book rack is located to the right of another rack. it is on the end of an aisle of book shelves."
},
{
"scene_name": "scene0221_00",
"context_views_id": [114, 142],
"context_objects": 8,
"texts": "the bed is on the left side of the room. it has a green cover."
},
{
"scene_name": "scene0222_00",
"context_views_id": [4539, 4563],
"context_objects": 4,
"texts": "the door is between a bed and the closet. the door is a dark brown rectangle with a metallic knob."
},
{
"scene_name": "scene0231_00",
"context_views_id": [3063, 3091],
"context_objects": 12,
"texts": "this is a black table. it is to the right of a couch."
},
{
"scene_name": "scene0246_00",
"context_views_id": [2895, 2920],
"context_objects": 14,
"texts": "there is a large rectangular bed. there is a wooden step stool on the left side of the bed."
},
{
"scene_name": "scene0249_00",
"context_views_id": [1496, 1521],
"context_objects": 5,
"texts": "this is a grey chair. its at the end of the shorter table closest to the window."
},
{
"scene_name": "scene0251_00",
"context_views_id": [377, 392],
"context_objects": 9,
"texts": "there is a gray trash can located in the corner of the room near the door. it is place next to the long wooden table."
},
{
"scene_name": "scene0256_00",
"context_views_id": [461, 481],
"context_objects": 1,
"texts": "it is a very large white table with two supports on either side, there are many objects on the top. the table is in the middle of the room on the right hand wall, there is a large rug underneath as well."
},
{
"scene_name": "scene0257_00",
"context_views_id": [740, 770],
"context_objects": 2,
"texts": "there is a purple wire chair. the wire chair is beside a door with a metal bar."
},
{
"scene_name": "scene0277_00",
"context_views_id": [494, 519],
"context_objects": 2,
"texts": "the bed is on the northwest side of the room. the bed is a rectangle with blue mattress."
},
{
"scene_name": "scene0278_00",
"context_views_id": [293, 319],
"context_objects": 16,
"texts": "the file cabinet is on the opposite side at the counter top. the file cabinet is a white box."
},
{
"scene_name": "scene0300_00",
"context_views_id": [98, 109],
"context_objects": 6,
"texts": "it is a silver table with two monitors on it. the table is behind two chair."
},
{
"scene_name": "scene0304_00",
"context_views_id": [317, 329],
"context_objects": 10,
"texts": "the cabinet sits in the center of the room. it has a blue top with a red back pack on top of it."
},
{
"scene_name": "scene0307_00",
"context_views_id": [1370, 1393],
"context_objects": 1,
"texts": "the door is open. it opens into the middle room."
},
{
"scene_name": "scene0314_00",
"context_views_id": [316, 327],
"context_objects": 7,
"texts": "the desk is made of wood and is circular. it is in the center of the room with monitors on it."
},
{
"scene_name": "scene0316_00",
"context_views_id": [426, 449],
"context_objects": 7,
"texts": "the ottoman is in the back middle of the room. there is an identical ottoman to the right of it."
},
{
"scene_name": "scene0328_00",
"context_views_id": [678, 692],
"context_objects": 2,
"texts": "there's a window with a white frame around it. it's located directly above the kitchen sink."
},
{
"scene_name": "scene0329_00",
"context_views_id": [805, 825],
"context_objects": 15,
"texts": "the trash is can is blue and rectangular. the trash can near the door with the knob on the left. the trashcan on the left of the gray trash can."
},
{
"scene_name": "scene0334_00",
"context_views_id": [131, 161],
"context_objects": 3,
"texts": "this is a brown couch. it is on a carpeted floor."
},
{
"scene_name": "scene0338_00",
"context_views_id": [289, 313],
"context_objects": 7,
"texts": "there is a rectangular recycling bin with a green lid. it is next to the door."
},
{
"scene_name": "scene0342_00",
"context_views_id": [509, 525],
"context_objects": 14,
"texts": "the chair is in the first row. it is the second from the right."
},
{
"scene_name": "scene0343_00",
"context_views_id": [554, 566],
"context_objects": 4,
"texts": "there's a brown table with a small serving cart attached that extends the length of the table. the table is in the center of the room, has white legs with two white chairs pushed underneath it."
},
{
"scene_name": "scene0351_00",
"context_views_id": [591, 620],
"context_objects": 2,
"texts": "there is a black arm chair. placed in front of the working table."
},
{
"scene_name": "scene0353_00",
"context_views_id": [2229, 2248],
"context_objects": 4,
"texts": "the chair has wheels. the chair is right in front of the desk."
},
{
"scene_name": "scene0354_00",
"context_views_id": [512, 525],
"context_objects": 4,
"texts": "this is a black chair. it is to the left of a red chair."
},
{
"scene_name": "scene0355_00",
"context_views_id": [957, 968],
"context_objects": 2,
"texts": "there is a multicolored chair. it is facing a round table and another chair across the table from it, but not facing a plant."
},
{
"scene_name": "scene0356_00",
"context_views_id": [1020, 1049],
"context_objects": 11,
"texts": "a bed sits on the floor opposite a wooden desk. at the bed's head is a window."
},
{
"scene_name": "scene0357_00",
"context_views_id": [323, 342],
"context_objects": 6,
"texts": "this is a white door. it is behind the stairway."
},
{
"scene_name": "scene0377_00",
"context_views_id": [96, 119],
"context_objects": 3,
"texts": "the furnace is against the right side of the room. there is a chair to the left in front of it. the furnace is blue."
},
{
"scene_name": "scene0378_00",
"context_views_id": [1742, 1764],
"context_objects": 1,
"texts": "a desk sits with a chair to both it's left and right. it's to the right of a bookshelf."
},
{
"scene_name": "scene0382_00",
"context_views_id": [1051, 1065],
"context_objects": 1,
"texts": "this is a square desk. it is against the wall."
},
{
"scene_name": "scene0389_00",
"context_views_id": [1096, 1111],
"context_objects": 7,
"texts": "a cabinet sits with a microwave under the top of it. it's got a small tv on top of it."
},
{
"scene_name": "scene0406_00",
"context_views_id": [12, 33],
"context_objects": 1,
"texts": "this is a gold curtain. it has ridges."
},
{
"scene_name": "scene0412_00",
"context_views_id": [1659, 1678],
"context_objects": 20,
"texts": "there is a brown single door in the hallway. there is a trash can to the left of this door."
},
{
"scene_name": "scene0414_00",
"context_views_id": [1004, 1018],
"context_objects": 8,
"texts": "this black chair is in the corner to the right of the beige cabinets. this chair is directly across from the table in the center of the room."
},
{
"scene_name": "scene0423_00",
"context_views_id": [317, 329],
"context_objects": 2,
"texts": "this is a tan chair. it has a wire frame supporting it. it is near the flowers and around the small table."
},
{
"scene_name": "scene0426_00",
"context_views_id": [2180, 2203],
"context_objects": 8,
"texts": "this is a black chair. it is to the left of another chair."
},
{
"scene_name": "scene0427_00",
"context_views_id": [0, 28],
"context_objects": 7,
"texts": "this is a black chair with five legs. it is facing the view."
},
{
"scene_name": "scene0430_00",
"context_views_id": [115, 135],
"context_objects": 8,
"texts": "this is a black chair in an office. it is the middle chair at the other end of the table."
},
{
"scene_name": "scene0432_00",
"context_views_id": [148, 169],
"context_objects": 2,
"texts": "the blue sofa chair has a matching chair located to its left. this sofa chair is leaning against a yellow wall."
},
{
"scene_name": "scene0435_00",
"context_views_id": [849, 878],
"context_objects": 11,
"texts": "this is a large twin sized bed. it is on the right side of the hotel room with a small pair of pants on it."
},
{
"scene_name": "scene0441_00",
"context_views_id": [291, 305],
"context_objects": 5,
"texts": "this is the door to the toilet in the bathroom. it is much like the type you see in public bathrooms."
},
{
"scene_name": "scene0458_00",
"context_views_id": [1289, 1310],
"context_objects": 7,
"texts": "it is the toilet close to the trash can. it has toilet paper rolls on top of the toilet lid."
},
{
"scene_name": "scene0461_00",
"context_views_id": [331, 350],
"context_objects": 2,
"texts": "there is a square beige armchair. it is left of a square table."
},
{
"scene_name": "scene0462_00",
"context_views_id": [78, 88],
"context_objects": 6,
"texts": "there is a cabinet with 4 doors to the left of a dark colored garbage can. this cabinet is on the other side of a large shelving unit with binders in it."
},
{
"scene_name": "scene0474_00",
"context_views_id": [1072, 1099],
"context_objects": 16,
"texts": "this is a black chair. it is partially facing the viewer."
},
{
"scene_name": "scene0488_00",
"context_views_id": [280, 302],
"context_objects": 2,
"texts": "there is a tall rectangular refrigerator. it is to the left of a kitchen counter."
},
{
"scene_name": "scene0490_00",
"context_views_id": [918, 931],
"context_objects": 2,
"texts": "there is a gray chair. it is at the left corner of the tv and facing a table."
},
{
"scene_name": "scene0494_00",
"context_views_id": [646, 674],
"context_objects": 3,
"texts": "this is a brown chair in a small room. it is on the right side of the table and the farthest one from the chalkboard."
},
{
"scene_name": "scene0496_00",
"context_views_id": [785, 797],
"context_objects": 15,
"texts": "the black chair is between the wall and the table at the end on the right side. this chair has several others on both sides of the table."
},
{
"scene_name": "scene0500_00",
"context_views_id": [1780, 1802],
"context_objects": 16,
"texts": "the chair is to the left of the other chair. the chair is also to the right of the wall."
},
{
"scene_name": "scene0518_00",
"context_views_id": [325, 336],
"context_objects": 4,
"texts": "an office chair sits pulled under a desk. it's to the left of another office chair."
},
{
"scene_name": "scene0527_00",
"context_views_id": [142, 156],
"context_objects": 7,
"texts": "there is a rectangular bathroom vanity. it is to the right of a picture over a shelf."
},
{
"scene_name": "scene0535_00",
"context_views_id": [226, 250],
"context_objects": 14,
"texts": "the white bookshelf is on the left wall. the bookshelf is located to the left of the window."
},
{
"scene_name": "scene0549_00",
"context_views_id": [342, 364],
"context_objects": 2,
"texts": "a blue couch. it is the largest in view and is by the wood coffee table."
},
{
"scene_name": "scene0550_00",
"context_views_id": [1026, 1045],
"context_objects": 9,
"texts": "there is a white bathroom vanity. it is to the right of the window."
},
{
"scene_name": "scene0552_00",
"context_views_id": [456, 466],
"context_objects": 14,
"texts": "these are black kitchen cabinets. they are below the counter."
},
{
"scene_name": "scene0553_00",
"context_views_id": [354, 370],
"context_objects": 6,
"texts": "the wall trash bin. the trashbin is on the wall by the door."
},
{
"scene_name": "scene0558_00",
"context_views_id": [573, 603],
"context_objects": 11,
"texts": "the object is a brown armchair. it is located in front of the shelf behind the table."
},
{
"scene_name": "scene0559_00",
"context_views_id": [50, 66],
"context_objects": 4,
"texts": "this is a 2 seater couch. it is placed against a colorful wall."
},
{
"scene_name": "scene0565_00",
"context_views_id": [393, 414],
"context_objects": 14,
"texts": "a brown wooden table on the side of the room."
},
{
"scene_name": "scene0568_00",
"context_views_id": [337, 353],
"context_objects": 14,
"texts": "this bookshelf is on the left. it is filled."
},
{
"scene_name": "scene0574_00",
"context_views_id": [286, 298],
"context_objects": 10,
"texts": "the door is white. it is to the left of the sink."
},
{
"scene_name": "scene0575_00",
"context_views_id": [2737, 2755],
"context_objects": 1,
"texts": "a green desk chair. it is in the corner facing a wall."
},
{
"scene_name": "scene0578_00",
"context_views_id": [436, 446],
"context_objects": 6,
"texts": "the chair is around the table. it is on the right side and is the one in the front."
},
{
"scene_name": "scene0580_00",
"context_views_id": [1626, 1648],
"context_objects": 8,
"texts": "this bed is white. its in the middle."
},
{
"scene_name": "scene0583_00",
"context_views_id": [1936, 1959],
"context_objects": 3,
"texts": "a toilet sits to the left of the sink. there is a plunger in the left corner near it."
},
{
"scene_name": "scene0591_00",
"context_views_id": [827, 843],
"context_objects": 1,
"texts": "it is the black couch. the black couch is to the left of the white shelf."
},
{
"scene_name": "scene0593_00",
"context_views_id": [1079, 1108],
"context_objects": 16,
"texts": "this is a brown wooden table. the table is placed at the corner of the room."
},
{
"scene_name": "scene0595_00",
"context_views_id": [264, 290],
"context_objects": 2,
"texts": "a medium size washing machine. it is located near the other machine."
},
{
"scene_name": "scene0598_00",
"context_views_id": [344, 354],
"context_objects": 6,
"texts": "this table is in the middle. it is tan."
},
{
"scene_name": "scene0599_00",
"context_views_id": [1548, 1575],
"context_objects": 6,
"texts": "the table is a long, narrow wooden table in the center of the room. it's the largest piece of furniture in the room. it has eight wooden chairs around it."
},
{
"scene_name": "scene0606_00",
"context_views_id": [281, 301],
"context_objects": 12,
"texts": "the window is rectangular with a white frame. it is above and behind the long kitchen counter, and to the right of the clock."
},
{
"scene_name": "scene0607_00",
"context_views_id": [85, 114],
"context_objects": 6,
"texts": "there is a rectangular wooden table. it is surrounded by chairs."
},
{
"scene_name": "scene0608_00",
"context_views_id": [2728, 2750],
"context_objects": 3,
"texts": "the brown wood tone coffee table is in the middle of the room. there is a chair to the left of it."
},
{
"scene_name": "scene0609_00",
"context_views_id": [905, 917],
"context_objects": 3,
"texts": "the first chair on your right after an open space for walking. the chair's seat is tucked in under the tabletop."
},
{
"scene_name": "scene0616_00",
"context_views_id": [1035, 1051],
"context_objects": 9,
"texts": "this is a brown chair on the left. it is farthest to the picture frame."
},
{
"scene_name": "scene0618_00",
"context_views_id": [150, 172],
"context_objects": 4,
"texts": "this chair is on the left side. it has four legs."
},
{
"scene_name": "scene0621_00",
"context_views_id": [2434, 2454],
"context_objects": 3,
"texts": "the object is a table. it is the middle table on the floor."
},
{
"scene_name": "scene0629_00",
"context_views_id": [902, 913],
"context_objects": 7,
"texts": "this is a white cabinet place besides a black cabinet in the left side besides a railing. a door is seen in the front besides this cabinet."
},
{
"scene_name": "scene0633_00",
"context_views_id": [898, 924],
"context_objects": 17,
"texts": "this crib is on the other side. it is ridged."
},
{
"scene_name": "scene0643_00",
"context_views_id": [1459, 1479],
"context_objects": 21,
"texts": "this is a brown desk. it is to the right of white shelves."
},
{
"scene_name": "scene0644_00",
"context_views_id": [1538, 1554],
"context_objects": 26,
"texts": "the table is the middle one. the table is a yellow rectangle."
},
{
"scene_name": "scene0645_00",
"context_views_id": [4458, 4474],
"context_objects": 21,
"texts": "this bed is tan. it is soft."
},
{
"scene_name": "scene0647_00",
"context_views_id": [1053, 1081],
"context_objects": 6,
"texts": "there is a ping pong table in the center of the area. behind are the furniture."
},
{
"scene_name": "scene0648_00",
"context_views_id": [629, 651],
"context_objects": 15,
"texts": "the bed is on the right side of the room. there is a desk slightly below and to the left of it."
},
{
"scene_name": "scene0651_00",
"context_views_id": [96, 109],
"context_objects": 1,
"texts": "the counter is white and l-shaped. it is located above the white cabinets and drawers, and to the left of the stove."
},
{
"scene_name": "scene0652_00",
"context_views_id": [632, 652],
"context_objects": 1,
"texts": "it is a black wooden bed. it is located to the left of the window."
},
{
"scene_name": "scene0653_00",
"context_views_id": [360, 384],
"context_objects": 5,
"texts": "it is a beige and black chair. the beige and black chair is the chair at the third desk on the right side of the room."
},
{
"scene_name": "scene0655_00",
"context_views_id": [554, 571],
"context_objects": 2,
"texts": "this is a red office chair. it is at the back head of the table next to a black chair."
},
{
"scene_name": "scene0658_00",
"context_views_id": [249, 274],
"context_objects": 8,
"texts": "a bed with a blue blanket. it sits in the corner of the room in front of the window and glass table."
},
{
"scene_name": "scene0660_00",
"context_views_id": [794, 822],
"context_objects": 3,
"texts": "a black leather armchair. in front of the table."
},
{
"scene_name": "scene0663_00",
"context_views_id": [704, 717],
"context_objects": 4,
"texts": "the desk is brown. the desk is under the window."
},
{
"scene_name": "scene0664_00",
"context_views_id": [1166, 1185],
"context_objects": 3,
"texts": "the bathroom vanity is black. the sink is in the middle of it."
},
{
"scene_name": "scene0665_00",
"context_views_id": [482, 510],
"context_objects": 7,
"texts": "this is a blue chair. it is at the round table."
},
{
"scene_name": "scene0670_00",
"context_views_id": [1889, 1908],
"context_objects": 8,
"texts": "the window is above the sink. the window is a clear rectangle."
},
{
"scene_name": "scene0671_00",
"context_views_id": [206, 216],
"context_objects": 2,
"texts": "this is a white plastic chair. located at the end of the table."
},
{
"scene_name": "scene0678_00",
"context_views_id": [1182, 1211],
"context_objects": 11,
"texts": "this washing machine is on the left. it is grey."
},
{
"scene_name": "scene0684_00",
"context_views_id": [783, 811],
"context_objects": 6,
"texts": "this is a tan table. it is behind a chair."
},
{
"scene_name": "scene0685_00",
"context_views_id": [1737, 1767],
"context_objects": 1,
"texts": "there is a rectangular green trash can. it is next to a wooden door."
},
{
"scene_name": "scene0686_00",
"context_views_id": [270, 300],
"context_objects": 4,
"texts": "there is a rectangular bathroom stall door. it is the second from the left."
},
{
"scene_name": "scene0689_00",
"context_views_id": [301, 311],
"context_objects": 9,
"texts": "this chair is facing inwards. it is black."
},
{
"scene_name": "scene0690_00",
"context_views_id": [640, 650],
"context_objects": 10,
"texts": "there is a rectangular brown cabinet. it is behind a rug."
},
{
"scene_name": "scene0693_00",
"context_views_id": [1368, 1386],
"context_objects": 10,
"texts": "the large bathroom door. the door is in front of the sink."
},
{
"scene_name": "scene0695_00",
"context_views_id": [149, 167],
"context_objects": 8,
"texts": "it is a brown bed. the brown bed is next to the left wall in the room."
},
{
"scene_name": "scene0696_00",
"context_views_id": [250, 278],
"context_objects": 11,
"texts": "item is a tall brown and black chair. it is located to the left of the square white pillow on the table."
},
{
"scene_name": "scene0697_00",
"context_views_id": [2576, 2586],
"context_objects": 10,
"texts": "this bed is cluttered. it is in the middle."
},
{
"scene_name": "scene0699_00",
"context_views_id": [155, 182],
"context_objects": 12,
"texts": "a long cabinet sitting under the window that has an air conditioner in it. there is a box of tissues on the cabinet."
},
{
"scene_name": "scene0700_00",
"context_views_id": [3428, 3451],
"context_objects": 5,
"texts": "there is a cylindrical trash can. it is to the right of another trash can."
},
{
"scene_name": "scene0701_00",
"context_views_id": [136, 152],
"context_objects": 1,
"texts": "this is a gray couch. it is facing a round table."
},
{
"scene_name": "scene0702_00",
"context_views_id": [381, 393],
"context_objects": 1,
"texts": "the highlighted object is the small trash can. it is lined with plastic. to its left is the toilet. to the right is the wall of the bathroom."
},
{
"scene_name": "scene0704_00",
"context_views_id": [1326, 1346],
"context_objects": 3,
"texts": "this is a tan door. it is to the left of the cabinet."
},
{
"scene_name": "scene0011_00",
"context_views_id": [419, 444],
"context_objects": 2,
"texts": "brown kitchen cabinets, the top is decorated with marble layers it is placed on the left in the direction of view. the right are 4 brown chairs."
},
{
"scene_name": "scene0015_00",
"context_views_id": [457, 474],
"context_objects": 36,
"texts": "this is a short table. it is in front of a chair."
},
{
"scene_name": "scene0019_00",
"context_views_id": [158, 177],
"context_objects": 13,
"texts": "this is a brown leather chair. the chair is placed on the far right end of the second row of a stack of brown leather chairs."
},
{
"scene_name": "scene0025_00",
"context_views_id": [467, 486],
"context_objects": 5,
"texts": "a black couch in the corner of the room. there is an information board above it."
},
{
"scene_name": "scene0030_00",
"context_views_id": [1006, 1021],
"context_objects": 16,
"texts": "this is a black chair. it is in front of a bookcase."
},
{
"scene_name": "scene0046_00",
"context_views_id": [1051, 1077],
"context_objects": 20,
"texts": "the surface of the table is green in color. two pairs of shoe can be seen lying in front of it."
},
{
"scene_name": "scene0050_00",
"context_views_id": [449, 462],
"context_objects": 4,
"texts": "this is a brown armchair. it is across from a desk."
},
{
"scene_name": "scene0063_00",
"context_views_id": [215, 236],
"context_objects": 11,
"texts": "this is a black kitchen cabinet. it sets next to the refrigerator."
},
{
"scene_name": "scene0064_00",
"context_views_id": [875, 885],
"context_objects": 1,
"texts": "it is a long brown wooden shelf. on the side of the room."
},
{
"scene_name": "scene0077_00",
"context_views_id": [148, 159],
"context_objects": 7,
"texts": "this is a lower white cabinet in a kitchen. it is located below the window."
},
{
"scene_name": "scene0081_00",
"context_views_id": [35, 62],
"context_objects": 6,
"texts": "the small circle table. the table is next to the couch end."
},
{
"scene_name": "scene0084_00",
"context_views_id": [541, 553],
"context_objects": 11,
"texts": "this is a round trash can. it is to the right of the door."
},
{
"scene_name": "scene0086_00",
"context_views_id": [480, 501],
"context_objects": 11,
"texts": "the door is wider than the other bathroom stall doors. the door is beige colored and opens to the handicapped stall."
},
{
"scene_name": "scene0088_00",
"context_views_id": [710, 720],
"context_objects": 3,
"texts": "the big office chair. the chair is on the side between two chairs."
},
{
"scene_name": "scene0095_00",
"context_views_id": [838, 856],
"context_objects": 14,
"texts": "this is a chair. it sets at a table."
},
{
"scene_name": "scene0100_00",
"context_views_id": [474, 501],
"context_objects": 10,
"texts": "this is a bathtub. it sets against the wall."
},
{
"scene_name": "scene0131_00",
"context_views_id": [731, 758],
"context_objects": 11,
"texts": "this is a cushion rolling chair. the chair is placed on the intersection of the table."
},
{
"scene_name": "scene0139_00",
"context_views_id": [433, 456],
"context_objects": 2,
"texts": "the washing machine is stainless steel and is front opening. it is on the left side of the similar appearing dryer. on its right side is a table for folding laundry."
},
{
"scene_name": "scene0144_00",
"context_views_id": [281, 301],
"context_objects": 20,
"texts": "a white closet door. the closet door is next to the black cabinet."
},
{
"scene_name": "scene0146_00",
"context_views_id": [734, 759],
"context_objects": 19,
"texts": "the door is on the opposite wall from the trash can. the door is brown and has a metal handle."
},
{
"scene_name": "scene0149_00",
"context_views_id": [1138, 1150],
"context_objects": 1,
"texts": "the curved kitchen counter. the counter is next to the sink."
},
{
"scene_name": "scene0153_00",
"context_views_id": [545, 565],
"context_objects": 2,
"texts": "this is a sink. the sink is attached close to wall."
},
{
"scene_name": "scene0164_00",
"context_views_id": [654, 668],
"context_objects": 1,
"texts": "the orange color counter is facing directly to the entrance of the kitchen. the is a sink area on top of this counter."
},
{
"scene_name": "scene0169_00",
"context_views_id": [380, 400],
"context_objects": 5,
"texts": "the office chair. the chair is against the wall in the middle."
},
{
"scene_name": "scene0187_00",
"context_views_id": [1906, 1924],
"context_objects": 2,
"texts": "the chair is located with its back against the wall. it is located to the right of the other chair."
},
{
"scene_name": "scene0193_00",
"context_views_id": [384, 401],
"context_objects": 8,
"texts": "this is a wood frame twin bed. the bed is in the corner of the room, by the window."
},
{
"scene_name": "scene0196_00",
"context_views_id": [1445, 1474],
"context_objects": 3,
"texts": "the table is on the middle of the row of tables in the northern are of the room. the table is a white rectangle."
},
{
"scene_name": "scene0203_00",
"context_views_id": [476, 487],
"context_objects": 27,
"texts": "there is a black chair with brown legs. it is sitting adjacent to a grey chair."
},
{
"scene_name": "scene0207_00",
"context_views_id": [1476, 1491],
"context_objects": 2,
"texts": "the couch is between the two stools and the window. the couch looks dark olive green."
},
{
"scene_name": "scene0208_00",
"context_views_id": [1957, 1971],
"context_objects": 10,
"texts": "black magazine rack, next to so a silver magazine rack. both are at the end of the bookshelf closest to the wall."
},
{
"scene_name": "scene0221_00",
"context_views_id": [470, 496],
"context_objects": 8,
"texts": "the bed furthest away. it has green bed covers."
},
{
"scene_name": "scene0222_00",
"context_views_id": [1979, 2009],
"context_objects": 22,
"texts": "mini fridge is kept close to the wall. two trash can are present on the right side of the fridge."
},
{
"scene_name": "scene0231_00",
"context_views_id": [4200, 4210],
"context_objects": 5,
"texts": "there is desk. it is to the right of the window."
},
{
"scene_name": "scene0246_00",
"context_views_id": [250, 272],
"context_objects": 2,
"texts": "this is an armchair. it is placed next to a floor lamp to the left of the bed."
},
{
"scene_name": "scene0249_00",
"context_views_id": [277, 293],
"context_objects": 10,
"texts": "the chair is the southern-most on out of a group of chairs in the northwest area. the chair is gray and has four legs."
},
{
"scene_name": "scene0251_00",
"context_views_id": [910, 929],
"context_objects": 7,
"texts": "the chair is left of the half-circle table. the chair is brown and has four legs."
},
{
"scene_name": "scene0256_00",
"context_views_id": [788, 801],
"context_objects": 10,
"texts": "the curtain is white. it is hung by the window on the left of the desk."
},
{
"scene_name": "scene0257_00",
"context_views_id": [1034, 1057],
"context_objects": 10,
"texts": "the white table, behind is a sink, to the right is a pink chair. to the left of a blue armchair."
},
{
"scene_name": "scene0277_00",
"context_views_id": [197, 224],
"context_objects": 6,
"texts": "the cabinet is wooden and is the color brown. it is located at the right side of the room when you walk in. it is spaced on the right side against the wall facing outwards"
},
{
"scene_name": "scene0278_00",
"context_views_id": [94, 113],
"context_objects": 15,
"texts": "these cabinets are installed under black counter top. a paper cutter is present above these cabinets."
},
{
"scene_name": "scene0300_00",
"context_views_id": [1178, 1195],
"context_objects": 6,
"texts": "it is a silver table with two monitors on it. the table is behind two chair."
},
{
"scene_name": "scene0304_00",
"context_views_id": [1737, 1759],
"context_objects": 10,
"texts": "the cabinet is in the middle of the room. the cabinet is a white box with a blue rectangular top."
},
{
"scene_name": "scene0307_00",
"context_views_id": [1940, 1955],
"context_objects": 6,
"texts": "there is a gray steel sink. placed in the corner of the room."
},
{
"scene_name": "scene0314_00",
"context_views_id": [412, 432],
"context_objects": 5,
"texts": "the chair is pushed into the desk and is in front of a monitor. the chair is the furthest to the right."
},
{
"scene_name": "scene0316_00",
"context_views_id": [248, 271],
"context_objects": 3,
"texts": "there is a brown armchair against the wall. it is to the right of the round table in the corner."
},
{
"scene_name": "scene0328_00",
"context_views_id": [218, 247],
"context_objects": 9,
"texts": "there is a sink in the countertop. it is located between the two cabinets on the wall."
},
{
"scene_name": "scene0329_00",
"context_views_id": [1451, 1467],
"context_objects": 42,
"texts": "the door is the one that is on the right when facing the two doors on the same wall. the door has a poster / picture attached to it and there is a whiteboard on the wall to the right of the door."
},
{
"scene_name": "scene0334_00",
"context_views_id": [987, 1013],
"context_objects": 4,
"texts": "there is a long circular brown couch. it is facing a coffee table."
},
{
"scene_name": "scene0338_00",
"context_views_id": [232, 247],
"context_objects": 7,
"texts": "there is a rectangular gray recycling bin with a green lid. it is next to a door."
},
{
"scene_name": "scene0342_00",
"context_views_id": [270, 298],
"context_objects": 2,
"texts": "the chair is in the second row. it is brown and is the second from the end on the right side in the frame."
},
{
"scene_name": "scene0343_00",
"context_views_id": [558, 584],
"context_objects": 4,
"texts": "it is a brown, wood table with white legs. it has a brown, wooden serving cart beside it and two white chairs pushed in under it."
},
{
"scene_name": "scene0351_00",
"context_views_id": [1265, 1283],
"context_objects": 2,
"texts": "the chair is on the back side of the table. it is facing towards the right."
},
{
"scene_name": "scene0353_00",
"context_views_id": [2243, 2256],
"context_objects": 4,
"texts": "an office chair sits to the right of a squarish chair with blue cushions. it is to the left of a desk and is almost pulled under it."
},
{
"scene_name": "scene0354_00",
"context_views_id": [884, 910],
"context_objects": 5,
"texts": "this is a black chair. it is to the right of a red chair."
},
{
"scene_name": "scene0355_00",
"context_views_id": [768, 796],
"context_objects": 4,
"texts": "the chair is around the table on the right. it is the small brown chair without a pattern."
},
{
"scene_name": "scene0356_00",
"context_views_id": [904, 914],
"context_objects": 9,
"texts": "there is a rectangular window. it is next to the bed."
},
{
"scene_name": "scene0357_00",
"context_views_id": [709, 720],
"context_objects": 14,
"texts": "there is a rectangular brown cabinet. it is next to a window with curtains."
},
{
"scene_name": "scene0377_00",
"context_views_id": [17, 39],
"context_objects": 3,
"texts": "the furnace is blue. there is a chair and three buckets in front of it."
},
{
"scene_name": "scene0378_00",
"context_views_id": [153, 174],
"context_objects": 2,
"texts": "this is a grey file cabinet. it is in the corner and has some objects atop it."
},
{
"scene_name": "scene0382_00",
"context_views_id": [329, 350],
"context_objects": 11,
"texts": "there is a rectangular white radiator. it is besides some bed frames on the floor."
},
{
"scene_name": "scene0389_00",
"context_views_id": [547, 565],
"context_objects": 26,
"texts": "there is a rectangular curtain. it is next to the door."
},
{
"scene_name": "scene0406_00",
"context_views_id": [560, 579],
"context_objects": 1,
"texts": "there is a long brown shower curtain. it is hanging in front of the bathtub."
},
{
"scene_name": "scene0412_00",
"context_views_id": [1455, 1483],
"context_objects": 6,
"texts": "a small black trash can. the trash can is next to a refrigerator and has a plastic bag inside of it."
},
{
"scene_name": "scene0414_00",
"context_views_id": [815, 829],
"context_objects": 8,
"texts": "there is a square gray chair. it is to the left of a long cabinet."
},
{
"scene_name": "scene0423_00",
"context_views_id": [732, 749],
"context_objects": 2,
"texts": "the armchair is to the right of the other chair. it is facing the table."
},
{
"scene_name": "scene0426_00",
"context_views_id": [43, 53],
"context_objects": 25,
"texts": "this is a white bed. it is below the window."
},
{
"scene_name": "scene0427_00",
"context_views_id": [429, 448],
"context_objects": 9,
"texts": "it is a tan door. the door is to the right of the trash can."
},
{
"scene_name": "scene0430_00",
"context_views_id": [1721, 1746],
"context_objects": 3,
"texts": "the chair is the color black. it is around the table facing inwards. it is spaced at the end of the table beside other chairs"
},
{
"scene_name": "scene0432_00",
"context_views_id": [64, 81],
"context_objects": 2,
"texts": "the blue sofa chair is located across from the coffee table. the sofa chair is on the right side farthest away from the window."
},
{
"scene_name": "scene0435_00",
"context_views_id": [1647, 1657],
"context_objects": 5,
"texts": "a dark brown desk. it is in front of a chair."
},
{
"scene_name": "scene0441_00",
"context_views_id": [647, 664],
"context_objects": 14,
"texts": "it is a white sink. it is next tho the urinal."
},
{
"scene_name": "scene0458_00",
"context_views_id": [1028, 1055],
"context_objects": 8,
"texts": "this is a large window. it is on the back surface."
},
{
"scene_name": "scene0461_00",
"context_views_id": [324, 337],
"context_objects": 2,
"texts": "there is a square beige armchair. it is left of a square table."
},
{
"scene_name": "scene0462_00",
"context_views_id": [742, 757],
"context_objects": 17,
"texts": "the door is light grey. it is to the left of the shelves."
},
{
"scene_name": "scene0474_00",
"context_views_id": [889, 903],
"context_objects": 8,
"texts": "the bookshelf is wooden and it is the color brown. it is in the corner of the room. it is spaced at the back in the corner."
},
{
"scene_name": "scene0488_00",
"context_views_id": [105, 122],
"context_objects": 2,
"texts": "there is a tall rectangular refrigerator. it is next to a counter."
},
{
"scene_name": "scene0490_00",
"context_views_id": [1089, 1110],
"context_objects": 5,
"texts": "this is the second chair from the left. it is on the back wall."
},
{
"scene_name": "scene0494_00",
"context_views_id": [635, 652],
"context_objects": 3,
"texts": "this chair is facing away. it is seated."
},
{
"scene_name": "scene0496_00",
"context_views_id": [1049, 1062],
"context_objects": 6,
"texts": "a chair sits facing the table at the foot of the table. it's the chair nearest us to the right of another chair.."
},
{
"scene_name": "scene0500_00",
"context_views_id": [1395, 1407],
"context_objects": 11,
"texts": "this is a wooden chair. it is against the wall near the left side of the chalkboard."
},
{
"scene_name": "scene0518_00",
"context_views_id": [562, 588],
"context_objects": 1,
"texts": "the couch is orange and l shaped. it is to the right of the end tables."
},
{
"scene_name": "scene0527_00",
"context_views_id": [190, 206],
"context_objects": 7,
"texts": "this vanity is to the right of the small table. it has a sink in it and is dark colored under the sink."
},
{
"scene_name": "scene0535_00",
"context_views_id": [306, 334],
"context_objects": 14,
"texts": "the bookshelf is in a corner. it s high and has many objects in it. there is a window to the right of it."
},
{
"scene_name": "scene0549_00",
"context_views_id": [274, 296],
"context_objects": 2,
"texts": "a big blue couch. it is between two end tables."
},
{
"scene_name": "scene0550_00",
"context_views_id": [3567, 3599],
"context_objects": 9,
"texts": "there is a white bathroom vanity. it is against the wall on the right side."
},
{
"scene_name": "scene0552_00",
"context_views_id": [559, 589],
"context_objects": 4,
"texts": "it is a brown chair. the brown chair is at the back head of the table."
},
{
"scene_name": "scene0553_00",
"context_views_id": [382, 409],
"context_objects": 6,
"texts": "this trash bin is on the left. it is black."
},
{
"scene_name": "scene0558_00",
"context_views_id": [318, 330],
"context_objects": 5,
"texts": "the object is a shelf. it is in front of the table and it is l-shaped and it runs on two sides of the walls."
},
{
"scene_name": "scene0559_00",
"context_views_id": [313, 339],
"context_objects": 11,
"texts": "a beige wooden, gray steel table. in the center of the room."
},
{
"scene_name": "scene0565_00",
"context_views_id": [348, 373],
"context_objects": 14,
"texts": "the desk is behind the chair. there is a copier and boxes atop the desk."
},
{
"scene_name": "scene0568_00",
"context_views_id": [584, 609],
"context_objects": 1,
"texts": "this is a blue chair. it is to the right of another chair."
},
{
"scene_name": "scene0574_00",
"context_views_id": [362, 383],
"context_objects": 3,
"texts": "it is a gray bench. the gray bench is under the rack with the hangers."
},
{
"scene_name": "scene0575_00",
"context_views_id": [585, 599],
"context_objects": 6,
"texts": "the black office chair is made up of a meshed back, and fabric seat. it is located in front of the televison directly across from the green office chair."
},
{
"scene_name": "scene0578_00",
"context_views_id": [949, 976],
"context_objects": 7,
"texts": "the chair is brown. the chair is on the left of the table."
},
{
"scene_name": "scene0580_00",
"context_views_id": [3643, 3658],
"context_objects": 8,
"texts": "it is a bed with white sheets and two pillows. it's head board is in form of a shelf."
},
{
"scene_name": "scene0583_00",
"context_views_id": [1323, 1346],
"context_objects": 2,
"texts": "it is a wooden door. it has a bath tub to its right."
},
{
"scene_name": "scene0591_00",
"context_views_id": [95, 124],
"context_objects": 3,
"texts": "a comfortable and spacious chair. it is near the wall."
},
{
"scene_name": "scene0593_00",
"context_views_id": [28, 51],
"context_objects": 13,
"texts": "this is a tall cabinet. it is to the left of the copier."
},
{
"scene_name": "scene0595_00",
"context_views_id": [544, 573],
"context_objects": 2,
"texts": "the washing machines are tall and white. they are located perpendicular to the blue wall."
},
{
"scene_name": "scene0598_00",
"context_views_id": [425, 451],
"context_objects": 6,
"texts": "this is a white table in an office. it is the table with the two chairs up against the wall."
},
{
"scene_name": "scene0599_00",
"context_views_id": [156, 169],
"context_objects": 6,
"texts": "it is a long red table. the long red table is in the middle of the room."
},
{
"scene_name": "scene0606_00",
"context_views_id": [2092, 2120],
"context_objects": 13,
"texts": "this is a long strip of cabinets by the kitchen. it sits beside the window."
},
{
"scene_name": "scene0607_00",
"context_views_id": [929, 956],
"context_objects": 6,
"texts": "there is a rectangular wooden table. it is surrounded by chairs."
},
{
"scene_name": "scene0608_00",
"context_views_id": [709, 725],
"context_objects": 3,
"texts": "there is a rectangular brown table. it is in front of a gray couch."
},
{
"scene_name": "scene0609_00",
"context_views_id": [641, 655],
"context_objects": 5,
"texts": "the table is to the right of one chair. it is to the left of the other chair."
},
{
"scene_name": "scene0616_00",
"context_views_id": [1121, 1147],
"context_objects": 4,
"texts": "this is a white framed window in a lounge. it is to the left of the vacuum cleaner."
},
{
"scene_name": "scene0618_00",
"context_views_id": [553, 579],
"context_objects": 2,
"texts": "there is a black chair by the wall. it is closest to the corner of the room."
},
{
"scene_name": "scene0621_00",
"context_views_id": [1910, 1932],
"context_objects": 1,
"texts": "there is a black table by the wall. it has 4 chairs with it."
},
{
"scene_name": "scene0629_00",
"context_views_id": [1713, 1724],
"context_objects": 8,
"texts": "this is a small end table on the left besides a mattress kept slanting on the wall. a flower vase is placed on this table."
},
{
"scene_name": "scene0633_00",
"context_views_id": [845, 857],
"context_objects": 9,
"texts": "this curtain is on the other side. its grooved."
},
{
"scene_name": "scene0643_00",
"context_views_id": [1217, 1246],
"context_objects": 10,
"texts": "this is a white mini fridge. it is under a green piece of paper."
},
{
"scene_name": "scene0644_00",
"context_views_id": [1380, 1395],
"context_objects": 26,
"texts": "a table sits in front of us. it's got lots of monitors on it."
},
{
"scene_name": "scene0645_00",
"context_views_id": [4112, 4141],
"context_objects": 19,
"texts": "this is a white bathtub. it is behind a shower curtain."
},
{
"scene_name": "scene0647_00",
"context_views_id": [266, 279],
"context_objects": 2,
"texts": "the couch is green patterned. the couch is on the left of the table."
},
{
"scene_name": "scene0648_00",
"context_views_id": [2154, 2172],
"context_objects": 14,
"texts": "the closet is not very deep. there are brown shelves to the right / front of the closet. there is a plant on the top shelf. there are multiple towels hanging inside the closet."
},
{
"scene_name": "scene0651_00",
"context_views_id": [114, 125],
"context_objects": 1,
"texts": "the kitchen counter is white, and shaped like the letter l. it is located above the white cupboards, and to the left of the white stove."
},
{
"scene_name": "scene0652_00",
"context_views_id": [1242, 1259],
"context_objects": 1,
"texts": "this bed is in the middle. it is white."
},
{
"scene_name": "scene0653_00",
"context_views_id": [1653, 1670],
"context_objects": 2,
"texts": "this file cabinet is in the middle. it has objects."
},
{
"scene_name": "scene0655_00",
"context_views_id": [71, 85],
"context_objects": 2,
"texts": "the office chair is the right-most red one next to the table. the chair has two arms and a square seat."
},
{
"scene_name": "scene0658_00",
"context_views_id": [443, 465],
"context_objects": 7,
"texts": "the grey door that is in front of the bed. it is to the left of the other closet door."
},
{
"scene_name": "scene0660_00",
"context_views_id": [232, 246],
"context_objects": 8,
"texts": "this is a long brown table. it has many cushioned chairs around it."
},
{
"scene_name": "scene0663_00",
"context_views_id": [1148, 1160],
"context_objects": 5,
"texts": "this is a wooden desk with l shape. the desk is close to wall."
},
{
"scene_name": "scene0664_00",
"context_views_id": [221, 239],
"context_objects": 21,
"texts": "this is a black framed picture. it is hanging on the wall above the toilet."
},
{
"scene_name": "scene0665_00",
"context_views_id": [44, 70],
"context_objects": 2,
"texts": "it is a blue chair in the table close to the door. it is on the right side on the farther side of the wall."
},
{
"scene_name": "scene0670_00",
"context_views_id": [1028, 1058],
"context_objects": 28,
"texts": "it is a dark brown cabinet. the cabinet is to the right of the trashcan."
},
{
"scene_name": "scene0671_00",
"context_views_id": [337, 348],
"context_objects": 4,
"texts": "there is a brown chair pushed against the long side of the table on the same side as the white and red chair. it is on the end near the head of the table."
},
{
"scene_name": "scene0678_00",
"context_views_id": [1443, 1465],
"context_objects": 26,
"texts": "the window is rectangular, with a white frame. it is the second window from the left, above the grey counter."
},
{
"scene_name": "scene0684_00",
"context_views_id": [835, 848],
"context_objects": 5,
"texts": "the chair is a black padded swivel chair with wheels and no arms. it is in front of a tan desk."
},
{
"scene_name": "scene0685_00",
"context_views_id": [291, 312],
"context_objects": 4,
"texts": "the table is one of two tables against the wall. it is the one on the right."
},
{
"scene_name": "scene0686_00",
"context_views_id": [689, 714],
"context_objects": 1,
"texts": "item is an ecrue colored bathroom stall door. it is located to the left and forefront of the toilet."
},
{
"scene_name": "scene0689_00",
"context_views_id": [656, 686],
"context_objects": 1,
"texts": "the window is on the northern wall. the window is rectangular and has a yellow square."
},
{
"scene_name": "scene0690_00",
"context_views_id": [402, 431],
"context_objects": 10,
"texts": "this cabinet is straight ahead. it is past gold doors."
},
{
"scene_name": "scene0693_00",
"context_views_id": [1040, 1055],
"context_objects": 4,
"texts": "there is a white bathtub. it is on the other side of the toilet."
},
{
"scene_name": "scene0695_00",
"context_views_id": [383, 413],
"context_objects": 3,
"texts": "the window is right of the curtains. the window is white and rectangular."
},
{
"scene_name": "scene0696_00",
"context_views_id": [34, 48],
"context_objects": 7,
"texts": "object is a brown curtain with with lace on its left side. it is located behind two computer monitors."
},
{
"scene_name": "scene0697_00",
"context_views_id": [1089, 1112],
"context_objects": 10,
"texts": "this bed is in the middle. its wrinkled."
},
{
"scene_name": "scene0699_00",
"context_views_id": [149, 174],
"context_objects": 12,
"texts": "a wood cabinet that is up against the wall. a kleenex box is sitting on top of it and it is below a wall ac unit."
},
{
"scene_name": "scene0700_00",
"context_views_id": [762, 789],
"context_objects": 5,
"texts": "a trash can is sitting to the right of the white board on the wall. there is shelf to the right of it."
},
{
"scene_name": "scene0701_00",
"context_views_id": [410, 434],
"context_objects": 3,
"texts": "the table is surrounded by couches. the table is a round cylinder."
},
{
"scene_name": "scene0702_00",
"context_views_id": [447, 477],
"context_objects": 5,
"texts": "there is a brown door opening into the bathroom. it is to the right of the toilet paper hanging on the wall."
},
{
"scene_name": "scene0704_00",
"context_views_id": [480, 493],
"context_objects": 26,
"texts": "the picture is hanging to the left side of the wall. there is a large bulletin board to the right of it."
}
] |