File size: 142,317 Bytes
5c8ef86 |
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 |
{
"003234408d": {
"penguin": {
"00045": {
"1": {
"ref_exp": "The penguin bending downward in the foreground, inspecting the ground intently.",
"caption": "In the image, a penguin in the foreground bends downward, inspecting the ground intently. Another penguin to the left is crouched low, settling onto a rocky surface, possibly adjusting its position. A third penguin in the upper center leans forward with its beak pointing downward, appearing to be picking up or interacting with a small object on the rocks. Several others in the background are reclined, resting motionless on the rocky terrain.",
"cat_name": "penguin",
"file_name": "00045",
"isValid": false
},
"2": {
"ref_exp": "The penguin bending downward in the foreground, inspecting the ground intently.",
"caption": "In the image, a penguin in the foreground bends downward, inspecting the ground intently. Another penguin to the left is crouched low, settling onto a rocky surface, possibly adjusting its position. A third penguin in the upper center leans forward with its beak pointing downward, appearing to be picking up or interacting with a small object on the rocks. Several others in the background are reclined, resting motionless on the rocky terrain.",
"cat_name": "penguin",
"file_name": "00045",
"isValid": true
},
"3": {
"ref_exp": "The penguin leaning forward with its beak pointing downward, appearing to interact with a small object on the rocks.",
"caption": "In the image, a penguin in the foreground bends downward, inspecting the ground intently. Another penguin to the left is crouched low, settling onto a rocky surface, possibly adjusting its position. A third penguin in the upper center leans forward with its beak pointing downward, appearing to be picking up or interacting with a small object on the rocks. Several others in the background are reclined, resting motionless on the rocky terrain.",
"cat_name": "penguin",
"file_name": "00045",
"isValid": true
},
"4": {
"ref_exp": "The penguin within the red box is reclining motionlessly on the rocky terrain.",
"caption": "In the image, a penguin in the foreground bends downward, inspecting the ground intently. Another penguin to the left is crouched low, settling onto a rocky surface, possibly adjusting its position. A third penguin in the upper center leans forward with its beak pointing downward, appearing to be picking up or interacting with a small object on the rocks. Several others in the background are reclined, resting motionless on the rocky terrain.",
"cat_name": "penguin",
"file_name": "00045",
"isValid": true
},
"5": {
"ref_exp": "The penguin in the red box, corresponding to Object ID 5, is \"the penguin crouched low, settling onto a rocky surface, possibly adjusting its position.\"",
"caption": "In the image, a penguin in the foreground bends downward, inspecting the ground intently. Another penguin to the left is crouched low, settling onto a rocky surface, possibly adjusting its position. A third penguin in the upper center leans forward with its beak pointing downward, appearing to be picking up or interacting with a small object on the rocks. Several others in the background are reclined, resting motionless on the rocky terrain.",
"cat_name": "penguin",
"file_name": "00045",
"isValid": true
}
},
"00070": {
"1": {
"ref_exp": "The penguin bending downward and pecking at the rocky surface in front of it.",
"caption": "One penguin bends downward, pecking at the rocky surface in front of it, while another stands upright nearby, facing it and maintaining a stationary posture. In the background, multiple penguins recline on raised, stony mounds, some with their heads slightly turned.",
"cat_name": "penguin",
"file_name": "00070",
"isValid": false
},
"2": {
"ref_exp": "The penguin bending downward, pecking at the rocky surface in front of it.",
"caption": "One penguin bends downward, pecking at the rocky surface in front of it, while another stands upright nearby, facing it and maintaining a stationary posture. In the background, multiple penguins recline on raised, stony mounds, some with their heads slightly turned.",
"cat_name": "penguin",
"file_name": "00070",
"isValid": true
},
"3": {
"ref_exp": "The penguin bending downward and pecking at the rocky surface in front of it.",
"caption": "One penguin bends downward, pecking at the rocky surface in front of it, while another stands upright nearby, facing it and maintaining a stationary posture. In the background, multiple penguins recline on raised, stony mounds, some with their heads slightly turned.",
"cat_name": "penguin",
"file_name": "00070",
"isValid": false
},
"4": {
"ref_exp": "The penguin bending downward and pecking at the rocky surface in front of it.",
"caption": "One penguin bends downward, pecking at the rocky surface in front of it, while another stands upright nearby, facing it and maintaining a stationary posture. In the background, multiple penguins recline on raised, stony mounds, some with their heads slightly turned.",
"cat_name": "penguin",
"file_name": "00070",
"isValid": false
},
"5": {
"ref_exp": "The penguin reclining on a raised, stony mound with its head slightly turned.",
"caption": "One penguin bends downward, pecking at the rocky surface in front of it, while another stands upright nearby, facing it and maintaining a stationary posture. In the background, multiple penguins recline on raised, stony mounds, some with their heads slightly turned.",
"cat_name": "penguin",
"file_name": "00070",
"isValid": true
}
},
"00110": {
"1": {
"ref_exp": "The penguin bending forward, appearing to inspect or adjust the rocks beneath it.",
"caption": "One penguin bends forward, appearing to inspect or adjust the rocks beneath it, while another near the center stands upright, extending its head downward as if interacting with its surroundings. Several other penguins are either stationary or lying low on rocky mounds, some with visible downward head movements. ",
"cat_name": "penguin",
"file_name": "00110",
"isValid": false
},
"2": {
"ref_exp": "The penguin bending forward, appearing to inspect or adjust the rocks beneath it.",
"caption": "One penguin bends forward, appearing to inspect or adjust the rocks beneath it, while another near the center stands upright, extending its head downward as if interacting with its surroundings. Several other penguins are either stationary or lying low on rocky mounds, some with visible downward head movements. ",
"cat_name": "penguin",
"file_name": "00110",
"isValid": true
},
"3": {
"ref_exp": "The penguin lying low on a rocky mound.",
"caption": "One penguin bends forward, appearing to inspect or adjust the rocks beneath it, while another near the center stands upright, extending its head downward as if interacting with its surroundings. Several other penguins are either stationary or lying low on rocky mounds, some with visible downward head movements. ",
"cat_name": "penguin",
"file_name": "00110",
"isValid": true
},
"4": {
"ref_exp": "The penguin lying low on a rocky mound with its head slightly tilted downward.",
"caption": "One penguin bends forward, appearing to inspect or adjust the rocks beneath it, while another near the center stands upright, extending its head downward as if interacting with its surroundings. Several other penguins are either stationary or lying low on rocky mounds, some with visible downward head movements. ",
"cat_name": "penguin",
"file_name": "00110",
"isValid": false
},
"5": {
"ref_exp": "The penguin bends forward, appearing to inspect or adjust the rocks beneath it.",
"caption": "One penguin bends forward, appearing to inspect or adjust the rocks beneath it, while another near the center stands upright, extending its head downward as if interacting with its surroundings. Several other penguins are either stationary or lying low on rocky mounds, some with visible downward head movements. ",
"cat_name": "penguin",
"file_name": "00110",
"isValid": false
}
},
"00165": {
"1": {
"ref_exp": "The penguin in the red box leans forward, lowering its beak toward the ground.",
"caption": "A penguin on the right stands upright, facing away from the camera, while another penguin in the center leans forward, lowering its beak toward the ground. Nearby, a third penguin lies on a rocky surface, tilting its head slightly upward.",
"cat_name": "penguin",
"file_name": "00165",
"isValid": true
},
"2": {
"ref_exp": "The penguin in the center leaning forward, lowering its beak toward the ground.",
"caption": "A penguin on the right stands upright, facing away from the camera, while another penguin in the center leans forward, lowering its beak toward the ground. Nearby, a third penguin lies on a rocky surface, tilting its head slightly upward.",
"cat_name": "penguin",
"file_name": "00165",
"isValid": false
},
"3": {
"ref_exp": "The penguin lying on a rocky surface, tilting its head slightly upward.",
"caption": "A penguin on the right stands upright, facing away from the camera, while another penguin in the center leans forward, lowering its beak toward the ground. Nearby, a third penguin lies on a rocky surface, tilting its head slightly upward.",
"cat_name": "penguin",
"file_name": "00165",
"isValid": true
},
"4": {
"ref_exp": "The penguin in the red box lies on a rocky surface, tilting its head slightly upward.",
"caption": "A penguin on the right stands upright, facing away from the camera, while another penguin in the center leans forward, lowering its beak toward the ground. Nearby, a third penguin lies on a rocky surface, tilting its head slightly upward.",
"cat_name": "penguin",
"file_name": "00165",
"isValid": true
},
"5": {
"ref_exp": "The penguin lying on a rocky surface, tilting its head slightly upward.",
"caption": "A penguin on the right stands upright, facing away from the camera, while another penguin in the center leans forward, lowering its beak toward the ground. Nearby, a third penguin lies on a rocky surface, tilting its head slightly upward.",
"cat_name": "penguin",
"file_name": "00165",
"isValid": true
}
}
}
},
"0043f083b5": {
"sedan": {
"00015": {},
"00035": {},
"00060": {},
"00070": {}
},
"bus": {
"00015": {},
"00035": {},
"00060": {},
"00070": {}
}
},
"0044fa5fba": {
"giant_panda": {
"00015": {},
"00025": {},
"00040": {},
"00060": {}
}
},
"005a527edd": {
"ape": {
"00035": {
"1": {
"ref_exp": "The ape rests one hand on its head while holding a young ape close to its chest with the other arm.",
"caption": "The adult ape rests one hand on its head while holding a young ape close to its chest with the other arm, nestled amidst dense green foliage. The young ape remains still and tucked securely under the adult's arm, partially obscured by the surrounding greenery.",
"cat_name": "ape",
"file_name": "00035",
"isValid": false
},
"2": {
"ref_exp": "The ape rests one hand on its head while holding a young ape close to its chest with the other arm.",
"caption": "The adult ape rests one hand on its head while holding a young ape close to its chest with the other arm, nestled amidst dense green foliage. The young ape remains still and tucked securely under the adult's arm, partially obscured by the surrounding greenery.",
"cat_name": "ape",
"file_name": "00035",
"isValid": true
}
},
"00065": {},
"00095": {
"1": {
"ref_exp": "The ape scratching its head with one hand while holding a younger chimpanzee with the other arm.",
"caption": "A chimpanzee holds a younger chimpanzee with one arm while using its other hand to touch or scratch its head. The younger chimpanzee remains partially obscured, positioned close to the adult in a seated posture amidst dense greenery.",
"cat_name": "ape",
"file_name": "00095",
"isValid": false
},
"2": {
"ref_exp": "The ape touching or scratching its head with one hand.",
"caption": "A chimpanzee holds a younger chimpanzee with one arm while using its other hand to touch or scratch its head. The younger chimpanzee remains partially obscured, positioned close to the adult in a seated posture amidst dense greenery.",
"cat_name": "ape",
"file_name": "00095",
"isValid": false
}
},
"00105": {}
}
},
"0065b171f9": {
"giant_panda": {
"00040": {},
"00075": {},
"00125": {},
"00145": {}
}
},
"00917dcfc4": {
"zebra": {
"00035": {
"1": {
"ref_exp": "The zebra lowers its head and presses its mouth and nose against the side of the other zebra's body near its flank.",
"caption": "One zebra lowers its head and presses its mouth and nose against the side of the other zebra's body near its flank, while the second zebra stands stationary with its hind legs slightly angled away from the interaction.",
"cat_name": "zebra",
"file_name": "00035",
"isValid": false
},
"2": {
"ref_exp": "The zebra lowers its head and presses its mouth and nose against the side of the other zebra's body near its flank.",
"caption": "One zebra lowers its head and presses its mouth and nose against the side of the other zebra's body near its flank, while the second zebra stands stationary with its hind legs slightly angled away from the interaction.",
"cat_name": "zebra",
"file_name": "00035",
"isValid": false
},
"3": {
"ref_exp": "NONE",
"caption": "One zebra lowers its head and presses its mouth and nose against the side of the other zebra's body near its flank, while the second zebra stands stationary with its hind legs slightly angled away from the interaction.",
"cat_name": "zebra",
"file_name": "00035",
"isValid": false
}
},
"00055": {
"1": {
"ref_exp": "The zebra lowering its head while stepping forward and brushing against the side of another zebra.",
"caption": "One zebra lowers its head while stepping forward, brushing against the side of another zebra that is standing upright with its head slightly tilted downward and ears alert. A third zebra on the left partially emerges into view, turning its head toward the interaction.",
"cat_name": "zebra",
"file_name": "00055",
"isValid": false
},
"2": {
"ref_exp": "The zebra lowering its head while stepping forward and brushing against the side of a standing zebra.",
"caption": "One zebra lowers its head while stepping forward, brushing against the side of another zebra that is standing upright with its head slightly tilted downward and ears alert. A third zebra on the left partially emerges into view, turning its head toward the interaction.",
"cat_name": "zebra",
"file_name": "00055",
"isValid": false
},
"3": {
"ref_exp": "The zebra partially emerging into view on the left, turning its head toward the interaction.",
"caption": "One zebra lowers its head while stepping forward, brushing against the side of another zebra that is standing upright with its head slightly tilted downward and ears alert. A third zebra on the left partially emerges into view, turning its head toward the interaction.",
"cat_name": "zebra",
"file_name": "00055",
"isValid": false
}
},
"00075": {
"1": {
"ref_exp": "The zebra tilting its head and neck sideways, pressing against the zebra beside it.",
"caption": "A zebra on the left lowers its head and angles it towards the ground, seemingly observing or interacting with the terrain. The central zebra tilts its head and neck sideways, pressing against the zebra beside it, possibly in a gesture of nudging or physical contact. The zebra on the far right stands upright and still, with its body oriented forward, showing no immediate motion or interaction.",
"cat_name": "zebra",
"file_name": "00075",
"isValid": false
},
"2": {
"ref_exp": "The zebra tilting its head and neck sideways, pressing against the zebra beside it.",
"caption": "A zebra on the left lowers its head and angles it towards the ground, seemingly observing or interacting with the terrain. The central zebra tilts its head and neck sideways, pressing against the zebra beside it, possibly in a gesture of nudging or physical contact. The zebra on the far right stands upright and still, with its body oriented forward, showing no immediate motion or interaction.",
"cat_name": "zebra",
"file_name": "00075",
"isValid": false
},
"3": {
"ref_exp": "The zebra lowering its head and angling it towards the ground on the left.",
"caption": "A zebra on the left lowers its head and angles it towards the ground, seemingly observing or interacting with the terrain. The central zebra tilts its head and neck sideways, pressing against the zebra beside it, possibly in a gesture of nudging or physical contact. The zebra on the far right stands upright and still, with its body oriented forward, showing no immediate motion or interaction.",
"cat_name": "zebra",
"file_name": "00075",
"isValid": false
}
},
"00100": {
"1": {
"ref_exp": "The zebra rearing its head upward with its mane raised, appearing to interact physically with the central zebra.",
"caption": "One zebra on the left stands still, facing in the direction of two zebras at the center. The central zebra turns its head back toward the zebra behind it, while the zebra on the right rears its head upward with its mane raised, appearing to interact physically with the central zebra.",
"cat_name": "zebra",
"file_name": "00100",
"isValid": false
},
"2": {
"ref_exp": "The zebra turning its head back toward the zebra behind it.",
"caption": "One zebra on the left stands still, facing in the direction of two zebras at the center. The central zebra turns its head back toward the zebra behind it, while the zebra on the right rears its head upward with its mane raised, appearing to interact physically with the central zebra.",
"cat_name": "zebra",
"file_name": "00100",
"isValid": false
},
"3": {
"ref_exp": "The zebra standing still on the left, facing the two zebras at the center.",
"caption": "One zebra on the left stands still, facing in the direction of two zebras at the center. The central zebra turns its head back toward the zebra behind it, while the zebra on the right rears its head upward with its mane raised, appearing to interact physically with the central zebra.",
"cat_name": "zebra",
"file_name": "00100",
"isValid": false
}
}
}
},
"00a23ccf53": {
"shark": {
"00010": {},
"00050": {},
"00125": {
"1": {
"ref_exp": "The shark gliding closely above the seabed while brushing past coral formations.",
"caption": "Several sharks are swimming at varying depths, with one near the center gliding closely above the seabed while brushing past coral formations. Another shark on the left is turning its body sharply mid-swim, creating a dynamic curve. A larger shark in the background is moving horizontally, weaving through the school of smaller fish scattered throughout the water.",
"cat_name": "shark",
"file_name": "00125",
"isValid": false
}
},
"00140": {}
}
},
"00ad5016a4": {
"airplane": {
"00010": {},
"00025": {},
"00040": {},
"00055": {}
}
},
"01082ae388": {
"leopard": {
"00025": {},
"00065": {},
"00095": {},
"00110": {}
}
},
"011ac0a06f": {
"ape": {
"00010": {
"1": {
"ref_exp": "NONE",
"caption": "Several apes in the scene engage in distinct, dynamic actions: one in the foreground crouches while appearing ready to leap forward, another on the left runs or bounds across the rocky ground, two in the midground leap simultaneously with arms lifted, and one standing in the background appears stationary with its arms positioned downward, observing.",
"cat_name": "ape",
"file_name": "00010",
"isValid": false
},
"2": {},
"3": {},
"4": {},
"5": {}
},
"00055": {
"1": {
"ref_exp": "The ape in the foreground moves forward with arms extended, appearing to approach a shallow puddle.",
"caption": "Several apes are depicted in distinct actions: one ape in the foreground moves forward with arms extended, appearing to approach a shallow puddle. Another ape in the midground crouches low, gripping the uneven ground with its hands. Two apes in the background navigate the rocky terrain, one climbing over a boulder while the other moves upright on all fours. Additional apes on the far right advance energetically, some with visible leaping motions over scattered rocks.",
"cat_name": "ape",
"file_name": "00055",
"isValid": false
},
"2": {},
"3": {},
"4": {},
"5": {}
},
"00115": {
"1": {
"ref_exp": "The ape in the foreground leaning forward with extended arms near a water hole.",
"caption": "One ape in the foreground leans forward with extended arms near a water hole, while another in the midground crouches with its head down toward the ground. In the background, one ape rises upright with its arms raised above its head, while another steps forward in a hunched posture. Two additional apes in the distance are positioned low to the ground, appearing to move cautiously across the rocky terrain.",
"cat_name": "ape",
"file_name": "00115",
"isValid": false
},
"2": {},
"3": {},
"4": {},
"5": {}
},
"00145": {
"1": {
"ref_exp": "The crouching ape in the foreground extending an arm toward the ground.",
"caption": "One ape in the foreground crouches low and extends an arm toward the ground. The central ape raises both arms above its head while squatting. Another ape in the background strides forward with one arm positioned downward. A fourth ape farther back appears mid-step, slightly hunched, with arms loosely swinging. Additional apes in the scene remain upright, walking or moving across the rocky terrain.",
"cat_name": "ape",
"file_name": "00145",
"isValid": false
},
"2": {},
"3": {},
"4": {},
"5": {}
}
}
},
"013099c098": {
"giant_panda": {
"00020": {
"1": {
"ref_exp": "The giant_panda placing its front paws on the back of the lower panda while leaning forward.",
"caption": "One giant panda positions itself upright behind the other, placing its front paws on the back of the panda below while leaning forward. The lower panda crouches near a small stream of water, with its paws resting against a rock edge, as water flows past it.",
"cat_name": "giant_panda",
"file_name": "00020",
"isValid": true
},
"2": {
"ref_exp": "The giant_panda positioned upright, placing its front paws on the back of another panda below while leaning forward.",
"caption": "One giant panda positions itself upright behind the other, placing its front paws on the back of the panda below while leaning forward. The lower panda crouches near a small stream of water, with its paws resting against a rock edge, as water flows past it.",
"cat_name": "giant_panda",
"file_name": "00020",
"isValid": false
}
},
"00030": {
"1": {
"ref_exp": "NONE",
"caption": "The larger giant panda is leaning forward and submerging its snout into a shallow stream of water, creating visible splashes. The smaller giant panda is crouching nearby, lowering its head toward the water while partially positioning one paw into the stream.",
"cat_name": "giant_panda",
"file_name": "00030",
"isValid": false
},
"2": {
"ref_exp": "NONE",
"caption": "The larger giant panda is leaning forward and submerging its snout into a shallow stream of water, creating visible splashes. The smaller giant panda is crouching nearby, lowering its head toward the water while partially positioning one paw into the stream.",
"cat_name": "giant_panda",
"file_name": "00030",
"isValid": false
}
},
"00050": {
"1": {
"ref_exp": "NONE",
"caption": "One giant panda is pushing its front paws against the chest of another panda while lying on its back on the grass. The other giant panda is leaning over with its front legs pressing down onto the lying panda\u2019s midsection, maintaining close physical interaction.",
"cat_name": "giant_panda",
"file_name": "00050",
"isValid": false
},
"2": {
"ref_exp": "The giant_panda lying on its back on the grass while pushing its front paws against the chest of another panda.",
"caption": "One giant panda is pushing its front paws against the chest of another panda while lying on its back on the grass. The other giant panda is leaning over with its front legs pressing down onto the lying panda\u2019s midsection, maintaining close physical interaction.",
"cat_name": "giant_panda",
"file_name": "00050",
"isValid": false
}
},
"00070": {
"1": {
"ref_exp": "The giant_panda lying on its back, gripping the other panda with both front paws while slightly tilting its head upward.",
"caption": "One giant panda is lying on its back, gripping the other panda with both front paws while slightly tilting its head upward. The other panda, positioned on top, presses its body down onto the reclining panda while using its front paws to maintain contact. Water droplets scatter from their damp fur, indicating recent interaction with a wet surface.",
"cat_name": "giant_panda",
"file_name": "00070",
"isValid": false
},
"2": {
"ref_exp": "NONE",
"caption": "One giant panda is lying on its back, gripping the other panda with both front paws while slightly tilting its head upward. The other panda, positioned on top, presses its body down onto the reclining panda while using its front paws to maintain contact. Water droplets scatter from their damp fur, indicating recent interaction with a wet surface.",
"cat_name": "giant_panda",
"file_name": "00070",
"isValid": false
}
}
}
},
"0155498c85": {
"person": {
"00025": {
"1": {
"ref_exp": "The person maneuvering a dirt bike down a steep, muddy incline while leaning slightly forward and gripping the handlebars firmly.",
"caption": "The rider in the foreground maneuvers a dirt bike down a steep, muddy incline, leaning slightly forward while gripping the handlebars firmly. The rider in the background navigates another part of the trail, ascending while staying seated on the bike.",
"cat_name": "person",
"file_name": "00025",
"isValid": true
},
"2": {
"ref_exp": "NONE",
"caption": "The rider in the foreground maneuvers a dirt bike down a steep, muddy incline, leaning slightly forward while gripping the handlebars firmly. The rider in the background navigates another part of the trail, ascending while staying seated on the bike.",
"cat_name": "motorbike",
"file_name": "00025",
"isValid": false
}
},
"00055": {
"1": {
"ref_exp": "The person leaning forward while gripping the handlebars and riding a dirt bike through a muddy track as the bike's front tire splashes through a puddle.",
"caption": "A person rides a dirt bike through a muddy track, leaning forward while gripping the handlebars, as the bike's front tire splashes through a puddle in the uneven terrain. Another person on a dirt bike in the background rides along the curved path, maintaining a steady position.",
"cat_name": "person",
"file_name": "00055",
"isValid": true
},
"2": {
"ref_exp": "The motorbike splashing its front tire through a muddy puddle while the rider leans forward and grips the handlebars.",
"caption": "A person rides a dirt bike through a muddy track, leaning forward while gripping the handlebars, as the bike's front tire splashes through a puddle in the uneven terrain. Another person on a dirt bike in the background rides along the curved path, maintaining a steady position.",
"cat_name": "motorbike",
"file_name": "00055",
"isValid": true
}
},
"00120": {
"1": {
"ref_exp": "The person maneuvers a dirt bike aggressively through a muddy trail while leaning slightly to maintain balance, with dirt and debris kicking up behind the rear wheel.",
"caption": "The rider in the foreground maneuvers their dirt bike aggressively through a muddy trail while leaning slightly to maintain balance, with dirt and debris kicking up behind the rear wheel. In the background, another rider follows closely on a similar trail, tilting their bike to navigate the terrain.",
"cat_name": "person",
"file_name": "00120",
"isValid": false
},
"2": {
"ref_exp": "The motorbike maneuvering aggressively through a muddy trail while leaning slightly and kicking up dirt and debris behind its rear wheel.",
"caption": "The rider in the foreground maneuvers their dirt bike aggressively through a muddy trail while leaning slightly to maintain balance, with dirt and debris kicking up behind the rear wheel. In the background, another rider follows closely on a similar trail, tilting their bike to navigate the terrain.",
"cat_name": "motorbike",
"file_name": "00120",
"isValid": true
}
},
"00145": {
"1": {
"ref_exp": "The person rides a motorcycle through a dirt track, kicking up a cloud of soil and debris from the rear tire.",
"caption": "A motorcyclist rides through a dirt track, kicking up a substantial cloud of soil and debris from the rear tire, while a person in an orange vest stands upright in the background near the edge of a forested area, observing the scene.",
"cat_name": "person",
"file_name": "00145",
"isValid": true
},
"2": {
"ref_exp": "The motorbike kicking up a substantial cloud of soil and debris from its rear tire while riding through a dirt track.",
"caption": "A motorcyclist rides through a dirt track, kicking up a substantial cloud of soil and debris from the rear tire, while a person in an orange vest stands upright in the background near the edge of a forested area, observing the scene.",
"cat_name": "motorbike",
"file_name": "00145",
"isValid": true
}
}
},
"motorbike": {
"00025": {
"1": {
"ref_exp": "The person descending a steep, muddy slope while riding a motorbike and kicking up dirt.",
"caption": "The motorbike in the foreground is descending a steep, muddy slope, kicking up dirt as its tires dig into the soft terrain. The motorbike in the background is maneuvering through a turn, slightly tilting to its side while maintaining traction on the slippery surface.",
"cat_name": "person",
"file_name": "00025",
"isValid": false
},
"2": {
"ref_exp": "NONE",
"caption": "The motorbike in the foreground is descending a steep, muddy slope, kicking up dirt as its tires dig into the soft terrain. The motorbike in the background is maneuvering through a turn, slightly tilting to its side while maintaining traction on the slippery surface.",
"cat_name": "motorbike",
"file_name": "00025",
"isValid": false
}
},
"00055": {
"1": {
"ref_exp": "The person navigating a motorbike through deep, uneven mud while splashing water from a puddle beneath the wheels.",
"caption": "The motorbike in the foreground navigates through deep, uneven mud while splashing water from a puddle beneath its wheels. Another motorbike in the background maneuvers along the elevated dirt track, maintaining a steady trajectory towards the curve.",
"cat_name": "person",
"file_name": "00055",
"isValid": true
},
"2": {
"ref_exp": "The motorbike navigating through deep, uneven mud while splashing water from a puddle beneath its wheels.",
"caption": "The motorbike in the foreground navigates through deep, uneven mud while splashing water from a puddle beneath its wheels. Another motorbike in the background maneuvers along the elevated dirt track, maintaining a steady trajectory towards the curve.",
"cat_name": "motorbike",
"file_name": "00055",
"isValid": true
}
},
"00120": {
"1": {
"ref_exp": "The person accelerating through the dirt trail on the front motorbike while leaning slightly to navigate the uneven terrain.",
"caption": "The front motorbike accelerates through the dirt trail, kicking up a dense cloud of dust while leaning slightly to navigate the uneven terrain. The second motorbike follows closely, maintaining a steady pace as it approaches the same slope, with its rear tire digging into the loose surface for traction.",
"cat_name": "person",
"file_name": "00120",
"isValid": true
},
"2": {
"ref_exp": "The motorbike maintaining a steady pace while approaching the slope, with its rear tire digging into the loose surface for traction.",
"caption": "The front motorbike accelerates through the dirt trail, kicking up a dense cloud of dust while leaning slightly to navigate the uneven terrain. The second motorbike follows closely, maintaining a steady pace as it approaches the same slope, with its rear tire digging into the loose surface for traction.",
"cat_name": "motorbike",
"file_name": "00120",
"isValid": false
}
},
"00145": {}
}
},
"01694ad9c8": {
"bird": {
"00020": {},
"00035": {},
"00045": {},
"00060": {}
}
},
"017ac35701": {
"giant_panda": {
"00040": {},
"00075": {},
"00105": {},
"00135": {}
}
},
"01b80e8e1a": {
"zebra": {
"00015": {},
"00020": {
"1": {
"ref_exp": "The zebra strides forward purposefully across the open terrain.",
"caption": "The adult zebra strides forward purposefully, moving across the open terrain, while the foal follows closely behind, lifting its legs in a deliberate trotting motion.",
"cat_name": "zebra",
"file_name": "00020",
"isValid": true
},
"2": {
"ref_exp": "NONE",
"caption": "The adult zebra strides forward purposefully, moving across the open terrain, while the foal follows closely behind, lifting its legs in a deliberate trotting motion.",
"cat_name": "zebra",
"file_name": "00020",
"isValid": false
}
},
"00035": {
"1": {
"ref_exp": "The zebra strides forward across the grassy terrain.",
"caption": "The adult zebra strides forward across the grassy terrain, while the smaller zebra closely trails behind, its legs moving in a synchronized effort to keep pace.",
"cat_name": "zebra",
"file_name": "00035",
"isValid": true
},
"2": {
"ref_exp": "NONE",
"caption": "The adult zebra strides forward across the grassy terrain, while the smaller zebra closely trails behind, its legs moving in a synchronized effort to keep pace.",
"cat_name": "zebra",
"file_name": "00035",
"isValid": false
}
},
"00045": {}
}
},
"01baa5a4e1": {},
"01c3111683": {
"whale": {
"00020": {
"1": {
"ref_exp": "The whale closely following beside another whale while maintaining a steady position in the water.",
"caption": "One whale swims diagonally with its body partially curved, while a smaller whale closely follows beside it, maintaining a steady position in the water.",
"cat_name": "whale",
"file_name": "00020",
"isValid": false
}
},
"00060": {
"1": {
"ref_exp": "The whale arching its body and angling its fluke downward.",
"caption": "One whale is arching its body and angling its fluke downward while interacting closely with the other whale, which is extending its pectoral fin and positioning its body parallel, creating a dynamic underwater interaction.",
"cat_name": "whale",
"file_name": "00060",
"isValid": false
}
},
"00115": {
"1": {
"ref_exp": "The whale vertically positioning itself.",
"caption": "A whale vertically positions itself, while another smaller whale swims closely beneath it, aligning its body along the larger whale\u2019s underside.",
"cat_name": "whale",
"file_name": "00115",
"isValid": false
}
},
"00130": {
"1": {
"ref_exp": "The whale moving its tail in an upward motion near the surface of the water.",
"caption": "One whale moves its tail in an upward motion near the surface of the water, while another swims closely underneath, maintaining proximity in the blue ocean environment.",
"cat_name": "whale",
"file_name": "00130",
"isValid": false
}
}
}
},
"01c4cb5ffe": {
"person": {
"00010": {},
"00080": {
"1": {
"ref_exp": "The person in a red outfit descending the snowy slope with skis angled outward while using ski poles to maneuver through a turn and producing a spray of snow.",
"caption": "The skier in the foreground, dressed in a red outfit, is descending the snowy slope with skis angled outward, using ski poles to maneuver through the turn while producing a spray of snow. In the background, a second individual is skiing downhill in a controlled trajectory, keeping distance from the foreground skier.",
"cat_name": "person",
"file_name": "00080",
"isValid": true
},
"3": {
"ref_exp": "The person skiing downhill in the background with a controlled trajectory.",
"caption": "The skier in the foreground, dressed in a red outfit, is descending the snowy slope with skis angled outward, using ski poles to maneuver through the turn while producing a spray of snow. In the background, a second individual is skiing downhill in a controlled trajectory, keeping distance from the foreground skier.",
"cat_name": "person",
"file_name": "00080",
"isValid": false
}
},
"00115": {},
"00140": {}
}
},
"01c76f0a82": {
"sedan": {
"00010": {},
"00035": {},
"00065": {},
"00070": {}
}
},
"01c783268c": {
"person": {
"00020": {
"1": {
"ref_exp": "The ape walking beside the person while holding their arm in an upright position.",
"caption": "The person grips the arm of the orangutan while moving forward, and the orangutan walks beside the person, holding their arm in an upright position amidst the forest vegetation.",
"cat_name": "ape",
"file_name": "00020",
"isValid": true
},
"2": {
"ref_exp": "The person grips the arm of the orangutan while moving forward.",
"caption": "The person grips the arm of the orangutan while moving forward, and the orangutan walks beside the person, holding their arm in an upright position amidst the forest vegetation.",
"cat_name": "person",
"file_name": "00020",
"isValid": true
}
},
"00070": {
"1": {
"ref_exp": "The ape bending forward slightly while extending one arm upward and clutching a branch.",
"caption": "The person on the left stands with their back partially turned to the camera while wearing a backpack, positioned near the orangutan. The orangutan on the right bends forward slightly, extending one arm upward and clutching a branch or object with a visible grip, while its other arm hangs down near its side. It moves amidst the foliage near a dirt pathway.",
"cat_name": "ape",
"file_name": "00070",
"isValid": true
},
"2": {
"ref_exp": "The person stands with their back partially turned to the camera while wearing a backpack.",
"caption": "The person on the left stands with their back partially turned to the camera while wearing a backpack, positioned near the orangutan. The orangutan on the right bends forward slightly, extending one arm upward and clutching a branch or object with a visible grip, while its other arm hangs down near its side. It moves amidst the foliage near a dirt pathway.",
"cat_name": "person",
"file_name": "00070",
"isValid": false
}
},
"00090": {
"1": {
"ref_exp": "NONE",
"caption": "A person is walking through dense vegetation, navigating between trees and bushes while carrying a backpack. An orangutan is crouching low amidst the greenery, moving along the forest floor.",
"cat_name": "ape",
"file_name": "00090",
"isValid": false
},
"2": {
"ref_exp": "NONE",
"caption": "A person is walking through dense vegetation, navigating between trees and bushes while carrying a backpack. An orangutan is crouching low amidst the greenery, moving along the forest floor.",
"cat_name": "person",
"file_name": "00090",
"isValid": false
}
},
"00160": {
"1": {
"ref_exp": "The ape gripping the person\u2019s hand with one hand while moving forward.",
"caption": "A person wearing a backpack holds the hand of an orangutan as they walk together along a dirt path surrounded by greenery. The orangutan uses one hand to grip the person\u2019s hand while moving forward.",
"cat_name": "ape",
"file_name": "00160",
"isValid": false
},
"2": {
"ref_exp": "The person holding the hand of an orangutan while walking along a dirt path.",
"caption": "A person wearing a backpack holds the hand of an orangutan as they walk together along a dirt path surrounded by greenery. The orangutan uses one hand to grip the person\u2019s hand while moving forward.",
"cat_name": "person",
"file_name": "00160",
"isValid": false
}
}
},
"ape": {
"00020": {},
"00070": {},
"00090": {},
"00160": {
"1": {
"ref_exp": "The ape grasping the hand of a person while moving forward along the dirt path.",
"caption": "The orangutan is grasping the hand of a person while moving forward along a dirt path, surrounded by greenery.",
"cat_name": "ape",
"file_name": "00160",
"isValid": false
},
"2": {
"ref_exp": "The person grasping the hand of the orangutan.",
"caption": "The orangutan is grasping the hand of a person while moving forward along a dirt path, surrounded by greenery.",
"cat_name": "person",
"file_name": "00160",
"isValid": false
}
}
}
},
"01e64dd36a": {
"cow": {
"00020": {
"1": {
"ref_exp": "NONE",
"caption": "One cow lies on its back with legs extended and splayed in an unnatural position, while three other cows stand stationary at a distance, observing the scene.",
"cat_name": "cow",
"file_name": "00020",
"isValid": false
},
"2": {
"ref_exp": "The cow stands stationary and observes the scene.",
"caption": "One cow lies on its back with legs extended and splayed in an unnatural position, while three other cows stand stationary at a distance, observing the scene.",
"cat_name": "cow",
"file_name": "00020",
"isValid": false
},
"3": {
"ref_exp": "The cow lying on its back with its legs extended and splayed in an unnatural position.",
"caption": "One cow lies on its back with legs extended and splayed in an unnatural position, while three other cows stand stationary at a distance, observing the scene.",
"cat_name": "cow",
"file_name": "00020",
"isValid": false
}
},
"00030": {
"1": {
"ref_exp": "NONE",
"caption": "One cow lies fully stretched out on the grass, remaining motionless. Another cow kneels on its front legs while lowering its body toward the ground. A third cow stands upright, slightly angled, observing the scene without moving. Two additional cows stand nearby, slightly apart, showing no active movements or interactions.",
"cat_name": "cow",
"file_name": "00030",
"isValid": false
},
"2": {
"ref_exp": "NONE",
"caption": "One cow lies fully stretched out on the grass, remaining motionless. Another cow kneels on its front legs while lowering its body toward the ground. A third cow stands upright, slightly angled, observing the scene without moving. Two additional cows stand nearby, slightly apart, showing no active movements or interactions.",
"cat_name": "cow",
"file_name": "00030",
"isValid": false
},
"3": {
"ref_exp": "The cow kneeling on its front legs while lowering its body toward the ground.",
"caption": "One cow lies fully stretched out on the grass, remaining motionless. Another cow kneels on its front legs while lowering its body toward the ground. A third cow stands upright, slightly angled, observing the scene without moving. Two additional cows stand nearby, slightly apart, showing no active movements or interactions.",
"cat_name": "cow",
"file_name": "00030",
"isValid": false
}
},
"00045": {
"1": {
"ref_exp": "NONE",
"caption": "One cow lies motionless on the grass, while another appears to hover mid-air without visible support. A third cow, seemingly altered, maneuvers awkwardly with extended appendages resembling additional legs. Two other cows stand upright, observing the scene.",
"cat_name": "cow",
"file_name": "00045",
"isValid": false
},
"2": {
"ref_exp": "NONE",
"caption": "One cow lies motionless on the grass, while another appears to hover mid-air without visible support. A third cow, seemingly altered, maneuvers awkwardly with extended appendages resembling additional legs. Two other cows stand upright, observing the scene.",
"cat_name": "cow",
"file_name": "00045",
"isValid": false
},
"3": {
"ref_exp": "The cow that appears to hover mid-air without visible support.",
"caption": "One cow lies motionless on the grass, while another appears to hover mid-air without visible support. A third cow, seemingly altered, maneuvers awkwardly with extended appendages resembling additional legs. Two other cows stand upright, observing the scene.",
"cat_name": "cow",
"file_name": "00045",
"isValid": true
}
},
"00060": {}
}
},
"01ed275c6e": {
"giraffe": {
"00025": {
"1": {
"ref_exp": "The giraffe stretches its neck upward to reach the branches of the tree.",
"caption": "The giraffe on the left stretches its neck upward to reach the branches of the tree, while the giraffe on the right positions itself near the tree trunk, lowering its head to inspect the area close to the ground.",
"cat_name": "giraffe",
"file_name": "00025",
"isValid": false
},
"2": {
"ref_exp": "The giraffe near the tree trunk lowers its head to inspect the area close to the ground.",
"caption": "The giraffe on the left stretches its neck upward to reach the branches of the tree, while the giraffe on the right positions itself near the tree trunk, lowering its head to inspect the area close to the ground.",
"cat_name": "giraffe",
"file_name": "00025",
"isValid": false
}
},
"00030": {
"1": {
"ref_exp": "The giraffe stretches its neck upward toward the tree canopy, opening its mouth to grasp foliage.",
"caption": "The giraffe on the left stretches its neck upward toward the tree canopy, opening its mouth to grasp foliage. The giraffe on the right stands partially obscured behind the tree trunk, its head lowered, possibly interacting with the trunk or ground.",
"cat_name": "giraffe",
"file_name": "00030",
"isValid": false
},
"2": {
"ref_exp": "The giraffe behind the tree trunk with its head lowered, possibly interacting with the trunk or ground.",
"caption": "The giraffe on the left stretches its neck upward toward the tree canopy, opening its mouth to grasp foliage. The giraffe on the right stands partially obscured behind the tree trunk, its head lowered, possibly interacting with the trunk or ground.",
"cat_name": "giraffe",
"file_name": "00030",
"isValid": true
}
},
"00065": {
"1": {
"ref_exp": "The giraffe stretches its neck upward, reaching towards the branches of a tree laden with leaves.",
"caption": "The giraffe in the foreground stretches its neck upward, reaching towards the branches of a tree laden with leaves. In the background, another giraffe positions itself near a tree trunk, partially concealed by foliage, appearing actively engaged in browsing.",
"cat_name": "giraffe",
"file_name": "00065",
"isValid": false
},
"2": {
"ref_exp": "The giraffe in the red box stands near a tree trunk, partially concealed by foliage, appearing actively engaged in browsing.",
"caption": "The giraffe in the foreground stretches its neck upward, reaching towards the branches of a tree laden with leaves. In the background, another giraffe positions itself near a tree trunk, partially concealed by foliage, appearing actively engaged in browsing.",
"cat_name": "giraffe",
"file_name": "00065",
"isValid": true
}
},
"00085": {
"1": {
"ref_exp": "The giraffe stretches its neck upward while extending its tongue to grasp leaves from the overhanging branches of the tree.",
"caption": "The giraffe on the left stretches its neck upward while extending its tongue to grasp leaves from the overhanging branches of the tree. The giraffe on the right walks beside a tree, keeping its head level and angled slightly away from the foliage.",
"cat_name": "giraffe",
"file_name": "00085",
"isValid": false
},
"2": {
"ref_exp": "The giraffe walks beside a tree, keeping its head level and angled slightly away from the foliage.",
"caption": "The giraffe on the left stretches its neck upward while extending its tongue to grasp leaves from the overhanging branches of the tree. The giraffe on the right walks beside a tree, keeping its head level and angled slightly away from the foliage.",
"cat_name": "giraffe",
"file_name": "00085",
"isValid": false
}
}
}
},
"01ff60d1fa": {
"lizard": {
"00015": {},
"00070": {},
"00110": {},
"00150": {}
}
},
"020cd28cd2": {
"person": {
"00025": {},
"00060": {},
"00085": {},
"00125": {}
}
},
"02264db755": {
"fox": {
"00045": {},
"00060": {},
"00120": {},
"00160": {}
}
},
"0248626d9a": {
"train": {
"00015": {},
"00035": {},
"00050": {},
"00065": {}
}
},
"02668dbffa": {
"frog": {
"00020": {},
"00060": {},
"00075": {},
"00125": {}
}
},
"0274193026": {
"person": {
"00030": {},
"00055": {},
"00085": {
"2": {
"ref_exp": "The person leaping into the air while balancing on a skateboard and angling it mid-motion.",
"caption": "A person in the foreground leaps into the air while balancing on a skateboard, angling it mid-motion in an underground space. Another person in the background stands still, observing the action from a distance.",
"cat_name": "person",
"file_name": "00085",
"isValid": true
}
},
"00120": {
"2": {
"ref_exp": "The person balancing on a skateboard mid-trick, with one foot pressing down on the board and the other lifted.",
"caption": "A person in the foreground is balancing on a skateboard mid-trick, with one foot pressing down on the board and the other lifted. A person in the background is standing still and observing the action.",
"cat_name": "person",
"file_name": "00120",
"isValid": true
}
}
}
},
"02d28375aa": {
"fox": {
"00010": {},
"00050": {},
"00125": {},
"00150": {}
}
},
"031ccc99b1": {
"person": {
"00015": {
"1": {
"ref_exp": "The person gestures assertively with their hands.",
"caption": "One individual in a red and blue outfit gestures assertively with his hands while facing another man. The man with curly hair holds a microphone in one hand and extends his other hand toward a third individual, who is dressed in white attire and appears to be recoiling backward. A fourth person reaches in from the side, grabbing the arm of the man in the red and blue outfit.",
"cat_name": "person",
"file_name": "00015",
"isValid": false
},
"2": {
"ref_exp": "The person holding a microphone in one hand and extending their other hand toward an individual in white attire.",
"caption": "One individual in a red and blue outfit gestures assertively with his hands while facing another man. The man with curly hair holds a microphone in one hand and extends his other hand toward a third individual, who is dressed in white attire and appears to be recoiling backward. A fourth person reaches in from the side, grabbing the arm of the man in the red and blue outfit.",
"cat_name": "person",
"file_name": "00015",
"isValid": false
},
"3": {
"ref_exp": "The person recoiling backward while dressed in white attire.",
"caption": "One individual in a red and blue outfit gestures assertively with his hands while facing another man. The man with curly hair holds a microphone in one hand and extends his other hand toward a third individual, who is dressed in white attire and appears to be recoiling backward. A fourth person reaches in from the side, grabbing the arm of the man in the red and blue outfit.",
"cat_name": "person",
"file_name": "00015",
"isValid": false
}
},
"00025": {
"1": {
"ref_exp": "The person reaches out with their hand toward another individual.",
"caption": "The man on the left reaches out with his hand toward another individual. The central figure holds a microphone near his chest with one hand and appears to be mid-sentence or vocalizing. The man on the right cradles a small monkey in one arm while gesturing with his free hand, his facial expression tense or animated.",
"cat_name": "person",
"file_name": "00025",
"isValid": false
},
"2": {
"ref_exp": "The person holding a microphone near his chest and appearing to be mid-sentence or vocalizing.",
"caption": "The man on the left reaches out with his hand toward another individual. The central figure holds a microphone near his chest with one hand and appears to be mid-sentence or vocalizing. The man on the right cradles a small monkey in one arm while gesturing with his free hand, his facial expression tense or animated.",
"cat_name": "person",
"file_name": "00025",
"isValid": false
},
"3": {
"ref_exp": "The person cradles a small monkey in one arm while gesturing with his free hand.",
"caption": "The man on the left reaches out with his hand toward another individual. The central figure holds a microphone near his chest with one hand and appears to be mid-sentence or vocalizing. The man on the right cradles a small monkey in one arm while gesturing with his free hand, his facial expression tense or animated.",
"cat_name": "person",
"file_name": "00025",
"isValid": false
}
},
"00045": {
"1": {},
"2": {},
"3": {}
},
"00075": {
"1": {
"ref_exp": "The person in the orange shirt reaches out and places their hand on the arm of the person wearing a red and yellow outfit.",
"caption": "The man in the orange shirt reaches out and places his hand on the arm of the man wearing a red and yellow outfit. The man in the red and yellow outfit gestures forward with an extended arm while holding a microphone in the other hand. The man in the suit stands behind them, observing the interaction. The man in the black jacket stands to the side, leaning slightly forward while extending his hand towards the man with the microphone.",
"cat_name": "person",
"file_name": "00075",
"isValid": false
},
"2": {
"ref_exp": "The person gestures forward with an extended arm while holding a microphone in the other hand.",
"caption": "The man in the orange shirt reaches out and places his hand on the arm of the man wearing a red and yellow outfit. The man in the red and yellow outfit gestures forward with an extended arm while holding a microphone in the other hand. The man in the suit stands behind them, observing the interaction. The man in the black jacket stands to the side, leaning slightly forward while extending his hand towards the man with the microphone.",
"cat_name": "person",
"file_name": "00075",
"isValid": true
},
"3": {
"ref_exp": "The person gestures forward with an extended arm while holding a microphone in the other hand.",
"caption": "The man in the orange shirt reaches out and places his hand on the arm of the man wearing a red and yellow outfit. The man in the red and yellow outfit gestures forward with an extended arm while holding a microphone in the other hand. The man in the suit stands behind them, observing the interaction. The man in the black jacket stands to the side, leaning slightly forward while extending his hand towards the man with the microphone.",
"cat_name": "person",
"file_name": "00075",
"isValid": true
}
}
}
},
"0321b18c10": {
"elephant": {
"00020": {
"1": {
"ref_exp": "The person sitting on the right-side elephant's wooden saddle while the elephant slightly turns its head.",
"caption": "The elephant on the left is standing still, supporting two people sitting securely in a wooden saddle on its back. The elephant on the right is slightly turning its head to the side while carrying two riders seated in a similar saddle.",
"cat_name": "person",
"file_name": "00020",
"isValid": false
},
"2": {
"ref_exp": "The person sitting on the wooden saddle of the elephant on the right while holding onto the side of the seat.",
"caption": "The elephant on the left is standing still, supporting two people sitting securely in a wooden saddle on its back. The elephant on the right is slightly turning its head to the side while carrying two riders seated in a similar saddle.",
"cat_name": "person",
"file_name": "00020",
"isValid": false
},
"3": {
"ref_exp": "The elephant is slightly turning its head to the side while carrying two riders seated in a wooden saddle on its back.",
"caption": "The elephant on the left is standing still, supporting two people sitting securely in a wooden saddle on its back. The elephant on the right is slightly turning its head to the side while carrying two riders seated in a similar saddle.",
"cat_name": "elephant",
"file_name": "00020",
"isValid": false
}
},
"00030": {
"1": {
"ref_exp": "The person seated directly on the elephant's back and gripping its neck.",
"caption": "The elephant on the left strides forward steadily while carrying two individuals seated in a wooden saddle attached to its back. The elephant on the right moves alongside, supporting two riders, one seated directly on its back and gripping its neck.",
"cat_name": "person",
"file_name": "00030",
"isValid": false
},
"2": {
"ref_exp": "The person seated in a wooden saddle attached to the back of the elephant on the left.",
"caption": "The elephant on the left strides forward steadily while carrying two individuals seated in a wooden saddle attached to its back. The elephant on the right moves alongside, supporting two riders, one seated directly on its back and gripping its neck.",
"cat_name": "person",
"file_name": "00030",
"isValid": true
},
"3": {
"ref_exp": "The elephant moves alongside while supporting two riders, one seated directly on its back and gripping its neck.",
"caption": "The elephant on the left strides forward steadily while carrying two individuals seated in a wooden saddle attached to its back. The elephant on the right moves alongside, supporting two riders, one seated directly on its back and gripping its neck.",
"cat_name": "elephant",
"file_name": "00030",
"isValid": true
}
},
"00040": {
"1": {
"ref_exp": "The person seated on the elephant on the right, holding onto the seat while the elephant swings its trunk upward.",
"caption": "The elephant on the left moves steadily forward with a large seat carrying two individuals, while the elephant on the right swings its trunk upward as it carries another set of riders through a wooded area.",
"cat_name": "person",
"file_name": "00040",
"isValid": true
},
"2": {
"ref_exp": "The person sitting on the seat of the elephant on the right as it swings its trunk upward.",
"caption": "The elephant on the left moves steadily forward with a large seat carrying two individuals, while the elephant on the right swings its trunk upward as it carries another set of riders through a wooded area.",
"cat_name": "person",
"file_name": "00040",
"isValid": false
},
"3": {
"ref_exp": "The elephant swings its trunk upward while carrying riders through a wooded area.",
"caption": "The elephant on the left moves steadily forward with a large seat carrying two individuals, while the elephant on the right swings its trunk upward as it carries another set of riders through a wooded area.",
"cat_name": "elephant",
"file_name": "00040",
"isValid": false
}
},
"00075": {
"1": {
"ref_exp": "The person seated on the wooden saddle on the elephant in the foreground, with one arm resting on the saddle.",
"caption": "The elephant in the foreground lifts its trunk slightly outward as it moves through the forested area, carrying two individuals seated on a wooden saddle secured on its back. The elephant in the background walks closely behind, with its head partially visible, while also carrying a seated rider.",
"cat_name": "person",
"file_name": "00075",
"isValid": false
},
"2": {
"ref_exp": "The person seated on the wooden saddle secured on the elephant in the foreground.",
"caption": "The elephant in the foreground lifts its trunk slightly outward as it moves through the forested area, carrying two individuals seated on a wooden saddle secured on its back. The elephant in the background walks closely behind, with its head partially visible, while also carrying a seated rider.",
"cat_name": "person",
"file_name": "00075",
"isValid": true
},
"3": {
"ref_exp": "The elephant lifts its trunk slightly outward as it moves through the forested area, carrying two individuals seated on a wooden saddle secured on its back.",
"caption": "The elephant in the foreground lifts its trunk slightly outward as it moves through the forested area, carrying two individuals seated on a wooden saddle secured on its back. The elephant in the background walks closely behind, with its head partially visible, while also carrying a seated rider.",
"cat_name": "elephant",
"file_name": "00075",
"isValid": false
}
}
},
"person": {
"00020": {
"1": {
"ref_exp": "The person in a dark-colored top places one hand on the seat frame and looks forward while maintaining a steady posture.",
"caption": "The person in a white shirt on the left sits upright while holding onto the edge of the wooden seat on the elephant's back. The child seated next to them looks downward, with their hands resting on their lap. On the adjacent elephant, the person in a red shirt grips the side rail of the seat with one hand while sitting upright. The person beside them, wearing a dark-colored top, places one hand on the seat frame and looks forward, maintaining a steady posture. Both elephants walk through the forested area.",
"cat_name": "person",
"file_name": "00020",
"isValid": false
},
"2": {
"ref_exp": "The person in a red shirt grips the side rail of the seat with one hand while sitting upright.",
"caption": "The person in a white shirt on the left sits upright while holding onto the edge of the wooden seat on the elephant's back. The child seated next to them looks downward, with their hands resting on their lap. On the adjacent elephant, the person in a red shirt grips the side rail of the seat with one hand while sitting upright. The person beside them, wearing a dark-colored top, places one hand on the seat frame and looks forward, maintaining a steady posture. Both elephants walk through the forested area.",
"cat_name": "person",
"file_name": "00020",
"isValid": true
},
"3": {
"ref_exp": "The elephant carrying the person in a red shirt, who grips the side rail of the seat with one hand while sitting upright.",
"caption": "The person in a white shirt on the left sits upright while holding onto the edge of the wooden seat on the elephant's back. The child seated next to them looks downward, with their hands resting on their lap. On the adjacent elephant, the person in a red shirt grips the side rail of the seat with one hand while sitting upright. The person beside them, wearing a dark-colored top, places one hand on the seat frame and looks forward, maintaining a steady posture. Both elephants walk through the forested area.",
"cat_name": "elephant",
"file_name": "00020",
"isValid": true
}
},
"00030": {
"1": {
"ref_exp": "The person sitting side-saddle directly on the back of an elephant, using both hands to hold onto its head.",
"caption": "Two individuals on the left sit upright in a wooden saddle on the back of an elephant, one gripping the armrest while the other maintains a relaxed posture with hands resting on their lap. In the foreground on the right, a person sits side-saddle directly on the back of another elephant, using both hands to hold onto its head. Another individual sits in a wooden saddle behind them, resting one hand on the railing for support.",
"cat_name": "person",
"file_name": "00030",
"isValid": false
},
"2": {
"ref_exp": "The person sitting upright in a wooden saddle on the back of an elephant, gripping the armrest with one hand.",
"caption": "Two individuals on the left sit upright in a wooden saddle on the back of an elephant, one gripping the armrest while the other maintains a relaxed posture with hands resting on their lap. In the foreground on the right, a person sits side-saddle directly on the back of another elephant, using both hands to hold onto its head. Another individual sits in a wooden saddle behind them, resting one hand on the railing for support.",
"cat_name": "person",
"file_name": "00030",
"isValid": true
},
"3": {
"ref_exp": "The elephant with a person sitting side-saddle directly on its back, using both hands to hold onto its head.",
"caption": "Two individuals on the left sit upright in a wooden saddle on the back of an elephant, one gripping the armrest while the other maintains a relaxed posture with hands resting on their lap. In the foreground on the right, a person sits side-saddle directly on the back of another elephant, using both hands to hold onto its head. Another individual sits in a wooden saddle behind them, resting one hand on the railing for support.",
"cat_name": "elephant",
"file_name": "00030",
"isValid": false
}
},
"00040": {
"1": {
"ref_exp": "The person gripping the elephant\u2019s skin with both hands.",
"caption": "Two individuals seated on the left elephant are holding onto the mounted seat structure while one person adjusts their sitting position. On the right elephant, a person in a red shirt uses their left hand to steady themselves on the seat, while the individual sitting at the front grips the elephant\u2019s skin with both hands.",
"cat_name": "person",
"file_name": "00040",
"isValid": true
},
"2": {
"ref_exp": "The person using their left hand to steady themselves on the seat.",
"caption": "Two individuals seated on the left elephant are holding onto the mounted seat structure while one person adjusts their sitting position. On the right elephant, a person in a red shirt uses their left hand to steady themselves on the seat, while the individual sitting at the front grips the elephant\u2019s skin with both hands.",
"cat_name": "person",
"file_name": "00040",
"isValid": false
},
"3": {
"ref_exp": "The elephant on which a person in a red shirt steadies themselves on the mounted seat with their left hand while another individual grips the elephant's skin at the front.",
"caption": "Two individuals seated on the left elephant are holding onto the mounted seat structure while one person adjusts their sitting position. On the right elephant, a person in a red shirt uses their left hand to steady themselves on the seat, while the individual sitting at the front grips the elephant\u2019s skin with both hands.",
"cat_name": "elephant",
"file_name": "00040",
"isValid": true
}
},
"00075": {
"1": {
"ref_exp": "The person sitting directly on the elephant's back with one hand resting on the elephant and their legs dangling freely on either side.",
"caption": "A man sits on a wooden howdah placed on the elephant's back, holding onto the side rail while maintaining an upright position. Beside him, a woman sits directly on the elephant's back without a saddle, with one hand resting on the elephant while her legs dangle freely on either side.",
"cat_name": "person",
"file_name": "00075",
"isValid": true
},
"2": {
"ref_exp": "The person sitting on a wooden howdah placed on the elephant's back while holding onto the side rail and maintaining an upright position.",
"caption": "A man sits on a wooden howdah placed on the elephant's back, holding onto the side rail while maintaining an upright position. Beside him, a woman sits directly on the elephant's back without a saddle, with one hand resting on the elephant while her legs dangle freely on either side.",
"cat_name": "person",
"file_name": "00075",
"isValid": true
},
"3": {
"ref_exp": "The elephant with a wooden howdah on its back carrying a seated man, while a woman sits directly on its back without a saddle, with her legs dangling on either side.",
"caption": "A man sits on a wooden howdah placed on the elephant's back, holding onto the side rail while maintaining an upright position. Beside him, a woman sits directly on the elephant's back without a saddle, with one hand resting on the elephant while her legs dangle freely on either side.",
"cat_name": "elephant",
"file_name": "00075",
"isValid": false
}
}
}
},
"0348a45bca": {
"fish": {
"00040": {},
"00055": {},
"00125": {},
"00140": {}
}
},
"0355e92655": {
"boat": {
"00010": {},
"00035": {
"2": {
"ref_exp": "The person gripping a paddle while partially submerged in the water, executing a rolling maneuver.",
"caption": "A yellow kayak is capsized with the paddler gripping the paddle while partially submerged in the water, executing a rolling maneuver with water splashing around.",
"cat_name": "person",
"file_name": "00035",
"isValid": true
},
"3": {
"ref_exp": "The boat executing a rolling maneuver while capsized, with the paddler gripping the paddle and partially submerged in the water, as water splashes around.",
"caption": "A yellow kayak is capsized with the paddler gripping the paddle while partially submerged in the water, executing a rolling maneuver with water splashing around.",
"cat_name": "boat",
"file_name": "00035",
"isValid": false
}
},
"00050": {
"2": {
"ref_exp": "The person gripping a paddle while leveraging it against the water's surface in an attempt to roll the kayak upright.",
"caption": "A capsized yellow kayak is partially submerged in the water as the kayaker, gripping a paddle, leverages it against the water's surface while attempting to roll the kayak upright.",
"cat_name": "person",
"file_name": "00050",
"isValid": true
},
"3": {
"ref_exp": "The boat partially submerged in the water while being leveraged by the kayaker attempting to roll it upright.",
"caption": "A capsized yellow kayak is partially submerged in the water as the kayaker, gripping a paddle, leverages it against the water's surface while attempting to roll the kayak upright.",
"cat_name": "boat",
"file_name": "00050",
"isValid": false
}
},
"00055": {
"2": {
"ref_exp": "The person gripping a paddle while emerging from the water.",
"caption": "A person grips a paddle while emerging from the water, attempting to flip an overturned yellow kayak back upright.",
"cat_name": "person",
"file_name": "00055",
"isValid": true
},
"3": {
"ref_exp": "The boat being flipped upright by a person gripping a paddle while emerging from the water.",
"caption": "A person grips a paddle while emerging from the water, attempting to flip an overturned yellow kayak back upright.",
"cat_name": "boat",
"file_name": "00055",
"isValid": false
}
}
},
"person": {
"00010": {
"2": {
"ref_exp": "The person gripping a paddle in both hands while plunging one end into the water and angling their upper body forward.",
"caption": "A person seated in a yellow kayak grips a paddle in both hands, plunging one end into the water while angling their upper body forward. The kayak features a blue helmet secured on its exterior and additional items strapped to its surface.",
"cat_name": "person",
"file_name": "00010",
"isValid": false
},
"3": {
"ref_exp": "The boat with a seated person gripping a paddle in both hands, angling their upper body forward, and featuring a blue helmet secured on its exterior with additional items strapped to its surface.",
"caption": "A person seated in a yellow kayak grips a paddle in both hands, plunging one end into the water while angling their upper body forward. The kayak features a blue helmet secured on its exterior and additional items strapped to its surface.",
"cat_name": "boat",
"file_name": "00010",
"isValid": true
}
},
"00035": {
"2": {
"ref_exp": "The person grips a paddle with both hands while stabilizing the overturned yellow kayak in the water.",
"caption": "A person grips a paddle with both hands while partially submerged in water, forcefully maneuvering it against the surface to stabilize the overturned yellow kayak.",
"cat_name": "person",
"file_name": "00035",
"isValid": true
},
"3": {
"ref_exp": "The boat that is overturned and being stabilized by a person gripping a paddle with both hands.",
"caption": "A person grips a paddle with both hands while partially submerged in water, forcefully maneuvering it against the surface to stabilize the overturned yellow kayak.",
"cat_name": "boat",
"file_name": "00035",
"isValid": true
}
},
"00050": {
"2": {
"ref_exp": "The person gripping a paddle with one hand while leaning over the partially capsized yellow kayak.",
"caption": "One individual, wearing a yellow jacket, leans over the partially capsized yellow kayak while gripping a paddle with one hand and adjusting their position with the other. Another person, partially submerged and wearing a white helmet, pushes water aside with one hand, seemingly assisting with stabilizing or maneuvering near the kayak.",
"cat_name": "person",
"file_name": "00050",
"isValid": false
},
"3": {
"ref_exp": "The partially capsized yellow boat being leaned over by an individual wearing a yellow jacket while gripping a paddle.",
"caption": "One individual, wearing a yellow jacket, leans over the partially capsized yellow kayak while gripping a paddle with one hand and adjusting their position with the other. Another person, partially submerged and wearing a white helmet, pushes water aside with one hand, seemingly assisting with stabilizing or maneuvering near the kayak.",
"cat_name": "boat",
"file_name": "00050",
"isValid": true
}
},
"00055": {
"2": {
"ref_exp": "The person grasping a double-bladed paddle and thrusting it downward, creating splashes near the kayak.",
"caption": "One person grips the edge of the overturned kayak while partially submerged in the water, extending their arm to hold onto the vessel. Another person, positioned upright in the water, firmly grasps a double-bladed paddle and thrusts it downward, creating splashes as they maneuver near the kayak.",
"cat_name": "person",
"file_name": "00055",
"isValid": true
},
"3": {
"ref_exp": "The boat partially overturned in the water while being gripped at the edge by a person.",
"caption": "One person grips the edge of the overturned kayak while partially submerged in the water, extending their arm to hold onto the vessel. Another person, positioned upright in the water, firmly grasps a double-bladed paddle and thrusts it downward, creating splashes as they maneuver near the kayak.",
"cat_name": "boat",
"file_name": "00055",
"isValid": false
}
}
}
},
"0358b938c1": {
"elephant": {
"00155": {
"1": {
"ref_exp": "The elephant extending its trunk toward the water's surface while standing partially submerged near dense vegetation.",
"caption": "An elephant on the left extends its trunk toward the water's surface, appearing to interact with or inspect the water, while standing partially submerged near dense vegetation. Another elephant, partially visible on the right, stands still in the water without a clearly defined action.",
"cat_name": "elephant",
"file_name": "00155",
"isValid": true
},
"2": {},
"3": {},
"4": {
"ref_exp": "NONE",
"caption": "An elephant on the left extends its trunk toward the water's surface, appearing to interact with or inspect the water, while standing partially submerged near dense vegetation. Another elephant, partially visible on the right, stands still in the water without a clearly defined action.",
"cat_name": "elephant",
"file_name": "00155",
"isValid": false
}
},
"00170": {
"1": {
"ref_exp": "The elephant lowers its trunk towards the water, appearing to interact with the vegetation at the surface.",
"caption": "The elephant on the left splashes water into the air with its trunk, while the elephant on the right lowers its trunk towards the water, appearing to interact with the vegetation at the surface.",
"cat_name": "elephant",
"file_name": "00170",
"isValid": true
},
"2": {
"ref_exp": "The elephant splashing water into the air with its trunk.",
"caption": "The elephant on the left splashes water into the air with its trunk, while the elephant on the right lowers its trunk towards the water, appearing to interact with the vegetation at the surface.",
"cat_name": "elephant",
"file_name": "00170",
"isValid": false
},
"3": {},
"4": {}
},
"00185": {
"1": {
"ref_exp": "The elephant extending its trunk outward over the water, interacting with its surroundings.",
"caption": "One elephant is spraying water from its trunk in an arcing motion, creating a splash, while the other extends its trunk outward over the water, interacting with its surroundings.",
"cat_name": "elephant",
"file_name": "00185",
"isValid": false
},
"2": {
"ref_exp": "The elephant spraying water from its trunk in an arcing motion, creating a splash.",
"caption": "One elephant is spraying water from its trunk in an arcing motion, creating a splash, while the other extends its trunk outward over the water, interacting with its surroundings.",
"cat_name": "elephant",
"file_name": "00185",
"isValid": false
},
"3": {},
"4": {}
},
"00200": {
"1": {
"ref_exp": "The elephant extends its trunk outward, releasing a stream of water into the air.",
"caption": "The central elephant sprays a steady stream of water from its raised trunk, creating a splash in the pond below, while the elephant on the right extends its trunk outward, releasing a separate water stream into the air. The elephant on the left partially emerges from the water, holding its trunk low with a small splash visible nearby.",
"cat_name": "elephant",
"file_name": "00200",
"isValid": false
},
"2": {
"ref_exp": "The elephant spraying a steady stream of water from its raised trunk, creating a splash in the pond below.",
"caption": "The central elephant sprays a steady stream of water from its raised trunk, creating a splash in the pond below, while the elephant on the right extends its trunk outward, releasing a separate water stream into the air. The elephant on the left partially emerges from the water, holding its trunk low with a small splash visible nearby.",
"cat_name": "elephant",
"file_name": "00200",
"isValid": false
},
"3": {
"ref_exp": "NONE",
"caption": "The central elephant sprays a steady stream of water from its raised trunk, creating a splash in the pond below, while the elephant on the right extends its trunk outward, releasing a separate water stream into the air. The elephant on the left partially emerges from the water, holding its trunk low with a small splash visible nearby.",
"cat_name": "elephant",
"file_name": "00200",
"isValid": false
},
"4": {}
}
}
},
"0368107cf1": {
"person": {
"00155": {
"1": {
"ref_exp": "A person in a green uniform standing nearby and looking up at the giraffe.",
"caption": "A giraffe extends its neck upward and angles its head toward the top of the enclosure. A person in a green uniform stands nearby, looking up at the giraffe while remaining positioned within the enclosure's vicinity. Another person in a dark cap observes the scene from outside the enclosure.",
"cat_name": "person",
"file_name": "00155",
"isValid": true
},
"2": {
"ref_exp": "The person wearing a dark cap observes the scene from outside the enclosure.",
"caption": "A giraffe extends its neck upward and angles its head toward the top of the enclosure. A person in a green uniform stands nearby, looking up at the giraffe while remaining positioned within the enclosure's vicinity. Another person in a dark cap observes the scene from outside the enclosure.",
"cat_name": "person",
"file_name": "00155",
"isValid": true
}
},
"00190": {
"1": {
"ref_exp": "The person kneels below the second giraffe, tilting their head upward as they interact with the animal.",
"caption": "One giraffe stretches its neck upward, reaching its head through the bars of the enclosure, while the other giraffe lowers its head slightly, angling it forward. A person kneels below the second giraffe, tilting their head upward as they interact with the animal.",
"cat_name": "person",
"file_name": "00190",
"isValid": true
},
"2": {
"ref_exp": "NONE",
"caption": "One giraffe stretches its neck upward, reaching its head through the bars of the enclosure, while the other giraffe lowers its head slightly, angling it forward. A person kneels below the second giraffe, tilting their head upward as they interact with the animal.",
"cat_name": "person",
"file_name": "00190",
"isValid": false
}
},
"00200": {
"1": {
"ref_exp": "The person looking upward while standing near the enclosure.",
"caption": "A giraffe on the left extends its neck upwards and inserts its head through the metal bars toward an opening above. The giraffe on the right holds its neck upright, facing forward within the enclosure. A person in the foreground, partially visible, stands near the enclosure, looking upward.",
"cat_name": "person",
"file_name": "00200",
"isValid": false
},
"2": {
"ref_exp": "A person in the foreground stands near the enclosure, looking upward.",
"caption": "A giraffe on the left extends its neck upwards and inserts its head through the metal bars toward an opening above. The giraffe on the right holds its neck upright, facing forward within the enclosure. A person in the foreground, partially visible, stands near the enclosure, looking upward.",
"cat_name": "person",
"file_name": "00200",
"isValid": false
}
},
"00215": {
"1": {
"ref_exp": "A person wearing a green jacket tilts their head back, looking upwards towards the giraffe.",
"caption": "A giraffe near the center of the enclosure lowers its head while standing close to the fence. Another giraffe stretches its neck through the bars towards an upper level of the structure. A person wearing a green jacket tilts their head back, looking upwards towards the giraffe, while another individual in the foreground, wearing a dark hat, faces the scene.",
"cat_name": "person",
"file_name": "00215",
"isValid": false
},
"2": {
"ref_exp": "A person wearing a green jacket tilts their head back, looking upwards towards the giraffe.",
"caption": "A giraffe near the center of the enclosure lowers its head while standing close to the fence. Another giraffe stretches its neck through the bars towards an upper level of the structure. A person wearing a green jacket tilts their head back, looking upwards towards the giraffe, while another individual in the foreground, wearing a dark hat, faces the scene.",
"cat_name": "person",
"file_name": "00215",
"isValid": false
}
}
}
},
"0379ddf557": {
"person": {
"00040": {
"1": {
"ref_exp": "The person balancing on the edge of a ramp with one foot lifting the tail of a skateboard.",
"caption": "A skateboarder is performing a trick by balancing on the edge of a ramp with one foot lifting the tail of the skateboard, while others in the background glide on their skateboards or stand observing the action.",
"cat_name": "person",
"file_name": "00040",
"isValid": true
}
},
"00085": {
"1": {
"ref_exp": "The person skateboarding downhill toward a concrete ramp.",
"caption": "A person in the foreground is skateboarding downhill toward a concrete ramp. A second individual is crouching near the edge of the ramp holding a skateboard. Two people on the left are sitting on a platform, one of them partially leaning toward the ramp. In the background, two other people are standing at the top of the staircase, with one taking a step downward and the other standing upright.",
"cat_name": "person",
"file_name": "00085",
"isValid": true
}
},
"00090": {
"1": {
"ref_exp": "The person skateboarding up a ramp toward a staircase.",
"caption": "A person in the foreground is skateboarding up a ramp toward a staircase. In the background, one individual is standing on the steps holding a skateboard, while another is sitting on the edge of the steps. A third person is walking on the ramp to the left, holding an object in their hand.",
"cat_name": "person",
"file_name": "00090",
"isValid": true
}
},
"00165": {
"1": {
"ref_exp": "The person balancing on a skateboard while performing an airborne trick with their arms extended for stability.",
"caption": "One person in the center is balancing on a skateboard while performing an airborne trick, with their arms extended for stability. Another person to the left is holding a skateboard and stepping forward, appearing to prepare for their next move.",
"cat_name": "person",
"file_name": "00165",
"isValid": true
}
}
}
},
"038b2cc71d": {
"lizard": {
"00020": {},
"00035": {},
"00050": {},
"00055": {}
}
},
"038c15a5dd": {
"hedgehog": {
"00015": {},
"00085": {},
"00120": {},
"00165": {}
}
},
"03a06cc98a": {
"giraffe": {
"00020": {
"1": {
"ref_exp": "The giraffe in the red box is **leaning slightly forward while maintaining proximity to the group, observing or awaiting its turn.**",
"caption": "One giraffe in the center extends its long neck upward to grasp leafy branches hanging from a feeding station, while another giraffe on the right lifts its head close to the foliage, appearing to position itself for access. A third giraffe behind them leans slightly forward, maintaining proximity to the group while observing or awaiting its turn.",
"cat_name": "giraffe",
"file_name": "00020",
"isValid": true
},
"2": {
"ref_exp": "The giraffe in the red box (Object ID 2) is described by the caption as:\n\n**\"The giraffe extending its long neck upward to grasp leafy branches hanging from a feeding station.\"**",
"caption": "One giraffe in the center extends its long neck upward to grasp leafy branches hanging from a feeding station, while another giraffe on the right lifts its head close to the foliage, appearing to position itself for access. A third giraffe behind them leans slightly forward, maintaining proximity to the group while observing or awaiting its turn.",
"cat_name": "giraffe",
"file_name": "00020",
"isValid": true
},
"3": {
"ref_exp": "The giraffe behind the group that leans slightly forward, maintaining proximity while observing or awaiting its turn.",
"caption": "One giraffe in the center extends its long neck upward to grasp leafy branches hanging from a feeding station, while another giraffe on the right lifts its head close to the foliage, appearing to position itself for access. A third giraffe behind them leans slightly forward, maintaining proximity to the group while observing or awaiting its turn.",
"cat_name": "giraffe",
"file_name": "00020",
"isValid": false
}
},
"00040": {
"1": {
"ref_exp": "The giraffe lowering its head slightly while chewing, with visible attention on the elevated foliage.",
"caption": "One giraffe stretches its neck upwards and leans its head toward leafy branches hanging above, actively pulling leaves into its mouth. Another giraffe lowers its head slightly while chewing, with visible attention on the same elevated foliage. A third giraffe angles its neck higher, extending its tongue to grasp nearby leaves.",
"cat_name": "giraffe",
"file_name": "00040",
"isValid": false
},
"2": {
"ref_exp": "The giraffe stretching its neck upwards and leaning its head toward leafy branches while actively pulling leaves into its mouth.",
"caption": "One giraffe stretches its neck upwards and leans its head toward leafy branches hanging above, actively pulling leaves into its mouth. Another giraffe lowers its head slightly while chewing, with visible attention on the same elevated foliage. A third giraffe angles its neck higher, extending its tongue to grasp nearby leaves.",
"cat_name": "giraffe",
"file_name": "00040",
"isValid": false
},
"3": {
"ref_exp": "The giraffe angles its neck higher and extends its tongue to grasp nearby leaves.",
"caption": "One giraffe stretches its neck upwards and leans its head toward leafy branches hanging above, actively pulling leaves into its mouth. Another giraffe lowers its head slightly while chewing, with visible attention on the same elevated foliage. A third giraffe angles its neck higher, extending its tongue to grasp nearby leaves.",
"cat_name": "giraffe",
"file_name": "00040",
"isValid": false
}
},
"00065": {
"1": {
"ref_exp": "The giraffe stretches its neck upward and wraps its tongue around a cluster of green branches hanging from a feeder.",
"caption": "One giraffe stretches its neck upward and wraps its tongue around a cluster of green branches hanging from a feeder. Another giraffe leans forward, reaching toward the same feeder with its mouth open. A third giraffe stands upright nearby, observing the feeder but not actively interacting with it.",
"cat_name": "giraffe",
"file_name": "00065",
"isValid": false
},
"2": {
"ref_exp": "The giraffe stretches its neck upward and wraps its tongue around a cluster of green branches hanging from a feeder.",
"caption": "One giraffe stretches its neck upward and wraps its tongue around a cluster of green branches hanging from a feeder. Another giraffe leans forward, reaching toward the same feeder with its mouth open. A third giraffe stands upright nearby, observing the feeder but not actively interacting with it.",
"cat_name": "giraffe",
"file_name": "00065",
"isValid": false
},
"3": {
"ref_exp": "The giraffe stands upright nearby, observing the feeder but not actively interacting with it.",
"caption": "One giraffe stretches its neck upward and wraps its tongue around a cluster of green branches hanging from a feeder. Another giraffe leans forward, reaching toward the same feeder with its mouth open. A third giraffe stands upright nearby, observing the feeder but not actively interacting with it.",
"cat_name": "giraffe",
"file_name": "00065",
"isValid": false
}
},
"00075": {
"1": {
"ref_exp": "The giraffe lowers its head to inspect or graze on vegetation closer to the ground.",
"caption": "One giraffe extends its neck upward, reaching toward the foliage hanging near the post, while another giraffe tilts its head to the side and stretches its neck to access the greenery. A third giraffe actively lowers its head to inspect or graze on vegetation closer to the ground.",
"cat_name": "giraffe",
"file_name": "00075",
"isValid": false
},
"2": {
"ref_exp": "The giraffe tilts its head to the side and stretches its neck to access the greenery.",
"caption": "One giraffe extends its neck upward, reaching toward the foliage hanging near the post, while another giraffe tilts its head to the side and stretches its neck to access the greenery. A third giraffe actively lowers its head to inspect or graze on vegetation closer to the ground.",
"cat_name": "giraffe",
"file_name": "00075",
"isValid": false
},
"3": {
"ref_exp": "The giraffe actively lowering its head to inspect or graze on vegetation closer to the ground.",
"caption": "One giraffe extends its neck upward, reaching toward the foliage hanging near the post, while another giraffe tilts its head to the side and stretches its neck to access the greenery. A third giraffe actively lowers its head to inspect or graze on vegetation closer to the ground.",
"cat_name": "giraffe",
"file_name": "00075",
"isValid": false
}
}
}
},
"03a63e187f": {
"lizard": {
"00040": {},
"00070": {},
"00125": {},
"00160": {}
}
},
"03c95b4dae": {
"elephant": {
"00015": {
"1": {
"ref_exp": "The elephant at the rear moves along the sand, positioned a short distance away.",
"caption": "One elephant strides steadily toward the riverbank while a smaller elephant beside it walks closely in a parallel trajectory. A second smaller elephant follows behind, staying near an adult elephant that moves forward with its trunk swaying slightly. Another adult elephant at the rear positions itself a short distance away, moving along the sand.",
"cat_name": "elephant",
"file_name": "00015",
"isValid": false
},
"2": {
"ref_exp": "The elephant following behind a smaller elephant and staying near an adult elephant while moving forward with its trunk swaying slightly.",
"caption": "One elephant strides steadily toward the riverbank while a smaller elephant beside it walks closely in a parallel trajectory. A second smaller elephant follows behind, staying near an adult elephant that moves forward with its trunk swaying slightly. Another adult elephant at the rear positions itself a short distance away, moving along the sand.",
"cat_name": "elephant",
"file_name": "00015",
"isValid": false
},
"3": {
"ref_exp": "The elephant in the red box (Object ID 3) is **\"the adult elephant walking forward with its trunk swaying slightly.\"**",
"caption": "One elephant strides steadily toward the riverbank while a smaller elephant beside it walks closely in a parallel trajectory. A second smaller elephant follows behind, staying near an adult elephant that moves forward with its trunk swaying slightly. Another adult elephant at the rear positions itself a short distance away, moving along the sand.",
"cat_name": "elephant",
"file_name": "00015",
"isValid": true
}
},
"00035": {
"1": {
"ref_exp": "The elephant striding further along the sand, heading in a different direction away from the others.",
"caption": "One elephant stands stationary, its trunk hanging down, while another smaller elephant walks closely alongside it. A third elephant moves away from the group, its body angled toward the riverbank. A fourth elephant strides further along the sand, heading in a different direction away from the others.",
"cat_name": "elephant",
"file_name": "00035",
"isValid": false
},
"2": {
"ref_exp": "The elephant stands stationary, its trunk hanging down.",
"caption": "One elephant stands stationary, its trunk hanging down, while another smaller elephant walks closely alongside it. A third elephant moves away from the group, its body angled toward the riverbank. A fourth elephant strides further along the sand, heading in a different direction away from the others.",
"cat_name": "elephant",
"file_name": "00035",
"isValid": true
},
"3": {
"ref_exp": "The elephant moves away from the group, its body angled toward the riverbank.",
"caption": "One elephant stands stationary, its trunk hanging down, while another smaller elephant walks closely alongside it. A third elephant moves away from the group, its body angled toward the riverbank. A fourth elephant strides further along the sand, heading in a different direction away from the others.",
"cat_name": "elephant",
"file_name": "00035",
"isValid": true
}
},
"00045": {
"1": {
"ref_exp": "The elephant strides independently toward the edge of the frame, moving away from the group.",
"caption": "One elephant walks beside a person while appearing to swing its trunk playfully. Another smaller elephant steps forward near the riverbank, maintaining close proximity to a companion. A third elephant strides independently toward the edge of the frame, moving away from the group.",
"cat_name": "elephant",
"file_name": "00045",
"isValid": false
},
"2": {
"ref_exp": "The elephant swings its trunk playfully while walking beside a person.",
"caption": "One elephant walks beside a person while appearing to swing its trunk playfully. Another smaller elephant steps forward near the riverbank, maintaining close proximity to a companion. A third elephant strides independently toward the edge of the frame, moving away from the group.",
"cat_name": "elephant",
"file_name": "00045",
"isValid": false
},
"3": {
"ref_exp": "The elephant walks beside a person while appearing to swing its trunk playfully.",
"caption": "One elephant walks beside a person while appearing to swing its trunk playfully. Another smaller elephant steps forward near the riverbank, maintaining close proximity to a companion. A third elephant strides independently toward the edge of the frame, moving away from the group.",
"cat_name": "elephant",
"file_name": "00045",
"isValid": true
}
},
"00055": {
"1": {
"ref_exp": "The elephant highlighted with the red box (Object ID 1) is the one \"standing nearby on the sand, lifting its trunk slightly.\"",
"caption": "One elephant strides toward the river while another stands nearby on the sand, lifting its trunk slightly. A smaller elephant walks alongside a person, maintaining close proximity, while another young elephant moves ahead, flanked by a human companion guiding its path.",
"cat_name": "elephant",
"file_name": "00055",
"isValid": true
},
"2": {
"ref_exp": "The elephant standing nearby on the sand, lifting its trunk slightly.",
"caption": "One elephant strides toward the river while another stands nearby on the sand, lifting its trunk slightly. A smaller elephant walks alongside a person, maintaining close proximity, while another young elephant moves ahead, flanked by a human companion guiding its path.",
"cat_name": "elephant",
"file_name": "00055",
"isValid": false
},
"3": {
"ref_exp": "The elephant standing nearby on the sand, lifting its trunk slightly.",
"caption": "One elephant strides toward the river while another stands nearby on the sand, lifting its trunk slightly. A smaller elephant walks alongside a person, maintaining close proximity, while another young elephant moves ahead, flanked by a human companion guiding its path.",
"cat_name": "elephant",
"file_name": "00055",
"isValid": true
}
}
}
},
"03e2b57b0e": {
"lizard": {
"00020": {},
"00065": {},
"00080": {},
"00110": {}
}
},
"04194e1248": {
"lizard": {
"00015": {},
"00070": {},
"00120": {},
"00160": {}
}
},
"04259896e2": {
"lizard": {
"00045": {},
"00055": {
"1": {
"ref_exp": "The lizard gripping a rock with one forelimb while raising its body upward and tilting its head slightly forward.",
"caption": "The lizard on the left is gripping a rock with one forelimb while raising its body upward, with its head tilted slightly forward. The lizard on the right is resting on the ground, extending its tail and hind limbs, while its body presses against the surface and its head points forward.",
"cat_name": "lizard",
"file_name": "00055",
"isValid": false
}
},
"00115": {
"1": {
"ref_exp": "The lizard climbing a rock while extending its front limbs and opening its mouth with its tongue visible.",
"caption": "The central lizard climbs a rock while extending its front limbs and opening its mouth with its tongue visible. The lizard in the background on the left props itself on its front limbs, appearing stationary, with its back limbs stretched straight. Another lizard in the lower right crawls forward with its body low to the surface, tail sweeping behind.",
"cat_name": "lizard",
"file_name": "00115",
"isValid": false
}
},
"00140": {}
}
},
"0444918a5f": {
"truck": {
"00180": {},
"00200": {
"1": {
"ref_exp": "The stationary black truck on the left with its headlights and roof-mounted auxiliary lights illuminated.",
"caption": "The black truck on the left is stationary with its headlights and roof-mounted auxiliary lights illuminated. The green truck in the center remains parked with no visible lights or movement. The white truck on the right is also stationary and positioned near a loading dock. A person is walking across the lot, passing in front of the green truck.",
"cat_name": "truck",
"file_name": "00200",
"isValid": true
},
"2": {
"ref_exp": "The green truck in the center, which remains parked with no visible lights or movement.",
"caption": "The black truck on the left is stationary with its headlights and roof-mounted auxiliary lights illuminated. The green truck in the center remains parked with no visible lights or movement. The white truck on the right is also stationary and positioned near a loading dock. A person is walking across the lot, passing in front of the green truck.",
"cat_name": "truck",
"file_name": "00200",
"isValid": true
},
"3": {
"ref_exp": "The white truck on the right, stationary and positioned near a loading dock.",
"caption": "The black truck on the left is stationary with its headlights and roof-mounted auxiliary lights illuminated. The green truck in the center remains parked with no visible lights or movement. The white truck on the right is also stationary and positioned near a loading dock. A person is walking across the lot, passing in front of the green truck.",
"cat_name": "truck",
"file_name": "00200",
"isValid": true
},
"4": {}
},
"00205": {
"1": {
"ref_exp": "The truck illuminating its headlights and parking lights while remaining stationary with visible reflections on its exterior.",
"caption": "The red truck in the foreground illuminates its headlights and parking lights while remaining stationary with visible reflections on its exterior. The white and green trucks in the background are parked next to a building, displaying no active movements or interactions. A person in the scene walks near the parked trucks, moving between them in the background.",
"cat_name": "truck",
"file_name": "00205",
"isValid": true
},
"2": {
"ref_exp": "The truck highlighted with the red box remains stationary with no active movements or illumination.",
"caption": "The red truck in the foreground illuminates its headlights and parking lights while remaining stationary with visible reflections on its exterior. The white and green trucks in the background are parked next to a building, displaying no active movements or interactions. A person in the scene walks near the parked trucks, moving between them in the background.",
"cat_name": "truck",
"file_name": "00205",
"isValid": true
},
"3": {
"ref_exp": "The truck highlighted with the red box (Object ID 3) is the stationary white truck parked next to the green truck in the background.",
"caption": "The red truck in the foreground illuminates its headlights and parking lights while remaining stationary with visible reflections on its exterior. The white and green trucks in the background are parked next to a building, displaying no active movements or interactions. A person in the scene walks near the parked trucks, moving between them in the background.",
"cat_name": "truck",
"file_name": "00205",
"isValid": true
},
"4": {}
},
"00225": {
"1": {
"ref_exp": "The truck, illuminated by its headlights and roof lights, advancing slowly across the paved area.",
"caption": "The front truck, illuminated by its headlights and roof lights, advances slowly across the paved area. In the background, the green truck remains stationary near the white truck, which is parked motionless alongside a structure.",
"cat_name": "truck",
"file_name": "00225",
"isValid": true
},
"2": {
"ref_exp": "The truck highlighted with the red box remains stationary near the white truck.",
"caption": "The front truck, illuminated by its headlights and roof lights, advances slowly across the paved area. In the background, the green truck remains stationary near the white truck, which is parked motionless alongside a structure.",
"cat_name": "truck",
"file_name": "00225",
"isValid": true
},
"3": {
"ref_exp": "The truck parked motionless alongside a structure.",
"caption": "The front truck, illuminated by its headlights and roof lights, advances slowly across the paved area. In the background, the green truck remains stationary near the white truck, which is parked motionless alongside a structure.",
"cat_name": "truck",
"file_name": "00225",
"isValid": false
},
"4": {
"ref_exp": "NONE",
"caption": "The front truck, illuminated by its headlights and roof lights, advances slowly across the paved area. In the background, the green truck remains stationary near the white truck, which is parked motionless alongside a structure.",
"cat_name": "truck",
"file_name": "00225",
"isValid": false
}
}
}
},
"04460a7a52": {
"lizard": {
"00010": {},
"00080": {},
"00095": {},
"00135": {}
}
},
"04474174a4": {
"ape": {
"00020": {
"1": {
"ref_exp": "The ape stands on its hind limbs with one foot pressed against the rock's edge for leverage, bringing its hand closer to the seated ape's head while maintaining a supportive posture with its free arm resting on the rocky surface.",
"caption": "One ape sits on the rock while tilting its head slightly upward, allowing the other to extend its arm and place its hand near the seated ape's face. The second ape stands on its hind limbs with one foot pressed against the rock's edge for leverage, bringing its other hand closer toward the first ape's head while maintaining a supportive posture with its free arm resting on the rocky surface.",
"cat_name": "ape",
"file_name": "00020",
"isValid": false
},
"2": {
"ref_exp": "The ape sitting on the rock while tilting its head slightly upward.",
"caption": "One ape sits on the rock while tilting its head slightly upward, allowing the other to extend its arm and place its hand near the seated ape's face. The second ape stands on its hind limbs with one foot pressed against the rock's edge for leverage, bringing its other hand closer toward the first ape's head while maintaining a supportive posture with its free arm resting on the rocky surface.",
"cat_name": "ape",
"file_name": "00020",
"isValid": true
}
},
"00075": {
"1": {
"ref_exp": "NONE",
"caption": "Two young apes engage in physical play, with one grasping the other's limbs as they tumble against the rock surface, while their legs and arms flail energetically in the interaction.",
"cat_name": "ape",
"file_name": "00075",
"isValid": false
},
"2": {
"ref_exp": "NONE",
"caption": "Two young apes engage in physical play, with one grasping the other's limbs as they tumble against the rock surface, while their legs and arms flail energetically in the interaction.",
"cat_name": "ape",
"file_name": "00075",
"isValid": false
}
},
"00090": {
"1": {
"ref_exp": "The ape grasping the other by the torso while pushing against it with its legs.",
"caption": "One ape grasps the other by the torso while pushing against it with its legs, as the second ape leans forward, clutching onto the first ape's limb with both hands and pressing its face close. Both are situated on a rocky ledge amidst rugged stone surroundings.",
"cat_name": "ape",
"file_name": "00090",
"isValid": false
},
"2": {
"ref_exp": "The ape leaning forward, clutching onto the other ape's limb with both hands and pressing its face close.",
"caption": "One ape grasps the other by the torso while pushing against it with its legs, as the second ape leans forward, clutching onto the first ape's limb with both hands and pressing its face close. Both are situated on a rocky ledge amidst rugged stone surroundings.",
"cat_name": "ape",
"file_name": "00090",
"isValid": false
}
},
"00140": {
"1": {
"ref_exp": "The ape sitting upright with its back to the camera, leaning slightly towards the second ape.",
"caption": "One ape sits upright with its back to the camera, leaning slightly towards the second ape, while the second ape bends forward, gripping a thin stick-like object in its mouth with one hand resting on the ground.",
"cat_name": "ape",
"file_name": "00140",
"isValid": false
},
"2": {
"ref_exp": "The ape bending forward, gripping a thin stick-like object in its mouth with one hand resting on the ground.",
"caption": "One ape sits upright with its back to the camera, leaning slightly towards the second ape, while the second ape bends forward, gripping a thin stick-like object in its mouth with one hand resting on the ground.",
"cat_name": "ape",
"file_name": "00140",
"isValid": true
}
}
}
},
"0450095513": {
"snail": {
"00035": {},
"00065": {},
"00085": {},
"00135": {}
}
},
"045f00aed2": {
"person": {
"00015": {
"1": {
"ref_exp": "The tiger that strides forward on a patch of grass.",
"caption": "A man grips a leash firmly with one hand while walking alongside a tiger that strides forward on a patch of grass.",
"cat_name": "tiger",
"file_name": "00015",
"isValid": true
},
"3": {
"ref_exp": "The person gripping a leash firmly with one hand.",
"caption": "A man grips a leash firmly with one hand while walking alongside a tiger that strides forward on a patch of grass.",
"cat_name": "person",
"file_name": "00015",
"isValid": true
}
},
"00080": {
"1": {
"ref_exp": "The tiger stepping forward on the grass while turning its head to the side.",
"caption": "A man wearing sunglasses holds a chain leash in his right hand, leading a white tiger that is stepping forward on the grass while turning its head to the side.",
"cat_name": "tiger",
"file_name": "00080",
"isValid": true
},
"3": {
"ref_exp": "The person holding a chain leash in their right hand.",
"caption": "A man wearing sunglasses holds a chain leash in his right hand, leading a white tiger that is stepping forward on the grass while turning its head to the side.",
"cat_name": "person",
"file_name": "00080",
"isValid": true
}
},
"00125": {
"1": {
"ref_exp": "The tiger walking forward with its gaze directed ahead.",
"caption": "A man grips a chain leash with one hand, leading a white tiger that walks forward while its gaze is directed ahead.",
"cat_name": "tiger",
"file_name": "00125",
"isValid": true
},
"3": {
"ref_exp": "The person gripping a chain leash with one hand.",
"caption": "A man grips a chain leash with one hand, leading a white tiger that walks forward while its gaze is directed ahead.",
"cat_name": "person",
"file_name": "00125",
"isValid": true
}
},
"00150": {
"1": {
"ref_exp": "The tiger lowering its head to inspect a large rock on the grass.",
"caption": "The man grips a leash with both hands and walks alongside a white tiger, which lowers its head to inspect a large rock on the grass.",
"cat_name": "tiger",
"file_name": "00150",
"isValid": true
},
"3": {
"ref_exp": "The person grips a leash with both hands and walks alongside a white tiger.",
"caption": "The man grips a leash with both hands and walks alongside a white tiger, which lowers its head to inspect a large rock on the grass.",
"cat_name": "person",
"file_name": "00150",
"isValid": true
}
}
},
"tiger": {
"00015": {},
"00080": {},
"00125": {},
"00150": {}
}
},
"04667fabaa": {
"parrot": {
"00045": {},
"00075": {},
"00115": {},
"00165": {}
}
}
} |