File size: 63,065 Bytes
8bd040e | 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 | [
{
"start_frame": "1-study_room-1-abnormal-start.jpg",
"atomic_actions": "C flips open the book with a blue, white, and gray cover using his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand| C flips open the blue-covered book under the tissue package with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand| C pulls the book with an orange-and-white cover out from under the bottle and the milk carton with his right hand| C puts the book on the table| C flips open the book with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand",
"end_frame_info": [
{
"category": "book",
"description": "blue, white, and gray book with a tree pattern on the cover, titled \"心理学基础 第2版\"",
"relation": [
"book on table",
"book under orange and white book",
"book next to large blue-covered book"
]
},
{
"category": "book",
"description": "large blue-covered book with a yellow and white spine, featuring a silhouette of a person climbing",
"relation": [
"book on table",
"book next to tissue package"
]
},
{
"category": "book",
"description": "orange and white book",
"relation": [
"book on table"
]
},
{
"category": "tissue package",
"description": "purple rectangular tissue package with white text and logo, partially open with white tissue paper pulled out",
"relation": [
"tissue package on table",
"tissue package next to milk carton"
],
"key_state": "The tissue package is on the table."
},
{
"category": "milk carton",
"description": "small white and green rectangular milk carton labeled \"高钙牛奶\", lying horizontally",
"relation": [
"milk carton on table",
"milk carton next to bottle"
],
"key_state": "The milk carton lies horizontally on the table."
},
{
"category": "bottle",
"description": "transparent plastic water bottle with a red cap, lying horizontally, partially filled",
"relation": [
"bottle on table",
"bottle next to orange and white book"
],
"key_state": "The bottle lies horizontally on the table."
},
{
"category": "table",
"description": "round wooden table with a light brown finish and visible wood grain, supported by four wooden legs",
"relation": [
"table on floor"
]
},
{
"category": "curtain",
"description": "light blue fabric curtain with a smooth texture, hanging vertically in the background",
"relation": [
"curtain behind table"
]
},
{
"category": "wall",
"description": "light beige textured wall with a vertical black strip",
"relation": [
"wall behind table"
]
},
{
"category": "floor",
"description": "light gray tiled floor with visible grout lines, smooth surface",
"relation": []
}
]
},
{
"start_frame": "1-study_room-2-abnormal-start.jpg",
"atomic_actions": "C pulls out the book with a blue, white, and gray cover using his right hand| C puts the book on the table| C flips open the book with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand| C pulls out the blue-covered book with his right hand| C puts the book on the table| C flips open the book with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand| C puts the book on the book with a blue, white, and gray cover using his right hand| C picks up the book with an orange-and-white cover using his right hand| C puts the book on the blue-covered book| C flips open the book with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand",
"end_frame_info": [
{
"category": "book",
"description": "orange and white book",
"relation": [
"book on large blue-covered book"
]
},
{
"category": "book",
"description": "large blue-covered book with a visible yellow and white spine",
"relation": [
"book on blue, white, and gray book"
]
},
{
"category": "book",
"description": "blue, white, and gray book with a visible spine",
"relation": [
"book on table"
]
},
{
"category": "milk carton",
"description": "small white and green rectangular milk carton, lying horizontally",
"relation": [
"milk carton on table",
"milk carton next to bottle"
],
"key_state": "The milk carton lies horizontally on the table."
},
{
"category": "bottle",
"description": "transparent plastic water bottle with a red cap, lying horizontally",
"relation": [
"bottle on table",
"bottle next to milk carton",
"bottle next to tissue package"
],
"key_state": "The bottle lies horizontally on the table."
},
{
"category": "tissue package",
"description": "purple rectangular tissue package, lying on its side",
"relation": [
"tissue package on table",
"tissue package next to bottle"
],
"key_state": "The tissue package lies on its side on the table."
},
{
"category": "table",
"description": "round wooden table with light wood grain pattern and visible knots",
"relation": [
"table on floor"
]
},
{
"category": "curtain",
"description": "light blue fabric curtain with a smooth texture, hanging vertically in the background",
"relation": [
"curtain behind table"
]
},
{
"category": "wall",
"description": "light beige textured wall with a vertical black strip",
"relation": [
"wall behind table"
]
},
{
"category": "floor",
"description": "light gray tiled floor with visible grout lines, smooth surface",
"relation": []
}
]
},
{
"start_frame": "1-dining_room-3-abnormal-start.jpg",
"atomic_actions": "C draws a tissue from the tissue package with his right hand| C wipes the tablecloth with the tissue| C kneads the tissue with his right hand| C picks up the lunch box with his right hand| C places the lunch box on the tablecloth| C picks up the spoon with his right hand| C places the spoon on the lunch box| C picks up the snack bag with his right hand| C puts the snack bag between the lunch box and the bottle pyramid| C picks up the milk carton with his right hand| C puts the milk carton on the right side of the bottle pyramid| C picks up the tissue package with his right hand| C puts the tissue package in front of the bottle pyramid| C picks up the bottle in the lower right corner of the bottle pyramid with his right hand| C puts the bottle next to the tissue package",
"end_frame_info": [
{
"category": "table",
"description": "round wooden table with light brown legs",
"relation": [
"table on floor",
"table covered by tablecloth"
]
},
{
"category": "tablecloth",
"description": "light green fabric tablecloth with white grid pattern, slightly wrinkled and hanging down the sides",
"relation": []
},
{
"category": "bottle",
"description": "transparent plastic water bottle with red cap and white and red label featuring green logo and white text, standing upright, filled with clear liquid",
"relation": [
"bottle on tablecloth",
"bottle next to snack bag",
"bottle next to bottle",
"bottle next to tissue package",
"bottle next to milk carton"
]
},
{
"category": "bottle",
"description": "transparent plastic water bottle with red cap and white and red label featuring green mountain logo and white text, standing upright, filled with clear liquid",
"relation": [
"bottle on tablecloth",
"bottle next to bottle",
"bottle next to tissue package",
"bottle next to milk carton"
]
},
{
"category": "bottle",
"description": "transparent plastic water bottle with a red cap, lying horizontally, partially filled",
"relation": [
"bottle on tablecloth",
"bottle next to bottle",
"bottle next to milk carton"
],
"key_state": "The bottle without label lies horizontally on the tablecloth."
},
{
"category": "milk carton",
"description": "white and green rectangular milk carton, standing upright",
"relation": [
"milk carton on tablecloth",
"milk carton next to bottle"
]
},
{
"category": "tissue package",
"description": "purple rectangular tissue package with white text and logo, partially open with white tissue paper pulled out",
"relation": [
"tissue package on tablecloth",
"tissue package next to bottle",
"tissue package next to snack bag"
]
},
{
"category": "lunch box",
"description": "white elliptic plastic container with clear lid, containing food inside",
"relation": [
"lunch box on tablecloth",
"lunch box next to snack bag"
]
},
{
"category": "snack bag",
"description": "dark brown plastic snack bag with printed text and images of meat sticks, sealed and lying flat",
"relation": [
"snack bag on tablecloth"
]
},
{
"category": "spoon",
"description": "white plastic spoon with a curved bowl and straight handle",
"relation": [
"spoon on lunch box"
]
},
{
"category": "curtain",
"description": "light blue fabric curtain hanging vertically",
"relation": [
"curtain behind table"
]
},
{
"category": "wall",
"description": "light beige wall with vertical seam and black vertical strip",
"relation": [
"wall behind table"
]
},
{
"category": "floor",
"description": "light gray tiled floor with visible grout lines, smooth surface",
"relation": []
}
]
},
{
"start_frame": "1-dining_room-2-abnormal-start.jpg",
"atomic_actions": "C draws a tissue from the tissue package with his right hand| C wipes the tablecloth with the tissue| C kneads the tissue with his right hand| C picks up the lunch box with his right hand| C places the lunch box on the tablecloth| C picks up the spoon with his right hand| C places the spoon on the lunch box| C picks up the snack bag with his right hand| C places the snack bag on the left side of the lunch box with his right hand| C picks up the milk carton with his right hand| C puts the milk carton on the right side of the lunch box| C picks up the tissue package with his right hand| C puts the tissue package in front if the lunch box| C picks up the soccer ball with his right hand| C rolls the soccer ball to the two bottles under the table",
"end_frame_info": [
{
"category": "tissue package",
"description": "purple rectangular tissue package with white text and logo, partially open with white tissue paper pulled out",
"relation": [
"tissue package on tablecloth",
"tissue package in front of lunch box"
]
},
{
"category": "snack bag",
"description": "dark brown plastic snack bag with printed text and images of meat sticks, crinkled plastic material",
"relation": [
"snack bag on tablecloth",
"snack bag next to lunch box"
]
},
{
"category": "soccer ball",
"description": "black and white classic soccer ball with pentagonal and hexagonal panels, smooth surface",
"relation": [
"soccer ball on floor",
"soccer ball next to bottle"
]
},
{
"category": "bottle",
"description": "transparent plastic water bottle with red cap and white-and-red label, lying on its side, partially filled",
"relation": [
"water bottle on floor",
"water bottle next to soccer ball",
"water bottle next bottle",
"water bottle under table"
],
"key_state": "The bottle with label lies on its side under the table."
},
{
"category": "bottle",
"description": "transparent plastic water bottle with red cap, lying on its side, partially filled and slightly crushed",
"relation": [
"water bottle on floor",
"water bottle under table"
],
"key_state": "The bottle without label lies on its side under the table and is slightly crushed."
},
{
"category": "table",
"description": "round wooden table with light brown legs",
"relation": [
"table on floor",
"table covered by tablecloth"
]
},
{
"category": "tablecloth",
"description": "light green tablecloth with white grid pattern, slightly wrinkled",
"relation": []
},
{
"category": "milk carton",
"description": "white and green rectangular milk carton with green and black text, standing upright",
"relation": [
"milk carton on tablecloth",
"milk carton next to lunch box"
]
},
{
"category": "lunch box",
"description": "white elliptic plastic container with clear lid, containing food inside",
"relation": [
"lunch box on tablecloth",
"lunch box next to snack bag",
"lunch box next to milk carton"
]
},
{
"category": "spoon",
"description": "white plastic spoon with smooth surface",
"relation": [
"spoon on lunch box"
]
},
{
"category": "curtain",
"description": "light blue fabric curtain hanging vertically",
"relation": [
"curtain behind table"
]
},
{
"category": "wall",
"description": "light beige wall with vertical seam and black vertical strip",
"relation": [
"wall behind table"
]
},
{
"category": "floor",
"description": "light gray tiled floor with visible grout lines, smooth surface",
"relation": []
}
]
},
{
"start_frame": "1-study_room-3-abnormal-start.jpg",
"atomic_actions": "C picks up the bottle with his right hand| C places the bottle to the right of the soccer ball| C moves the milk carton to the right of the bottle| C picks up the tissue package with his right hand| C places the tissue package in front of the bottle and the milk carton| C flips the book with an orange-and-white cover over using his right hand| C flips open the book with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand| C moves the book to the front of the tissue package with his right hand| C picks up the book with a blue, white, and gray cover using his right hand| C flips the book over| C puts the book on the table| C flips open the book with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand| C picks up the book with his right hand| C places the book on top of the book with an orange-and-white cover| C picks up the blue-covered book with his right hand| C flips the book over| C puts the book on the table| C flips open the book with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand| C picks up the other two books with his right hand| C places the two books on top of the blue-covered book| C picks up the soccer ball with his right hand| C slams the soccer ball into the bottle under the table",
"end_frame_info": [
{
"category": "soccer ball",
"description": "black and white classic soccer ball with pentagonal and hexagonal panels, smooth surface",
"relation": [
"soccer ball on floor",
"soccer ball under table"
]
},
{
"category": "book",
"description": "blue, white, and gray book",
"relation": [
"book on orange and white book"
]
},
{
"category": "book",
"description": "orange and white book with a visible spine",
"relation": [
"book on large blue book"
]
},
{
"category": "book",
"description": "large blue book with a visible yellow and white spine",
"relation": [
"book on table",
"book next to tissue package"
]
},
{
"category": "bottle",
"description": "transparent plastic water bottle with red cap and colorful label featuring landscape imagery, standing upright, filled with clear liquid",
"relation": [
"bottle on table",
"bottle behind tissue package",
"bottle next to milk carton"
]
},
{
"category": "bottle",
"description": "transparent plastic water bottle with red cap, lying horizontally, partially filled and slightly crushed",
"relation": [
"bottle under table"
],
"key_state": "The bottle without label lies horizontally under the table and is slightly crushed."
},
{
"category": "tissue package",
"description": "rectangular tissue package with purple and white packaging, featuring a logo and Chinese text",
"relation": [
"tissue package on table"
]
},
{
"category": "milk carton",
"description": "rectangular milk carton with green and white design, featuring a logo and Olympic rings, placed on the table",
"relation": [
"milk carton on table",
"milk carton behind tissue package"
]
},
{
"category": "table",
"description": "round wooden table with light brown finish and visible wood grain",
"relation": [
"table on floor"
]
},
{
"category": "curtain",
"description": "light blue fabric curtain hanging vertically",
"relation": [
"curtain behind table"
]
},
{
"category": "wall",
"description": "light beige wall with vertical seam and black vertical strip",
"relation": [
"wall behind table"
]
},
{
"category": "floor",
"description": "light gray tiled floor with visible grout lines, smooth surface",
"relation": []
}
]
},
{
"start_frame": "2-dining_room-3-abnormal-start.jpg",
"atomic_actions": "C places both hands on the edge of the table| C opens the plastic container with both hands| C picks up an orange with his right hand| C holds the orange with his left hand| C peels the orange with his right hand| C places the orange peel on the table| C peels the orange with his right hand| C places the orange peel on the table| C peels the orange with his right hand| C places the orange peel on the table| C peels the orange with his right hand| C places one peeled half of the orange on the empty plate with his left hand| C places an orange peel on the table with his left hand| C holds the other half of the orange with his left hand| C breaks off an orange segment with his right hand| C throws the orange segment under the table| C breaks off an orange segment with his right hand| C throws the orange segment under the table| C breaks off an orange segment with his right hand| C throws the orange segment under the table| C breaks off an orange segment with his right hand| C throws the orange segment under the table",
"end_frame_info": [
{
"category": "orange",
"description": "partially peeled orange with bright orange peel and pale yellow, fibrous pulp",
"relation": [
"orange held by person"
]
},
{
"category": "orange",
"description": "round orange with smooth, glossy surface",
"relation": [
"orange in container"
]
},
{
"category": "orange segment",
"description": "peeled pale yellow orange segment",
"relation": [
"orange segment on carpet"
],
"key_state": "The orange segment lies on the carpet."
},
{
"category": "container",
"description": "transparent plastic container with rectangular shape and smooth surface, open",
"relation": [
"container on table"
]
},
{
"category": "plate",
"description": "white ceramic plate with blue leaf-like patterns around the rim",
"relation": [
"plate on table",
"plate next to plate"
]
},
{
"category": "table",
"description": "round wooden table with light brown finish and visible grain patterns",
"relation": [
"table on carpet"
]
},
{
"category": "carpet",
"description": "dark-blue-and-white patterned carpet with abstract speckled design",
"relation": []
}
]
},
{
"start_frame": "1-study_room-4-abnormal-start.jpg",
"atomic_actions": "C picks up the book with a blue, white, and gray cover| C flips the book over| C puts the book on top of the book with an orange-and-white cover| C flips open the book with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand| C moves the book back to its original position with his right hand| C flips the book with an orange-and-white cover over| C flips open the book with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand| C picks up the book with a blue, white, and gray cover| C places the book on top of the book with an orange-and-white cover| C picks up the two books with his right hand| C places the two books where the book with a blue, white, and gray cover had originally been| C flips the blue-covered book over| C flips open the book with his right hand| C turns to another page of the book with his right hand| C turns to another page of the book with his right hand| C closes the book with his right hand| C picks up the other two books with his right hand| C places the two books on top of the blue-covered book| C sets the bottle on the left upright on the table in place with his right hand| C picks up the bottle on the right| C places the bottle on top of the bottle on the left with his right hand",
"end_frame_info": [
{
"category": "book",
"description": "blue, white, and gray book",
"relation": [
"book on orange and white book"
]
},
{
"category": "book",
"description": "orange and white book with a visible spine",
"relation": [
"book on large blue book"
]
},
{
"category": "book",
"description": "large blue book with a visible yellow and white spine",
"relation": [
"book on table"
]
},
{
"category": "bottle",
"description": "transparent plastic water bottle with a red cap, standing upright, partially filled with clear liquid",
"relation": [
"bottle on table",
"bottle next to bottle",
"bottle behind book"
]
},
{
"category": "bottle",
"description": "transparent plastic water bottle with a red cap, lying horizontally, label visible with red and white design, filled with clear liquid",
"relation": [
"bottle on table",
"bottle behind book"
],
"key_state": "The bottle with label lies horizontally on the table."
},
{
"category": "soccer ball",
"description": "black and white classic soccer ball with pentagonal and hexagonal panels, smooth surface",
"relation": [
"soccer ball under table",
"soccer ball on the floor"
]
},
{
"category": "table",
"description": "round wooden table with a light wood grain finish and four thin wooden legs",
"relation": [
"table on floor"
]
},
{
"category": "curtain",
"description": "light blue fabric curtain hanging vertically",
"relation": [
"curtain behind table"
]
},
{
"category": "wall",
"description": "light beige wall with vertical seam and black vertical strip",
"relation": [
"wall behind table"
]
},
{
"category": "floor",
"description": "light gray tiled floor with visible grout lines, smooth surface",
"relation": []
}
]
},
{
"start_frame": "2-dining_room-4-abnormal-start.jpg",
"atomic_actions": "C opens the bag of chips with his left hand| C takes a chip from the bag with his right hand| C puts the chip on the empty plate| C takes a chip from the bag with his right hand| C puts the chip on the empty plate| C takes a chip from the bag with his right hand| C puts the chip on the empty plate| C takes a chip from the bag with his right hand| C puts the chip on the empty plate| C picks up a chip from the plate with his right hand| C places the chip on the table in front of the plate| C breaks the chip into pieces with both hands| C picks up a chip from the plate with his right hand| C breaks the chip into pieces with both hands| C rubs his hands together| C places his hands on the table",
"end_frame_info": [
{
"category": "bag",
"description": "red plastic bag with white text and images of potato chips, partially open",
"relation": [
"bag on table",
"bag next to plate"
]
},
{
"category": "plate",
"description": "round white plate with blue radial stripe pattern",
"relation": [
"plate on table"
]
},
{
"category": "potato chip",
"description": "orange, ridged, round potato chip",
"relation": [
"potato chip on plate"
]
},
{
"category": "potato chip",
"description": "orange, ridged, round potato chip",
"relation": [
"potato chip on plate",
"potato chip partially overlapping another chip"
]
},
{
"category": "potato chip pieces",
"description": "broken orange potato chip pieces",
"relation": [
"potato chip scattered on table"
],
"key_state": "The broken potato chip pieces is scattered on the table."
},
{
"category": "table",
"description": "round wooden table with light brown finish and visible grain patterns",
"relation": [
"table on carpet"
]
},
{
"category": "carpet",
"description": "dark-blue-and-white patterned carpet with abstract speckled design",
"relation": []
}
]
},
{
"start_frame": "1-bathroom-1-abnormal-start.jpg",
"atomic_actions": "C picks up the plastic bag with his right hand| C opens the lid of the bin by pressing the pedal of the bin with his right foot| C covers the plastic bag in the bin with his right hand| C picks up the shovel with his right hand| C shovels a piece of cat litter with excrement from the litter basin using the shovel| C shovels cat litter with excrement into the bin| C shovels a piece of cat litter with excrement from the litter basin using the shovel| C shovels cat litter with excrement into the bin| C gather cat litter with excrement in the litter basin using the shovel| C shovels a piece of cat litter with excrement from the litter basin using the shovel| C shovels cat litter with excrement into the bin| C attaches the shovel to the litter basin| C moves the litter basin to the corner with his right hand| C closes the lid of the bin by loosening his right foot| C picks up the cat food bag with his right hand| C place the cat food bag on the lid of the bin| C opens the cat food bag with his right hand| C picks up the cat food bag with his right hand| C pours cat food into the litter basin| C puts the cat food bag back in place",
"end_frame_info": [
{
"category": "bag",
"description": "plastic bag with green and white design, featuring images of leaves and birds, partially visible text in Chinese, partially open",
"relation": [
"bag next to litter basin",
"bag next to bin"
]
},
{
"category": "bin",
"description": "cylindrical plastic trash bin with a pale yellow lid and a yellow pedal, lined with a clear plastic bag, standing upright",
"relation": [
"bin on floor"
]
},
{
"category": "floor",
"description": "gray tiled floor with large rectangular tiles, smooth surface, and visible grout lines",
"relation": []
},
{
"category": "cat food",
"description": "small pile of dark brown, round, pellet-shaped dry cat food",
"relation": [
"cat food scattered on cat litter"
],
"key_state": "Tha cat food is scattered on the pile of cat litter."
},
{
"category": "cat litter",
"description": "light beige granular dry cat litter, with some areas disturbed",
"relation": [
"cat litter spread across the bottom of litter basin"
]
},
{
"category": "shovel",
"description": "gray shovel with a hook and hollow handle",
"relation": [
"shovel attached to litter basin"
]
},
{
"category": "bowl",
"description": "small round white ceramic bowl with a black rim, smooth glossy surface, partially filled with clear liquid",
"relation": [
"bowl on floor",
"bowl next to plate",
"bowl in front of litter basin"
]
},
{
"category": "plate",
"description": "small rectangular white ceramic plate with rounded corners and two small handles, smooth glossy surface, empty and clean",
"relation": [
"plate on floor",
"plate next to bowl",
"plate in front of litter basin"
]
},
{
"category": "litter basin",
"description": "large rectangular yellow plastic litter basin with raised edges and side handles",
"relation": [
"litter basin on floor",
"litter basin containing cat litter"
]
},
{
"category": "wall",
"description": "light green wall with smooth surface",
"relation": [
"wall behind bin",
"wall behind litter basin",
"wall behind bag"
]
},
{
"category": "wall",
"description": "white wall with smooth surface",
"relation": [
"wall next to litter basin",
"wall next to plate"
]
}
]
},
{
"start_frame": "1-dining_room-1-abnormal-start.jpg",
"atomic_actions": "C draws a tissue from the tissue package with his right hand| C wipes the tablecloth with the tissue| C kneads the tissue with his right hand| C picks up the lunch box with his right hand| C places the lunch box on the tablecloth| C wipes the spoon with the tissue| C places the spoon on the lunch box| C picks up the snack bag with his right hand| C places the snack bag on the left side of the lunch box with his right hand| C picks up the lying bottle with his right hand| C puts the bottle upright between the lunch box and another bottle| C moves the tissue package to the front of the lunch box with his right hans| C pulls the tablecloth away with his right hand",
"end_frame_info": [
{
"category": "bag",
"description": "small dark brown bag with white text, lying flat",
"relation": [
"bag lying flat on the floor",
"bag diagonally below table"
],
"key_state": "The bag lies flat on the floor, diagonally below the table."
},
{
"category": "tissue package",
"description": "purple rectangular tissue package with printed text, lying on its side",
"relation": [
"tissue package lying on its side on the floor",
"tissue package diagonally below table"
],
"key_state": "The tissue package lies on its side on the floor, diagonally below the table."
},
{
"category": "bottle",
"description": "transparent plastic water bottle with red cap and red-and-white label featuring Chinese characters and green mountain logo, lying horizontally",
"relation": [
"bottle lying on table",
"bottle next to another bottle"
],
"key_state": "The bottle with label lies horizontally on the table."
},
{
"category": "bottle",
"description": "transparent plastic water bottle with red cap, no visible label, lying horizontally",
"relation": [
"bottle lying on table",
"bottle next to lunch box"
],
"key_state": "The bottle without label lies horizontally on the table."
},
{
"category": "spoon",
"description": "white plastic spoon with smooth surface",
"relation": [
"spoon on lunch box"
]
},
{
"category": "table",
"description": "round wooden table with light wood grain texture and four thin wooden legs",
"relation": [
"table standing on floor"
]
},
{
"category": "lunch box",
"description": "clear plastic lunch box with white lid, partially filled with food",
"relation": [
"lunch box on table",
"lunch box next to bottle"
]
},
{
"category": "curtain",
"description": "light blue fabric curtain hanging vertically",
"relation": [
"curtain behind table"
]
},
{
"category": "wall",
"description": "light beige wall with vertical seam and black vertical strip",
"relation": [
"wall behind table"
]
},
{
"category": "floor",
"description": "light gray tiled floor with visible grout lines, smooth surface",
"relation": []
}
]
},
{
"start_frame": "2-dining_room-2-abnormal-start.jpg",
"atomic_actions": "C picks up a slice of cucumber from the bowl with his right hand| C places the slice of cucumber next to the empty plate| C picks up a slice of cucumber from the bowl with his right hand| C places the slice of cucumber next to the empty plate| C picks up a slice of cucumber from the bowl with his right hand| C places the slice of cucumber next to the empty plate| C picks up a slice of cucumber from the bowl with his right hand| C places the slice of cucumber next to the empty plate| C picks up a slice of cucumber from the bowl with his right hand| C places the slice of cucumber next to the bowl| C picks up a slice of cucumber from the bowl with his right hand| C places the slice of cucumber next to the bowl| C picks up a slice of cucumber from the bowl with his right hand| C places the slice of cucumber next to the empty plate| C pulls the empty plate a little closer to himself with his right hand| C picks up the orange with his right hand| C places the orange on the table.",
"end_frame_info": [
{
"category": "bowl",
"description": "round white ceramic bowl with a black rim, smooth glossy surface, empty",
"relation": [
"bowl on table",
"bowl next to plate"
]
},
{
"category": "cup",
"description": "round metallic cup with a brushed silver finish and a black handle, partially filled with clear liquid",
"relation": [
"bowl on table",
"bowl near container",
"bowl naer can"
]
},
{
"category": "cucumber slice",
"description": "small round slice of green cucumber with visible seeds and dark green skin, fresh and moist",
"relation": [
"cucumber slice on table",
"cucumber slice near cup",
"cucumber slice near can",
"cucumber slice near bowl"
],
"key_state": "The cucumber slice is on the tabel."
},
{
"category": "cucumber slice",
"description": "small round slice of green cucumber with visible seeds and dark green skin, fresh and moist",
"relation": [
"cucumber slice on table",
"cucumber slice near cup",
"cucumber slice near plate",
"cucumber slice near container"
],
"key_state": "The cucumber slice is on the tabel."
},
{
"category": "table",
"description": "round wooden table surface with visible wood grain, light brown color, flat and smooth",
"relation": []
},
{
"category": "lid",
"description": "transparent plastic lid, clear and smooth surface, detached from container",
"relation": [
"lid on table",
"lid near container",
"lid near orange",
"lid next to bottle"
]
},
{
"category": "container",
"description": "small cylindrical plastic container with a bright lime green lid, white body with printed text, closed",
"relation": [
"container on table",
"lid next to bottle"
]
},
{
"category": "can",
"description": "small cylindrical aluminum can with a pull-tab top, light-colored label with pink and white graphics, unopened",
"relation": [
"can on table",
"can near cup"
]
},
{
"category": "bottle",
"description": "small cylindrical glass bottle, green label",
"relation": [
"jar on table",
"jar next to lid",
"jar next to container"
]
},
{
"category": "orange",
"description": "round orange with textured orange peel and a small green stem, whole and unpeeled",
"relation": [
"orange on table",
"orange next to plate",
"orange near lid"
]
},
{
"category": "plate",
"description": "large round white ceramic plate with a blue leaf-like pattern around the rim, glossy surface, empty",
"relation": [
"plate on table",
"plate next to orange",
"plate next to bowl"
]
}
]
},
{
"start_frame": "2-dining_room-5-abnormal-start.jpg",
"atomic_actions": "C picks up the bowl with a spoon inside from the plate with his left hand| C places the bowl next to the plate| C picks up the spoon with his right hand| C places the spoon on the plate| C picks up the kettle with his right hand| C pours liquid from the kettle into the cup| C puts the kettle back in its original position| C picks up the spoon with his left hand| C picks up the cup with his right hand| C pours the liquid from the cup into the spoon| C puts the cup back in its original position| C pours the liquid from the spoon into the plate| C places the spoon on the plate| C picks up the cup with his right hand| C pours the liquid from the cup onto the table| C puts the cup back in its original position| C touches the kettle| C places his hands on the table",
"end_frame_info": [
{
"category": "bowl",
"description": "small round beige ceramic bowl with a glossy finish, with a red logo on the side",
"relation": [
"bowl on table",
"bowl next to plate"
]
},
{
"category": "plate",
"description": "square-shaped beige ceramic plate with rounded corners, glossy finish, containing a small amount of liquid, with a red logo on the side",
"relation": [
"plate on table",
"plate next to cup"
]
},
{
"category": "cup",
"description": "small round beige ceramic bowl with a glossy finish, containing a small amount of liquid",
"relation": [
"bowl on table",
"bowl next to plate"
]
},
{
"category": "bowl",
"description": "small round beige ceramic bowl with a glossy finish, containing a small amount of orange-red liquid",
"relation": [
"bowl on table",
"bowl next to plate"
]
},
{
"category": "plate",
"description": "oval ceramic plate, containing some red food",
"relation": [
"plate on table",
"plate next to kettle"
]
},
{
"category": "table",
"description": "large rectangular wooden table with a flat surface, light brown finish, showing signs of use with some liquid spills",
"relation": [],
"key_state": "The table has visible liquid spill on the surface."
},
{
"category": "spoon",
"description": "white ceramic spoon with a glossy finish",
"relation": [
"spoon resting on the edge of the square plate"
]
},
{
"category": "pot",
"description": "large metal pot with a handle, containing a red-orange soup with visible ingredients",
"relation": [
"pot on table",
"pot next to plate",
"pot next to bowl",
"pot next to cup"
]
},
{
"category": "kettle",
"description": "large transparent glass kettle with a metal lid and glass handle, containing liquid",
"relation": [
"kettle on table",
"kettle near pot"
]
}
]
},
{
"start_frame": "7-living_room-8-abnormal-start.jpg",
"atomic_actions": "C touches the book cover with his right hand| C opens the book with his right hand| C picks up a small and transparent bookmark with his right hand| C places the bookmark near the book| C flattens the open pages with his right hand| C turns to the next page with his right hand| C flattens the open pages with his right hand| C turns to the next page with his right hand| C flattens the open pages with his right hand| C tears out a page from the book with his right hand| C throws the torn page near the book",
"end_frame_info": [
{
"category": "book",
"description": "open book showing dense black mathematical text and equations on white pages, with irregular marks of torn pages",
"relation": [
"book on table"
],
"key_state": "The book has irregular torn-page marks."
},
{
"category": "paper",
"description": "crumpled white paper with faint black handwritten or printed text, torn at edges",
"relation": [
"paper on table",
"paper near book"
],
"key_state": "The paper is crumpled and torn at edges."
},
{
"category": "table",
"description": "large rectangular table with a smooth, light beige surface",
"relation": []
},
{
"category": "bookmark",
"description": "small and transparent bookmark",
"relation": [
"bookmark on table",
"bookmark near book"
]
}
]
},
{
"start_frame": "7-living_room-4-abnormal-start.jpg",
"atomic_actions": "C picks up the glass with his right hand| C fiddles with the glass| C puts the glass back in its original position| C picks up the kettle with his right hand| C pours a small amount of water from the kettle into the glass| C puts the kettle back in its original position| C picks up the glass with his right hand| C pours the water from the glass onto the table| C lays the glass flat on the table| C picks up the glass with his right hand| C sets the glass upright in its original position",
"end_frame_info": [
{
"category": "glass",
"description": "small transparent glass with embossed vertical ridges and circular patterns, empty and upright",
"relation": [
"glass on table",
"glass next to water spill",
"glass near kettle"
]
},
{
"category": "table",
"description": "light beige smooth table with visible water spill on the surface",
"relation": [],
"key_state": "The table has visible water spill on the surface."
},
{
"category": "basket",
"description": "transparent basket with textured surface",
"relation": [
"basket on table",
"basket containing paper cups",
"basket containing tape"
]
},
{
"category": "paper cup",
"description": "stack of beige paper cups with visible rims",
"relation": [
"paper cups next to tape"
]
},
{
"category": "tape",
"description": "roll of bright yellow adhesive tape with printed text",
"relation": []
},
{
"category": "water spill",
"description": "clear water spill, forming irregular wet patches with reflective surface",
"relation": [
"water spill on table",
"water spill next to glass"
]
},
{
"category": "bag",
"description": "translucent plastic bag with printed text, partially filled, standing upright",
"relation": [
"plastic bag on table",
"plastic bag next to basket"
]
},
{
"category": "kettle",
"description": "transparent glass kettle with red handle",
"relation": [
"kettle on table"
]
},
{
"category": "tissue box",
"description": "blue and white cuboid tissue box",
"relation": [
"tissue box on table",
"tissue box near kettle"
]
},
{
"category": "container",
"description": "cylindrical container with brown yellow lid",
"relation": [
"container on table",
"container behind tissue box"
]
}
]
},
{
"start_frame": "1-kitchen-4-abnormal-start.jpg",
"atomic_actions": "C picks up the cleaning cloth with his right hand| C wipes the kitchen countertop with the cloth| C picks up the cleaning cloth with his right hand| C wipes the kitchen countertop with the cloth| C puts the cloth back in its original position| C twists off the lid of the bottle with his right hand| C picks up the lid| C places the lid to the right of the bottle| C picks up the bottle with his right hand| C pours a small amount of water from the bottle into the paper cup| C puts the bottle back in its original position",
"end_frame_info": [
{
"category": "cup",
"description": "large white cylindrical cup with a metallic interior and a white handle, empty and smooth",
"relation": [
"cup on countertop",
"cup next to paper cup",
"cup next to sink"
]
},
{
"category": "paper cup",
"description": "small beige paper cup, cylindrical shape, partially filled with water, smooth interior and matte texture",
"relation": [
"cup on countertop",
"cup next to bottle"
]
},
{
"category": "bottle",
"description": "tall blue translucent plastic water bottle with wide mouth, partially filled with water, smooth surface",
"relation": [
"bottle on countertop",
"bottle next to lid",
"bottle behind cloth"
],
"key_state": "The bottle is next to the lid."
},
{
"category": "lid",
"description": "blue plastic bottle lid with built-in strainer and gray fabric strap, open and detached from bottle",
"relation": [
"lid on countertop"
],
"key_state": "The lid is open and detached from bottle and placed on the countertop"
},
{
"category": "cloth",
"description": "small folded white cloth with soft, textured surface, lying flat and slightly crumpled",
"relation": [
"cloth on countertop"
]
},
{
"category": "countertop",
"description": "large flat white countertop surface, smooth and clean",
"relation": []
},
{
"category": "sink",
"description": "metallic edge of a kitchen sink visible on the far left, smooth and reflective surface",
"relation": [
"sink in countertop"
]
}
]
},
{
"start_frame": "1-kitchen-1-abnormal-start.jpg",
"atomic_actions": "C picks up the mug with his right hand| C pours all the drink in the mug into the sink| C turns on the faucet with his right hand| C fills the mug with water| C shakes the mug| C pours all the water in the mug into the sink| C places the mug to the left of the faucet| C picks up the cleaning cloth with his right hand| C wipes the kitchen countertop with the cloth| C picks up the cleaning cloth with his right hand| C wipes the kitchen countertop with the cloth| C picks up the cleaning cloth with his right hand| C wipes the kitchen countertop with the cloth| C picks up the cleaning cloth with his right hand. C wipes the faucet with the cloth| C puts the cloth back in its original place| C lays the cloth flat| C straightens the cloth",
"end_frame_info": [
{
"category": "sink",
"description": "stainless steel sink with rectangular basin, rounded corners, visible drain, and water flowing into it",
"relation": [
"sink in countertop",
"sink under faucet"
]
},
{
"category": "faucet",
"description": "black matte-finish faucet with tall spout and lever handle, water flowing from spout",
"relation": [
"faucet over kitchen sink",
"faucet next to mug",
"faucet next tissue box"
],
"key_state": "The water is flowing from the spout of the faucet."
},
{
"category": "tissue box",
"description": "white and light blue tissue box with partially pulled-out tissue",
"relation": [
"tissue box on countertop",
"tissue box behind sink"
]
},
{
"category": "mug",
"description": "cream-colored ceramic mug with brown rim and handle, glossy finish, empty",
"relation": [
"mug on countertop",
"mug next to bottle"
]
},
{
"category": "bottle",
"description": "transparent plastic bottle with blue label and blue cap, label with text, standing upright",
"relation": [
"bottle on countertop"
]
},
{
"category": "cloth",
"description": "striped dishrag with alternating beige and brown horizontal stripes, textured terry cloth, spread out and laid flat",
"relation": [
"cloth on countertop",
"cloth in front of sink"
]
},
{
"category": "countertop",
"description": "light-colored speckled countertop with smooth surface",
"relation": []
}
]
},
{
"start_frame": "6-garage-1-abnormal-start.jpg",
"atomic_actions": "C picks up the phone with his right hand| C glances at the phone| C puts the phone into his clothing pocket| C picks up the water bottle with his left hand| C unscrews the bottle cap with his right hand| C takes a sip of water| C screws the cap back on| C puts the water bottle down| C opens the SUV door with his left hand| C gets out of the SUV| C walks away from the SUV| C looks back at the SUV",
"end_frame_info": [
{
"category": "SUV",
"description": "dark gray modern SUV with sleek design, partially open driver-side door, parked",
"relation": [
"SUV on floor"
],
"key_state": "The driver-side door of the SUV is open."
},
{
"category": "floor",
"description": "gray floor of the parking garage with white painted lines",
"relation": []
},
{
"category": "ceiling",
"description": "industrial ceiling with exposed red metal pipes, white ductwork, and fluorescent light fixtures",
"relation": [
"ceiling above SUV"
]
},
{
"category": "wall",
"description": "white wall featuring blue and white directional arrows and reflective strip with yellow and black",
"relation": [
"wall in front of SUV"
]
}
]
},
{
"start_frame": "1-kitchen-3-abnormal-start.jpg",
"atomic_actions": "C turns on the faucet with his right hand| C picks up the bowl with his right hand| C fills the bowl with water| C shakes the bowl| C pours all the water from the bowl into the sink| C puts the bowl back in its original position| C picks up the cleaning cloth with his right hand| C wipes the kitchen countertop with the cloth| C puts the cloth back in its original position| C lays the cloth flat| C straightens the cloth| C opens the refrigerator with his right hand| C takes an egg out of the refrigerator with his right hand| C puts the egg into the bowl",
"end_frame_info": [
{
"category": "sink",
"description": "stainless steel sink with rectangular basin",
"relation": [
"sink embodied in countertop"
]
},
{
"category": "faucet",
"description": "black matte-finish gooseneck faucet with lever handle, water flowing from spout",
"relation": [
"faucet over sink",
"faucet on countertop",
"faucet next to tissue box",
"faucet near bottle"
],
"key_state": "The water is flowing from the spout of the faucet."
},
{
"category": "bottle",
"description": "transparent plastic bottle with blue cap and label, partially filled with liquid",
"relation": [
"bottle on countertop"
]
},
{
"category": "bowl",
"description": "white ceramic bowl with smooth surface",
"relation": [
"bowl on countertop",
"bowl next to sink"
]
},
{
"category": "egg",
"description": "brown oval-shaped egg with smooth shell",
"relation": [
"egg inside bowl"
]
},
{
"category": "egg",
"description": "brown oval-shaped egg with smooth shell",
"relation": [
"egg inside refrigerator"
]
},
{
"category": "cloth",
"description": "triped dishrag with alternating beige and brown horizontal stripes, textured terry cloth, spread out and laid flat",
"relation": [
"cloth on countertop",
"cloth next to sink"
]
},
{
"category": "countertop",
"description": "light beige speckled countertop with smooth surface",
"relation": [
"countertop next to refrigerator"
]
},
{
"category": "cabinet",
"description": "wooden cabinet with light brown grain texture",
"relation": [
"cabinet under countertop"
]
},
{
"category": "refrigerator",
"description": "white refrigerator with open door, revealing interior shelves and door compartments",
"relation": [
"refrigerator containing eggs"
],
"key_state": "The door of the refrigerator is open."
},
{
"category": "tissue box",
"description": "white and light blue tissue box with partially pulled-out tissue",
"relation": [
"tissue box on countertop"
]
}
]
},
{
"start_frame": "6-garage-2-abnormal-start.jpg",
"atomic_actions": "C walks toward the SUV| C raises his left arm| C glances at his watch| C lowers his left arm| C reaches toward the SUV’s tailgate with his right hand| C opens the tailgate| C reaches into the trunk with his right hand| C takes a box out of the trunk with his right hand| C turns around| C walks away from the SUV| C looks back at the SUV",
"end_frame_info": [
{
"category": "SUV",
"description": "dark-colored SUV with open trunk, rear taillights illuminated, parked",
"relation": [
"SUV on floor"
]
},
{
"category": "tailgate",
"description": "open black tailgate of an SUV, revealing the trunk space",
"relation": [
"tailgate above trunk"
],
"key_state": "The tailgate of the SUV is open."
},
{
"category": "seat",
"description": "rear seat on the left side of the SUV, visible through the open trunk",
"relation": [
"seat inside SUV",
"seat behind trunk"
]
},
{
"category": "seat",
"description": "rear seat on the right side of the SUV, visible through the open trunk",
"relation": [
"seat inside SUV",
"seat behind trunk"
]
},
{
"category": "floor",
"description": "dark gray floor of the parking garage, smooth surface with visible seams and reflections",
"relation": []
},
{
"category": "ceiling",
"description": "industrial ceiling with exposed red and white metal pipes, and fluorescent light fixtures",
"relation": [
"ceiling above SUV"
]
}
]
},
{
"start_frame": "1-kitchen-2-abnormal-start.jpg",
"atomic_actions": "C turns on the faucet with his right hand| C picks up the bowl with his right hand| C fills the bowl with water| C puts the bowl with a small amount of water back in its original position| C turns off the faucet with his right hand| C picks up the bowl with his right hand| C holds the bowl over the sink| C shakes the bowl| C pours all the water from the bowl into the sink| C puts the bowl back in its original position| C picks up the cleaning cloth with his right hand| C wipes the kitchen countertop with the cloth| C puts the cloth back in its original position| C lays the cloth flat| C straightens the cloth| C opens the refrigerator with his right hand| C takes an egg out of the refrigerator with his right hand| C puts the egg into the bowl",
"end_frame_info": [
{
"category": "sink",
"description": "stainless steel sink with rectangular basin",
"relation": [
"sink embodied in countertop"
]
},
{
"category": "faucet",
"description": "black matte-finish gooseneck faucet with lever handle",
"relation": [
"faucet over sink",
"faucet on countertop",
"faucet next to tissue box",
"faucet near bottle"
]
},
{
"category": "bottle",
"description": "transparent plastic bottle with blue cap and label, partially filled with liquid",
"relation": [
"bottle on countertop"
]
},
{
"category": "bowl",
"description": "white ceramic bowl with smooth surface",
"relation": [
"bowl on countertop",
"bowl next to sink"
]
},
{
"category": "egg",
"description": "brown oval-shaped egg with smooth shell",
"relation": [
"egg inside bowl"
]
},
{
"category": "egg",
"description": "brown oval-shaped egg with smooth shell",
"relation": [
"egg inside refrigerator"
]
},
{
"category": "cloth",
"description": "triped dishrag with alternating beige and brown horizontal stripes, textured terry cloth, spread out and laid flat",
"relation": [
"cloth on countertop",
"cloth next to sink"
]
},
{
"category": "countertop",
"description": "light beige speckled countertop with smooth surface",
"relation": [
"countertop next to refrigerator"
]
},
{
"category": "cabinet",
"description": "wooden cabinet with light brown grain texture",
"relation": [
"cabinet under countertop"
]
},
{
"category": "refrigerator",
"description": "white refrigerator with open door, revealing interior shelves and door compartments",
"relation": [
"refrigerator containing eggs"
],
"key_state": "The door of the refrigerator is open."
},
{
"category": "tissue box",
"description": "white and light blue tissue box with partially pulled-out tissue",
"relation": [
"tissue box on countertop"
]
}
]
}
] |