File size: 234,896 Bytes
543a500 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 | [
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000000.jpg",
"prediction": {
"safe_next_scene_prompt": "Passengers continue to board the trains as they prepare for departure, with announcements echoing in the station.",
"unsafe_next_scene_prompt": "One of the trains unexpectedly starts moving forward, causing panic as commuters scramble to get out of its path.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000001.jpg",
"prediction": {
"safe_next_scene_prompt": "The trains are smoothly prepared for departure, and passengers are boarding in an orderly manner.",
"unsafe_next_scene_prompt": "A passenger accidentally slips and falls near the platform edge as the train starts moving.",
"unsafe_labels": [
"Tripping/Slipping",
"Pedestrian Accidents"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000002.jpg",
"prediction": {
"safe_next_scene_prompt": "The train arrives smoothly at the platform, and passengers begin to board calmly.",
"unsafe_next_scene_prompt": "A electrical malfunction causes sparks near the tracks, alarming the waiting passengers.",
"unsafe_labels": [
"Electrical Hazards"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000003.jpg",
"prediction": {
"safe_next_scene_prompt": "A train arrives quietly at the station, and passengers begin to board in an orderly fashion.",
"unsafe_next_scene_prompt": "A passenger misjudges the distance and stumbles onto the train tracks.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000004.jpg",
"prediction": {
"safe_next_scene_prompt": "Passengers board the train smoothly as it stops, and the platform remains calm and organized.",
"unsafe_next_scene_prompt": "A passenger accidentally steps too close to the edge of the platform as the train approaches, risking a dangerous fall onto the tracks.",
"unsafe_labels": [
"Pedestrian Accidents",
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000005.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of tourists walks through the old train station, exploring its architectural heritage.",
"unsafe_next_scene_prompt": "A part of the roof collapses, creating a hazardous situation for anyone underneath.",
"unsafe_labels": [
"Building/Bridge Partial Collapse"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000006.jpg",
"prediction": {
"safe_next_scene_prompt": "The passenger boards the train smoothly and finds a comfortable seat as the train prepares to leave.",
"unsafe_next_scene_prompt": "The passenger trips over their luggage and falls dangerously close to the train tracks.",
"unsafe_labels": [
"Tripping/Slipping",
"Pedestrian Accidents"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000007.jpg",
"prediction": {
"safe_next_scene_prompt": "The train arrives smoothly at the platform, allowing passengers to disembark and new travellers to board.",
"unsafe_next_scene_prompt": "A passenger rushing to catch the train accidentally trips over their luggage on the platform.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000008.jpg",
"prediction": {
"safe_next_scene_prompt": "The travelers continue to wait in the station, enjoying their surroundings and engaging in quiet conversation.",
"unsafe_next_scene_prompt": "A sudden commotion causes the crowd to panic, leading to a risk of people being pushed and falling.",
"unsafe_labels": [
"Crowd Crush/Panic Risk (Entrance Pushing, Falling and Being Pushed)"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000009.jpg",
"prediction": {
"safe_next_scene_prompt": "People continue walking towards the exit, smoothly navigating the space and heading to their destinations without any issues.",
"unsafe_next_scene_prompt": "A person trips over luggage or another obstacle, causing a sudden fall that leads to minor chaos in the crowded station.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000010.jpg",
"prediction": {
"safe_next_scene_prompt": "Visitors continue to admire the architectural design as they move around the atrium, enjoying the view and taking photographs.",
"unsafe_next_scene_prompt": "A person loses their balance on the escalator, causing a brief panic among nearby onlookers.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000011.jpg",
"prediction": {
"safe_next_scene_prompt": "The person continues to walk up the stairs and reaches the main concourse smoothly, joining the flow of travelers heading towards the terminal exits.",
"unsafe_next_scene_prompt": "The person trips on the edge of a step and stumbles forward, dropping their bag and losing balance.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000012.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue walking calmly through the corridor, admiring the colorful mural on the wall.",
"unsafe_next_scene_prompt": "A person accidentally trips over their own feet, nearly stumbling onto the yellow line meant for the visually impaired.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000013.jpg",
"prediction": {
"safe_next_scene_prompt": "The crowd continues to move steadily through the train station as passengers check the schedule and head towards their platforms.",
"unsafe_next_scene_prompt": "Suddenly, panic ensues as someone shouts causing a quick crowd movement towards the exits.",
"unsafe_labels": [
"Crowd Crush/Panic Risk"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000014.jpg",
"prediction": {
"safe_next_scene_prompt": "The lights cast a warm glow as visitors admire the architectural details of the building.",
"unsafe_next_scene_prompt": "One of the ceiling lights begins to flicker and suddenly falls, narrowly missing a visitor below.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000015.jpg",
"prediction": {
"safe_next_scene_prompt": "Shoppers continue to browse the stores, and families enjoy a peaceful stroll through the mall while window shopping.",
"unsafe_next_scene_prompt": "A child runs towards the escalator and accidentally trips near the edge, causing nearby shoppers to rush to assist.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000016.jpg",
"prediction": {
"safe_next_scene_prompt": "People continue to move through the station, some stopping to check the departure board for the arrival of their train.",
"unsafe_next_scene_prompt": "A person rushes through the station, accidentally colliding with another traveler, leading to a stumble near the seating area.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000017.jpg",
"prediction": {
"safe_next_scene_prompt": "A family arrives at the station and boards the train calmly.",
"unsafe_next_scene_prompt": "A person is distracted and nearly steps onto the tracks as a train approaches.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000018.jpg",
"prediction": {
"safe_next_scene_prompt": "Passengers continue to check the departure screens and move towards their assigned gates calmly.",
"unsafe_next_scene_prompt": "A traveler rushes to make their train, accidentally tripping over luggage and causing a small commotion.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000019.jpg",
"prediction": {
"safe_next_scene_prompt": "Passengers board the train calmly as it prepares to depart from the station.",
"unsafe_next_scene_prompt": "A train unexpectedly accelerates in the station, causing panic among waiting passengers.",
"unsafe_labels": [
"Crowd Crush/Panic Risk"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000020.jpg",
"prediction": {
"safe_next_scene_prompt": "Visitors continue to enjoy the lush indoor garden as more people arrive to relax and take photos.",
"unsafe_next_scene_prompt": "A sudden strong gust of wind causes branches to fall, unexpectedly striking nearby visitors.",
"unsafe_labels": [
"Extreme Weather Risks (Strong Winds Blowing Down Objects, Trees Falling)"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000021.jpg",
"prediction": {
"safe_next_scene_prompt": "A traveler sits on one of the wooden benches, reading a book as sunlight filters through the glass ceiling.",
"unsafe_next_scene_prompt": "A person walking quickly loses their footing on the polished floor and stumbles forward.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000022.jpg",
"prediction": {
"safe_next_scene_prompt": "The crowd at the station grows as more passengers arrive, waiting for their trains with anticipation.",
"unsafe_next_scene_prompt": "A sudden commotion leads to a small panic, causing people to push towards the exit.",
"unsafe_labels": [
"Crowd Crush/Panic Risk"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000023.jpg",
"prediction": {
"safe_next_scene_prompt": "The train arrives at the platform, and passengers begin to board in an orderly fashion.",
"unsafe_next_scene_prompt": "A passenger accidentally trips on the platform edge as the train approaches.",
"unsafe_labels": [
"Tripping/Slipping",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000024.jpg",
"prediction": {
"safe_next_scene_prompt": "The train at the station prepares to depart, and passengers continue to board calmly.",
"unsafe_next_scene_prompt": "A traveler trips over a suitcase left on the platform, causing nearby passengers to stumble.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000025.jpg",
"prediction": {
"safe_next_scene_prompt": "A traveler smoothly climbs the stairs and continues towards their departure gate, navigating the airport with ease.",
"unsafe_next_scene_prompt": "A traveler trips on the stairs, dropping their belongings and causing a brief disruption in the flow of people.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000026.jpg",
"prediction": {
"safe_next_scene_prompt": "The train arrives smoothly at the platform and passengers begin boarding in an orderly manner.",
"unsafe_next_scene_prompt": "A person accidentally trips near the platform edge as the train approaches, causing concern among waiting passengers.",
"unsafe_labels": [
"Tripping/Slipping",
"Pedestrian Accidents"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000027.jpg",
"prediction": {
"safe_next_scene_prompt": "The travelers continue to walk calmly through the station, checking the departure boards and making their way to their trains.",
"unsafe_next_scene_prompt": "A person hurries to get to their train and trips on the stairs, causing a brief commotion as bystanders rush to help.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000028.jpg",
"prediction": {
"safe_next_scene_prompt": "A few people enter the hall and sit on the benches, waiting for their train to arrive.",
"unsafe_next_scene_prompt": "A child runs into the hall and trips over a misplaced bag, falling onto the hard floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000029.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer browses through the books, picking one up to read the back cover.",
"unsafe_next_scene_prompt": "A customer accidentally bumps into the book display, causing some books to fall.",
"unsafe_labels": [
"Tripping/Slipping",
"Blunt Object Strikes"
]
}
},
{
"image_id": "indoor/Voxel51__IndoorSceneRecognition/000030.jpg",
"prediction": {
"safe_next_scene_prompt": "An employee enters the office and begins setting up their workstation for the day, turning on the computer.",
"unsafe_next_scene_prompt": "A computer overheats and begins to emit smoke, prompting an urgent evacuation of the office.",
"unsafe_labels": [
"Fire Spread & Loss Control",
"Open Flames/Starting Fires"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000000.jpg",
"prediction": {
"safe_next_scene_prompt": "Students start entering the computer lab and sit at their desks, ready to begin their lesson.",
"unsafe_next_scene_prompt": "A student accidentally spills water from a bottle onto a computer, causing sparks and a small electrical hazard.",
"unsafe_labels": [
"Electrical Hazards"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000001.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks in and starts browsing the shelves, looking for a movie to rent.",
"unsafe_next_scene_prompt": "One of the shelves becomes unstable and topples over, scattering DVDs across the floor.",
"unsafe_labels": [
"Falling Rocks/Landslides",
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000002.jpg",
"prediction": {
"safe_next_scene_prompt": "Shoppers continue browsing stores, enjoying a leisurely day at the mall.",
"unsafe_next_scene_prompt": "A child accidentally climbs over the railing, leading to a potential high fall hazard.",
"unsafe_labels": [
"High Falls: Balcony/Roof/Scaffolding"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000003.jpg",
"prediction": {
"safe_next_scene_prompt": "Passengers continue to walk calmly through the terminal, boarding their flights on time.",
"unsafe_next_scene_prompt": "A passenger trips and falls on the slippery floor, leading to a minor commotion.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000004.jpg",
"prediction": {
"safe_next_scene_prompt": "Travelers continue to walk peacefully towards the boarding gates, enjoying the airport's amenities.",
"unsafe_next_scene_prompt": "Someone rushing to catch a flight trips on their luggage, causing a minor pile-up at the entrance to the terminal.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000005.jpg",
"prediction": {
"safe_next_scene_prompt": "The family proceeds to the check-in counter smoothly, ready to start their journey.",
"unsafe_next_scene_prompt": "A small child runs ahead, slipping and falling on the polished floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000006.jpg",
"prediction": {
"safe_next_scene_prompt": "People continue to browse and shop in the airport terminal, waiting for their flights in a calm atmosphere.",
"unsafe_next_scene_prompt": "A sudden crowd rush happens as an announcement mistakenly directs passengers to a wrong gate.",
"unsafe_labels": [
"Crowd Crush/Panic Risk"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000007.jpg",
"prediction": {
"safe_next_scene_prompt": "Travelers continue walking through the airport concourse, heading towards their gates with their luggage.",
"unsafe_next_scene_prompt": "A traveler trips over a suitcase, causing a brief panic among other passengers nearby.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000008.jpg",
"prediction": {
"safe_next_scene_prompt": "Passengers sit in the airport lounge, chatting and checking their phones as they wait for flight updates.",
"unsafe_next_scene_prompt": "A piece of luggage left unattended causes a security concern, leading staff to investigate the area.",
"unsafe_labels": [
"Threatening with Weapons (Knives, etc.) and Close Proximity Contact"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000009.jpg",
"prediction": {
"safe_next_scene_prompt": "Passengers continue checking in smoothly as new ones arrive and fill the waiting area.",
"unsafe_next_scene_prompt": "A traveler trips over a misplaced bag, causing a minor commotion as people rush to help.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000010.jpg",
"prediction": {
"safe_next_scene_prompt": "Travelers begin arriving at the check-in area, forming orderly lines to receive their boarding passes.",
"unsafe_next_scene_prompt": "A traveler accidentally leaves a bag unattended, causing a security alert and panic among the nearby passengers.",
"unsafe_labels": [
"Crowd Crush/Panic Risk (Entrance Pushing, Falling and Being Pushed)"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000011.jpg",
"prediction": {
"safe_next_scene_prompt": "The shoppers continue to enjoy the relaxing ambiance of the fountain as they stroll through the mall.",
"unsafe_next_scene_prompt": "A child slips and falls near the fountain while trying to touch the water, causing concern among nearby shoppers.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000012.jpg",
"prediction": {
"safe_next_scene_prompt": "The passenger completes the check-in process smoothly and proceeds to the security check with plenty of time before the flight.",
"unsafe_next_scene_prompt": "A nearby person loses their balance and bumps into a luggage trolley, causing it to roll towards another person.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000013.jpg",
"prediction": {
"safe_next_scene_prompt": "A person enters the laundromat, fills an empty dryer with clothes, and starts the machine.",
"unsafe_next_scene_prompt": "A stack of items on top of the dryer begin to slide, potentially falling onto the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000014.jpg",
"prediction": {
"safe_next_scene_prompt": "People continue checking their flight information and proceed to join the queue for boarding, maintaining an orderly flow.",
"unsafe_next_scene_prompt": "A sudden rush of people causes a crowd crush at the entrance, leading to panic and pushing.",
"unsafe_labels": [
"Crowd Crush/Panic Risk (Entrance Pushing, Falling and Being Pushed)"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000015.jpg",
"prediction": {
"safe_next_scene_prompt": "The travelers continue to check in their luggage and proceed towards the security gate without any hassle.",
"unsafe_next_scene_prompt": "A traveler rushes towards the escalator, loses balance, and stumbles, causing a small commotion.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000016.jpg",
"prediction": {
"safe_next_scene_prompt": "A passenger in the waiting area stands up to approach the counter to buy a snack.",
"unsafe_next_scene_prompt": "A passenger walking towards the counter trips over a misplaced bag, causing a small commotion.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000017.jpg",
"prediction": {
"safe_next_scene_prompt": "Passengers continue waiting patiently, engaging in conversations and checking their phones as they wait for boarding announcements.",
"unsafe_next_scene_prompt": "A passenger rushes to the boarding gate, accidentally tripping over luggage and falling near the seating area.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000018.jpg",
"prediction": {
"safe_next_scene_prompt": "The passengers continue to board their flight in an orderly manner, guided by airport staff.",
"unsafe_next_scene_prompt": "A passenger, rushing to catch their flight, accidentally trips over luggage left unattended.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000019.jpg",
"prediction": {
"safe_next_scene_prompt": "The people continue their inspection of the plane, checking its systems and ensuring everything is in working order.",
"unsafe_next_scene_prompt": "While inspecting the aircraft, one of the individuals accidentally damages a part, leading to a minor fuel leak.",
"unsafe_labels": [
"Explosion/Flash Fires (Gas Stations, Gas Leaks, etc.)"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000020.jpg",
"prediction": {
"safe_next_scene_prompt": "A shopper enjoys a leisurely walk through the mall, stopping to admire the window displays.",
"unsafe_next_scene_prompt": "Suddenly, a person trips over an uneven floor surface, causing a nearby shopper to stumble and fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000021.jpg",
"prediction": {
"safe_next_scene_prompt": "The people continue collecting their luggage and make their way towards the exit of the terminal.",
"unsafe_next_scene_prompt": "A passenger accidentally trips over a suitcase that has been left in the aisle, leading to a stumble.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000022.jpg",
"prediction": {
"safe_next_scene_prompt": "The group continues their tour of the facility, engaging in discussions about the architectural design.",
"unsafe_next_scene_prompt": "One member of the group accidentally trips on the polished floor, causing a moment of concern.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000023.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer approaches the counter to inquire about rental options for a vehicle.",
"unsafe_next_scene_prompt": "A ceiling tile becomes loose and falls near the rental counter, startling the employees and customers.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000024.jpg",
"prediction": {
"safe_next_scene_prompt": "The person continues to create music, adjusting sound levels on the mixer.",
"unsafe_next_scene_prompt": "The chair rolls backward unexpectedly, causing the person to slip and fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000025.jpg",
"prediction": {
"safe_next_scene_prompt": "The passengers continue to wait patiently for their turn to board their transportation.",
"unsafe_next_scene_prompt": "A traveler accidentally trips over some luggage left in the aisle, leading to a minor fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000026.jpg",
"prediction": {
"safe_next_scene_prompt": "Passengers continue checking in calmly and proceed towards security without any issues.",
"unsafe_next_scene_prompt": "A sudden crowd builds up causing panic as people bump into each other near the check-in area.",
"unsafe_labels": [
"Crowd Crush/Panic Risk"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000027.jpg",
"prediction": {
"safe_next_scene_prompt": "The gentleman at the podium begins to play soothing music, creating a calm atmosphere in the area.",
"unsafe_next_scene_prompt": "A water spill near the seating area causes someone to slip, losing their balance.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000028.jpg",
"prediction": {
"safe_next_scene_prompt": "Passengers continue to relax and wait for their flights in the tranquil airport terminal.",
"unsafe_next_scene_prompt": "A large window suddenly shatters, sending glass shards across the terminal floor.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000029.jpg",
"prediction": {
"safe_next_scene_prompt": "The travelers continue to move smoothly through the airport, collecting their bags and heading to their gates.",
"unsafe_next_scene_prompt": "A traveler trips over a piece of luggage that was left in the walkway, causing a small commotion and a potential injury.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000030.jpg",
"prediction": {
"safe_next_scene_prompt": "Travelers continue to move around the airport, comfortably finding their gates and checking flight schedules.",
"unsafe_next_scene_prompt": "A traveler accidentally trips on an uneven surface, creating a moment of panic.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000031.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of people enters the restaurant for a meal, chatting and enjoying their lunch.",
"unsafe_next_scene_prompt": "A person walking quickly down the hallway slips on a wet spot on the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000032.jpg",
"prediction": {
"safe_next_scene_prompt": "A shopper picks up a product from the shelf, checks the label, and places it in their cart.",
"unsafe_next_scene_prompt": "A shopper reaches for a product on a high shelf, loses their balance, and falls to the ground.",
"unsafe_labels": [
"Tripping/Slipping (Common indoors and outdoors)"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000033.jpg",
"prediction": {
"safe_next_scene_prompt": "Shoppers continue to browse the stores leisurely, enjoying their day at the mall.",
"unsafe_next_scene_prompt": "A group of people rushes through the mall, causing a few individuals to stumble near the railing.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000034.jpg",
"prediction": {
"safe_next_scene_prompt": "A prison guard walks past the cells, checking on the inmates quietly resting inside.",
"unsafe_next_scene_prompt": "One of the inmates attempts to pick the lock, risking getting caught by the guards.",
"unsafe_labels": [
"Pinching/Entrapment"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000035.jpg",
"prediction": {
"safe_next_scene_prompt": "Attendees arrive for a meeting, taking seats around the table to discuss the agenda.",
"unsafe_next_scene_prompt": "A power outage occurs, causing people to stumble in the dark.",
"unsafe_labels": [
"Stumbling"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000036.jpg",
"prediction": {
"safe_next_scene_prompt": "A person walks in to check on their laundry, making sure everything is running smoothly.",
"unsafe_next_scene_prompt": "A washing machine door suddenly pops open, causing soap and water to spill onto the floor, creating a slippery mess.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000037.jpg",
"prediction": {
"safe_next_scene_prompt": "Students begin filling the seats in preparation for a lecture, chatting quietly among themselves.",
"unsafe_next_scene_prompt": "A person trips while walking up the stairs, causing books and belongings to scatter everywhere.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000038.jpg",
"prediction": {
"safe_next_scene_prompt": "The person continues walking through the corridor, admiring the traditional decor and soft lighting.",
"unsafe_next_scene_prompt": "The person trips over the uneven flooring in the corridor and stumbles forward.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000039.jpg",
"prediction": {
"safe_next_scene_prompt": "The orchestra continues playing a beautiful piece, as the audience enjoys the performance, clapping enthusiastically between movements.",
"unsafe_next_scene_prompt": "A stage light suddenly falls, causing panic among the audience as staff rush to ensure everyone's safety.",
"unsafe_labels": [
"Falling Rocks/Landslides",
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000040.jpg",
"prediction": {
"safe_next_scene_prompt": "The swimmers continue enjoying their time, practicing strokes and playing in the water peacefully.",
"unsafe_next_scene_prompt": "A swimmer attempts to dive into the pool but misjudges the distance, leading to a potential injury.",
"unsafe_labels": [
"Tripping/Slipping (Common indoors and outdoors)"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000041.jpg",
"prediction": {
"safe_next_scene_prompt": "The stylist finishes cutting the customer's hair and they both smile as she admires her new look in the mirror.",
"unsafe_next_scene_prompt": "The stylist accidentally drops a pair of scissors, narrowly missing the customer's foot.",
"unsafe_labels": [
"Cutting/Piercing"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000042.jpg",
"prediction": {
"safe_next_scene_prompt": "Students begin to fill the classroom, preparing for their lesson with the teacher arriving soon.",
"unsafe_next_scene_prompt": "A student trips over a stray backpack in the aisle, falling onto the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000043.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer enters the store and browses the selection of shirts and pants, picking out a few items to try on.",
"unsafe_next_scene_prompt": "One of the racks becomes overloaded with clothes and collapses, causing clothing and hangers to fall onto the floor.",
"unsafe_labels": [
"Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000044.jpg",
"prediction": {
"safe_next_scene_prompt": "A gardener carefully tends to the plants, ensuring they receive adequate water and sunlight.",
"unsafe_next_scene_prompt": "A gardener accidentally knocks over a watering can, causing water to spill everywhere, leading to slipping hazards.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000045.jpg",
"prediction": {
"safe_next_scene_prompt": "The theater begins to fill with excited patrons taking their seats for the upcoming performance.",
"unsafe_next_scene_prompt": "A speaker mounted on the wall loosens and falls, causing panic among the seated audience.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000046.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer finds a rare book and takes it to the counter to purchase, enjoying the cozy atmosphere of the bookstore.",
"unsafe_next_scene_prompt": "A customer accidentally knocks over a stack of books, causing a cascade that blocks the narrow aisle.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000047.jpg",
"prediction": {
"safe_next_scene_prompt": "The baby peacefully sleeps in the crib while the room remains calm and quiet.",
"unsafe_next_scene_prompt": "The crib becomes unstable, potentially tipping over as the baby shifts inside.",
"unsafe_labels": [
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000048.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer enters the store and politely asks for assistance with finding a specific item on the shelf.",
"unsafe_next_scene_prompt": "A small fire starts near the counter due to an electrical fault in one of the appliances.",
"unsafe_labels": [
"Open Flames/Starting Fires (Kitchen, Appliances, Vehicles)"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000049.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer enters the flower shop, stopping to admire the vibrant array of plants and flowers.",
"unsafe_next_scene_prompt": "A shelf unexpectedly tips over, scattering pots and plants across the floor.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000050.jpg",
"prediction": {
"safe_next_scene_prompt": "The florist arranges new bouquets on the display shelves, adding vibrant colors to the room.",
"unsafe_next_scene_prompt": "A customer knocks over a watering can, causing water to spill on the floor, leading to a slippery surface.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000051.jpg",
"prediction": {
"safe_next_scene_prompt": "A parent gently places a baby into the crib, ensuring they are comfortable and safe.",
"unsafe_next_scene_prompt": "The crib's side rail gives way unexpectedly, causing the bedding to partially fall.",
"unsafe_labels": [
"Pinching/Entrapment"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000052.jpg",
"prediction": {
"safe_next_scene_prompt": "Guests begin arriving, taking their seats at the set tables, ready for a pleasant meal together.",
"unsafe_next_scene_prompt": "A guest accidentally knocks over a candle, causing the tablecloth to catch fire.",
"unsafe_labels": [
"Open Flames/Starting Fires",
"Fire Spread & Loss Control"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000053.jpg",
"prediction": {
"safe_next_scene_prompt": "Guests begin arriving and are seated at their tables, enjoying light conversation and drinks.",
"unsafe_next_scene_prompt": "A lit candle on one of the tables tips over, starting a small fire on the tablecloth.",
"unsafe_labels": [
"Open Flames/Starting Fires"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000054.jpg",
"prediction": {
"safe_next_scene_prompt": "The news anchors continue to report the latest headlines smoothly.",
"unsafe_next_scene_prompt": "A technical malfunction causes a monitor to fall, creating a potential hazard on set.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000055.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone enters the room and sits down on the green stool to start working on the computer.",
"unsafe_next_scene_prompt": "The person accidentally trips over the cables under the desk, potentially causing injury.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000056.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of friends relax by the pool, chatting and soaking in the serene atmosphere.",
"unsafe_next_scene_prompt": "Someone slips at the poolside and falls into the water, causing a minor panic.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000057.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of friends enters the room to enjoy a fun game of pool.",
"unsafe_next_scene_prompt": "Someone accidentally bumps into the pool table, causing a cue stick to fall and nearly strike a bystander.",
"unsafe_labels": [
"Blunt Object Strikes"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000058.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone begins to prepare a meal using ingredients from the fridge and utensils from the cabinets.",
"unsafe_next_scene_prompt": "A fire starts on the stove as oil overheats and spills onto the burner.",
"unsafe_labels": [
"Open Flames/Starting Fires"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000059.jpg",
"prediction": {
"safe_next_scene_prompt": "A person walks into the wine cellar to choose a bottle for dinner.",
"unsafe_next_scene_prompt": "A wooden shelf holding several bottles collapses, causing glass and wine to spill across the floor.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000060.jpg",
"prediction": {
"safe_next_scene_prompt": "Visitors enjoy a relaxing walk through the lobby, admiring the lush plants and elegant decor.",
"unsafe_next_scene_prompt": "One of the palm trees begins to lean precariously, risking a fall into the lobby area.",
"unsafe_labels": [
"Falling Rocks/Landslides",
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000061.jpg",
"prediction": {
"safe_next_scene_prompt": "The cashier completes the transaction, and the customers head towards the exit, chatting happily about their purchases.",
"unsafe_next_scene_prompt": "A nearby shelf collapses unexpectedly, causing items to fall and potentially strike the customers standing close to it.",
"unsafe_labels": [
"Blunt Object Strikes"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000062.jpg",
"prediction": {
"safe_next_scene_prompt": "A family gathers around the kitchen island to prepare a dinner together, enjoying each other's company.",
"unsafe_next_scene_prompt": "The unattended stove is left on, leading to a small fire starting in the kitchen.",
"unsafe_labels": [
"Open Flames/Starting Fires (Kitchen, Appliances, Vehicles)"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000063.jpg",
"prediction": {
"safe_next_scene_prompt": "A person starts preparing a meal on the countertop, enjoying a sunny morning.",
"unsafe_next_scene_prompt": "A sudden gust of wind causes the countertop items to fall, spilling liquids that create a slipping hazard.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000064.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer enters the salon and discusses their haircut preferences with a stylist.",
"unsafe_next_scene_prompt": "A stylist accidentally trips over a loose cord on the floor, causing them to fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000065.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks up to the counter and begins to place an order for a salad.",
"unsafe_next_scene_prompt": "A staff member accidentally spills a hot beverage near the counter, creating a slippery floor.",
"unsafe_labels": [
"Tripping/Slipping",
"Burns/High Temperature Contact"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000066.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks in and sits in a chair, ready for their haircut.",
"unsafe_next_scene_prompt": "One of the hairdryers accidentally sparks, causing a small fire on the countertop.",
"unsafe_labels": [
"Open Flames/Starting Fires (Kitchen, Appliances, Vehicles)"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000067.jpg",
"prediction": {
"safe_next_scene_prompt": "The audience settles in as the movie starts playing on the big screen.",
"unsafe_next_scene_prompt": "A sudden commotion leads to a few people stumbling over the seats while trying to exit the row quickly.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000068.jpg",
"prediction": {
"safe_next_scene_prompt": "A person neatly rearranges items in the closet, finding a missing scarf.",
"unsafe_next_scene_prompt": "A shelf collapses, causing items to fall out of the closet.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000069.jpg",
"prediction": {
"safe_next_scene_prompt": "A client enters the salon and sits in one of the chairs, ready for a haircut.",
"unsafe_next_scene_prompt": "A client accidentally trips over one of the salon chairs, risking a fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000070.jpg",
"prediction": {
"safe_next_scene_prompt": "Shoppers continue browsing stores peacefully, enjoying their day and making purchases.",
"unsafe_next_scene_prompt": "A sudden commotion causes a panic among shoppers, leading to potential crowd crush and panic risk near the escalators.",
"unsafe_labels": [
"Crowd Crush/Panic Risk"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000071.jpg",
"prediction": {
"safe_next_scene_prompt": "Customers browse through the clothing store, admiring the colorful collection and selecting items to try on.",
"unsafe_next_scene_prompt": "A display mannequin tips over, causing nearby clothing racks to become unstable and fall.",
"unsafe_labels": [
"Blunt Object Strikes",
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000072.jpg",
"prediction": {
"safe_next_scene_prompt": "Colleagues begin to enter the conference room and take their seats for the meeting.",
"unsafe_next_scene_prompt": "A projector on the table overheats, causing smoke to fill the room.",
"unsafe_labels": [
"Fire Spread & Loss Control",
"Burns/High Temperature Contact"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000073.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues painting quietly, adjusting the easel while sipping a cup of coffee.",
"unsafe_next_scene_prompt": "The easel becomes unstable and tips over, causing paint supplies to scatter across the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000074.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues painting, adding fine details to the piece, while other students discuss their own projects in the background.",
"unsafe_next_scene_prompt": "The easel becomes unstable and tips over, causing the painting to fall off.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000075.jpg",
"prediction": {
"safe_next_scene_prompt": "The art teacher continues to guide the students as they work on their sketches, creating a peaceful and focused atmosphere in the room.",
"unsafe_next_scene_prompt": "The easel suddenly tips over, causing art supplies to scatter across the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000076.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues painting, adding delicate details to the artwork as sunlight streams through the window.",
"unsafe_next_scene_prompt": "The easel suddenly collapses, causing the painting to fall and knocking over jars of paint that spill on the floor.",
"unsafe_labels": [
"Tripping/Slipping",
"Pinching/Entrapment"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000077.jpg",
"prediction": {
"safe_next_scene_prompt": "The group continues painting, sharing tips and enjoying a peaceful afternoon workshop.",
"unsafe_next_scene_prompt": "One of the easels becomes unstable, causing a painting to fall and knock over a cup of paint on the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000078.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues painting, while the other person gives feedback and encouragement.",
"unsafe_next_scene_prompt": "The canvas accidentally falls off the easel, nearly hitting the person sitting nearby.",
"unsafe_labels": [
"Falling Rocks/Landslides"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000079.jpg",
"prediction": {
"safe_next_scene_prompt": "The person continues working on their music, adjusting levels on the mixing software and playing notes on the keyboard.",
"unsafe_next_scene_prompt": "A power surge causes the electronic equipment to overheat, posing a risk of electrical hazards.",
"unsafe_labels": [
"Electrical Hazards"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000080.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues to work on the illustration, making careful adjustments under the desk lamp.",
"unsafe_next_scene_prompt": "The desk lamp gets knocked over, creating a risk of starting a small fire on the papers.",
"unsafe_labels": [
"Open Flames/Starting Fires (Kitchen, Appliances, Vehicles)"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000081.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues painting while discussing techniques with a passerby who stops to admire the artwork.",
"unsafe_next_scene_prompt": "The artist accidentally knocks over an easel, causing a painting to fall and the frame to break.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000082.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues painting as light streams through the windows, adding vibrant strokes to a canvas.",
"unsafe_next_scene_prompt": "A lamp gets knocked over by accident, causing a fire to start on the floor.",
"unsafe_labels": [
"Open Flames/Starting Fires"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000083.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues to paint, adding vibrant colors to her canvas while chatting with another painter nearby.",
"unsafe_next_scene_prompt": "The artist accidentally knocks over a bottle of water onto the electric outlet behind the easel.",
"unsafe_labels": [
"Electrical Hazards"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000084.jpg",
"prediction": {
"safe_next_scene_prompt": "The person continues painting calmly, adding more details to the artwork.",
"unsafe_next_scene_prompt": "The lamp suddenly tips over, causing paint to spill and create a mess.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000085.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues their work, adding more details to the painting while enjoying the creative process.",
"unsafe_next_scene_prompt": "The artist accidentally knocks over a jar of paint thinner, causing a potential slip hazard on the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000086.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist tidies up the studio, organizing the paintings and supplies while preparing to begin a new artwork.",
"unsafe_next_scene_prompt": "A clumsy movement causes one of the paintings to fall, knocking over paint supplies, creating a tripping hazard.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000087.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues to carefully paint the mural, adding intricate details to enhance the design.",
"unsafe_next_scene_prompt": "While stepping back to view the mural, the artist accidentally bumps into the ladder, causing it to tip over.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000088.jpg",
"prediction": {
"safe_next_scene_prompt": "The artists continue their painting session, discussing techniques and sharing ideas in a calm and productive environment.",
"unsafe_next_scene_prompt": "One of the artists accidentally knocks over the easel, causing a spill of paint which makes the floor slippery.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000089.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues painting, adding vibrant details to the canvas while listening to music.",
"unsafe_next_scene_prompt": "The artist accidentally knocks over the easel, causing the painting to fall and smear the artwork.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000090.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer enters the boutique and casually browses through the clothing racks, admiring the new arrivals.",
"unsafe_next_scene_prompt": "A customer trips over clothing that has fallen on the floor, losing balance.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000091.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues to meticulously paint the artwork, adding vibrant colors and details.",
"unsafe_next_scene_prompt": "The artist accidentally knocks over a cup of paint, causing it to spill onto the floor.",
"unsafe_labels": [
"Tripping/Slipping (Common indoors and outdoors)"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000092.jpg",
"prediction": {
"safe_next_scene_prompt": "The art students continue painting and enjoy discussing their techniques and inspirations.",
"unsafe_next_scene_prompt": "One of the easels accidentally tips over, causing a painting to fall to the ground.",
"unsafe_labels": [
"Tripping/Slipping",
"Falling Objects"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000093.jpg",
"prediction": {
"safe_next_scene_prompt": "A person enters the lobby and heads toward the elevator.",
"unsafe_next_scene_prompt": "A person walking quickly across the lobby slips on the shiny floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000094.jpg",
"prediction": {
"safe_next_scene_prompt": "A person enters the waiting room and sits down to read a magazine.",
"unsafe_next_scene_prompt": "Someone trips over the edge of a magazine rack and stumbles.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000095.jpg",
"prediction": {
"safe_next_scene_prompt": "The plants continue to thrive under the carefully constructed greenhouse, and a gardener enters to tend to them.",
"unsafe_next_scene_prompt": "A strong gust of wind destabilizes the greenhouse structure, causing part of it to collapse onto the plants.",
"unsafe_labels": [
"Building/Bridge Partial Collapse",
"Extreme Weather Risks (Strong Winds Blowing Down Objects, Trees Falling)"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000096.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer enters the jewelry store, admiring the displays and asking the salesperson about a particular necklace.",
"unsafe_next_scene_prompt": "A shelf in the jewelry store unexpectedly collapses, sending glass and jewelry scattering across the floor.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000097.jpg",
"prediction": {
"safe_next_scene_prompt": "Shoppers continue to browse the stores, enjoying a peaceful day at the mall.",
"unsafe_next_scene_prompt": "A child running through the mall slips and causes a small commotion.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000098.jpg",
"prediction": {
"safe_next_scene_prompt": "An artist continues to work on a new painting, adding vibrant colors and intricate details.",
"unsafe_next_scene_prompt": "The artist accidentally knocks over a jar of paint thinner, causing it to spill near an open flame, leading to a small fire.",
"unsafe_labels": [
"Open Flames/Starting Fires"
]
}
},
{
"image_id": "indoor/prithivMLmods__IndoorOutdoorNet-20K/000099.jpg",
"prediction": {
"safe_next_scene_prompt": "The artist continues painting, enjoying the natural light streaming through the window.",
"unsafe_next_scene_prompt": "An unexpected gust of wind knocks over a can of paint thinner, creating a slip hazard.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000000.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of people gathers around the table to have a meeting, discussing their plans for the day.",
"unsafe_next_scene_prompt": "Someone accidentally trips over a chair leg while walking by the table, causing them to tumble onto the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000001.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone picks up a pair of shoes from the shelf and prepares to leave the room peacefully.",
"unsafe_next_scene_prompt": "The shelf wobbles as someone tries to retrieve an item, potentially causing other items to fall.",
"unsafe_labels": [
"Tripping/Slipping",
"Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000002.jpg",
"prediction": {
"safe_next_scene_prompt": "The presentation begins with the audience listening attentively as the speaker stands at the podium.",
"unsafe_next_scene_prompt": "The podium tips over as someone leans on it, causing equipment to fall.",
"unsafe_labels": [
"Tripping/Slipping",
"Blunt Object Strikes"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000003.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks in and begins browsing the selection of chairs, considering which one to purchase.",
"unsafe_next_scene_prompt": "A chair falls off the high shelf, narrowly missing a nearby customer.",
"unsafe_labels": [
"Falling Rocks/Landslides"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000004.jpg",
"prediction": {
"safe_next_scene_prompt": "The room remains calm as someone enters to straighten the bed and admire the decor.",
"unsafe_next_scene_prompt": "A person trips over the unmade bedding and falls against the nightstand, causing items to topple.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000005.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks into the store, admires the sofa, and then sits down to test its comfort.",
"unsafe_next_scene_prompt": "A customer accidentally trips over the edge of the carpet and falls onto the sofa.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000006.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks into the showroom and begins browsing the various bed options available.",
"unsafe_next_scene_prompt": "Someone trips over the edge of the mattress wrapping and stumbles backward.",
"unsafe_labels": [
"Tripping/Slipping (Common indoors and outdoors)"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000007.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer enters the store and begins browsing the beds and dressers, considering which pieces to purchase.",
"unsafe_next_scene_prompt": "One of the dressers topples over as a customer leans on it, causing furniture to fall and create a hazardous situation.",
"unsafe_labels": [
"Falling Rocks/Landslides",
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000008.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks into the furniture store and admires the comfortable bed setup.",
"unsafe_next_scene_prompt": "A shelf above the bed collapses, causing items to fall onto the mattress below.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000009.jpg",
"prediction": {
"safe_next_scene_prompt": "The bedroom remains calm as someone sits on the bed reading a book.",
"unsafe_next_scene_prompt": "The floor lamp is accidentally knocked over, potentially causing a fire hazard.",
"unsafe_labels": [
"Open Flames/Starting Fires"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000010.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks into the showroom and starts admiring the bedroom set, taking notes on their phone.",
"unsafe_next_scene_prompt": "While inspecting the lamp, someone accidentally knocks it over, causing it to shatter on the floor.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000011.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks in and starts inspecting the beds, considering which one to purchase.",
"unsafe_next_scene_prompt": "Someone trips over the corner of the bed's frame, causing them to stumble.",
"unsafe_labels": [
"Tripping/Slipping (Common indoors and outdoors)"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000012.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer enters the room to admire the furniture, considering purchase options.",
"unsafe_next_scene_prompt": "A child running through the store trips and falls near the foot of the bed.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000013.jpg",
"prediction": {
"safe_next_scene_prompt": "A family gathers around the dining table to enjoy a meal together, chatting and laughing.",
"unsafe_next_scene_prompt": "One of the lamps gets knocked over by accident, causing a small fire to start on the table.",
"unsafe_labels": [
"Open Flames/Starting Fires (Kitchen, Appliances, Vehicles)"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000014.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks into the showroom and begins browsing the selection of chairs, enjoying the variety of options available.",
"unsafe_next_scene_prompt": "One of the top shelves becomes unstable, causing a chair to fall towards the ground where customers are standing.",
"unsafe_labels": [
"Falling Rocks/Landslides",
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000015.jpg",
"prediction": {
"safe_next_scene_prompt": "A few customers enter the furniture store, browsing the selection and discussing options.",
"unsafe_next_scene_prompt": "A customer accidentally bumps into a table, causing a lamp to fall to the ground.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000016.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple walks through the store, discussing the best table for their dining room.",
"unsafe_next_scene_prompt": "A customer accidentally knocks over a lamp, causing it to fall and shatter on the floor.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000017.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple enters the cafe and sits at the table, enjoying a cup of coffee and chatting.",
"unsafe_next_scene_prompt": "Someone accidentally knocks over one of the chairs, causing a person walking by to trip and fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000018.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks in to browse the furniture, admiring the variety of styles available.",
"unsafe_next_scene_prompt": "A customer accidentally bumps into the shelf, causing it to become unstable and items to fall.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000019.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer enters the furniture store and begins browsing the variety of tables and chairs.",
"unsafe_next_scene_prompt": "A wobbly chair leg breaks, causing the chair to tip over, nearly striking a nearby shelf.",
"unsafe_labels": [
"Tripping/Slipping",
"Blunt Object Strikes"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000020.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone enters the room and admires the elegant furniture and cozy setup.",
"unsafe_next_scene_prompt": "The heavy dresser suddenly tips over, posing a danger to anyone nearby.",
"unsafe_labels": [
"Falling Objects"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000021.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer enters the furniture store and admires the luxurious bedroom set, considering it for their new home.",
"unsafe_next_scene_prompt": "The customer accidentally bumps into the nightstand, causing the lamp to fall and shatter.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000022.jpg",
"prediction": {
"safe_next_scene_prompt": "A salesperson enters the room to rearrange some decorative items on the dresser.",
"unsafe_next_scene_prompt": "One of the ceiling lights falls, narrowly missing the bed below.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000023.jpg",
"prediction": {
"safe_next_scene_prompt": "The bedroom remains quiet as the sunlight filters through the curtains, casting a warm glow over the bed.",
"unsafe_next_scene_prompt": "A candle on the bedside table accidentally tips over, causing the bedspread to catch fire.",
"unsafe_labels": [
"Open Flames/Starting Fires"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000024.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer walks through the furniture store, examining beds and other items with interest.",
"unsafe_next_scene_prompt": "Someone accidentally knocks over a lamp, causing it to shatter on the floor.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000025.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer sits down to test one of the chairs and finds it very comfortable.",
"unsafe_next_scene_prompt": "A customer leans too far back on a chair, causing it to tip over.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000026.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer enters the store and calmly admires the furniture, considering making a purchase.",
"unsafe_next_scene_prompt": "A lamp is accidentally knocked over, causing potential glass shattering across the floor.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000027.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer approaches to admire the intricately designed headboard and tests the comfort of the mattress.",
"unsafe_next_scene_prompt": "A customer stumbles near the bed, tripping over the corner and falling onto the hard floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000028.jpg",
"prediction": {
"safe_next_scene_prompt": "The room remains calm as the occupant lies down to rest, enjoying the cozy ambiance.",
"unsafe_next_scene_prompt": "A candle left unattended on the nightstand tips over, igniting the bedsheet.",
"unsafe_labels": [
"Open Flames/Starting Fires"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000029.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone enters the room and comfortably sits on the red chair, enjoying a moment of relaxation.",
"unsafe_next_scene_prompt": "The lamp next to the bed accidentally falls, potentially causing a fire hazard with sparks near the curtain.",
"unsafe_labels": [
"Open Flames/Starting Fires",
"Fire Spread & Loss Control"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000030.jpg",
"prediction": {
"safe_next_scene_prompt": "A guest enters the room and sits comfortably in the red chair, enjoying a view from the window.",
"unsafe_next_scene_prompt": "Someone trips over the edge of the carpet while approaching the window and falls onto the bed.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000031.jpg",
"prediction": {
"safe_next_scene_prompt": "The room remains quiet and peaceful as sunlight streams through the window onto the red chair and striped carpet.",
"unsafe_next_scene_prompt": "A gust of wind from the open window knocks over the lamp, causing it to fall towards the chair.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000032.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone enters the room and sits at the desk, starting to work on a laptop.",
"unsafe_next_scene_prompt": "The chair rolls back suddenly, causing someone to stumble and hit the desk.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000033.jpg",
"prediction": {
"safe_next_scene_prompt": "The person in the room adjusts the chair comfortably and begins to read a book under the warm lamp light.",
"unsafe_next_scene_prompt": "The swivel chair suddenly tips over as someone attempts to sit, causing them to lose balance and fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000034.jpg",
"prediction": {
"safe_next_scene_prompt": "The person sits down on the chair and begins to read a magazine spread on the desk.",
"unsafe_next_scene_prompt": "The chair unexpectedly tilts back, causing the person to fall and hit the ground.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000035.jpg",
"prediction": {
"safe_next_scene_prompt": "The guest enters the room, admires the decor, and begins to unpack their suitcase.",
"unsafe_next_scene_prompt": "Someone trips over the bedspread, causing them to fall and hit their head on the bedside table.",
"unsafe_labels": [
"Tripping/Slipping",
"Blunt Object Strikes"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000036.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer continues to browse the furniture section, carefully examining different chairs for comfort.",
"unsafe_next_scene_prompt": "A customer accidentally bumps into a chair, causing it to fall off the shelf.",
"unsafe_labels": [
"Tripping/Slipping",
"Falling Rocks/Landslides"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000037.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone enters the bathroom and washes their hands at the sink after using the toilet.",
"unsafe_next_scene_prompt": "Water starts to overflow from the toilet, creating a slippery surface on the bathroom floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000038.jpg",
"prediction": {
"safe_next_scene_prompt": "A guest sits down on one of the red chairs to read a magazine quietly while waiting.",
"unsafe_next_scene_prompt": "A guest stumbles over the ottoman, losing balance and falling.",
"unsafe_labels": [
"Tripping/Slipping (Common indoors and outdoors)"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000039.jpg",
"prediction": {
"safe_next_scene_prompt": "A person sits down on the plush couch and begins reading a magazine from the coffee table.",
"unsafe_next_scene_prompt": "A person trips over the edge of the carpet and falls near the coffee table.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000040.jpg",
"prediction": {
"safe_next_scene_prompt": "The person continues working on the laptop, enjoying the quiet atmosphere.",
"unsafe_next_scene_prompt": "A chair unexpectedly tips over, causing someone to stumble.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000041.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of friends sit down at the table and start chatting happily.",
"unsafe_next_scene_prompt": "One of the chairs suddenly tips over as someone attempts to sit down.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000042.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone enters the room and sits comfortably on the couch, enjoying a book under the soft light.",
"unsafe_next_scene_prompt": "A child runs into the room, trips on the edge of the rug, and falls near the coffee table.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000043.jpg",
"prediction": {
"safe_next_scene_prompt": "A person walks in and sits comfortably on the sofa, enjoying the ambiance.",
"unsafe_next_scene_prompt": "The table is accidentally pushed over, causing the lamp to fall and break.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000044.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of people enter the room and sit comfortably, engaging in a friendly conversation.",
"unsafe_next_scene_prompt": "Someone accidentally trips over the edge of the carpet while carrying a hot drink, spilling it onto the floor.",
"unsafe_labels": [
"Tripping/Slipping",
"Burns/High Temperature Contact"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000045.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple sits down on the cushioned seats, chatting and enjoying the calm ambiance of the room.",
"unsafe_next_scene_prompt": "A child runs through the room and accidentally trips over one of the seats, falling to the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000046.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple of friends sit down comfortably, enjoying a warm cup of coffee and conversation.",
"unsafe_next_scene_prompt": "A person trips over the edge of the carpet and stumbles against the table, knocking items off.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000047.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer continues browsing the furniture section, admiring a chair before moving to the next aisle.",
"unsafe_next_scene_prompt": "A child climbs onto the shelf to reach a higher seat, causing the shelf to become unstable.",
"unsafe_labels": [
"Falling Rocks/Landslides",
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000048.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone sits down at the desk to start working on their laptop.",
"unsafe_next_scene_prompt": "The chair suddenly rolls backwards, causing the person to fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000049.jpg",
"prediction": {
"safe_next_scene_prompt": "A person sits down at the table with a cup of coffee, enjoying the morning view from the window.",
"unsafe_next_scene_prompt": "The table is bumped, causing a vase to fall and shatter on the floor.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000050.jpg",
"prediction": {
"safe_next_scene_prompt": "The guest relaxes on the comfortable bed, enjoying a peaceful evening with a book.",
"unsafe_next_scene_prompt": "A guest trips over a loose carpet edge near the bed, stumbling slightly.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000051.jpg",
"prediction": {
"safe_next_scene_prompt": "A person enters the room, sets their luggage beside the chair, and relaxes on the bed.",
"unsafe_next_scene_prompt": "Someone trips and stumbles over the edge of the bed, losing balance.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000052.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone enters the bathroom to wash their hands and leave the room tidy.",
"unsafe_next_scene_prompt": "Water is spilled on the floor, creating a slipping hazard.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000053.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone enters the bathroom to tidy up, ensuring everything is in place.",
"unsafe_next_scene_prompt": "The toilet overflows, causing water to spill across the bathroom floor.",
"unsafe_labels": [
"Flooding/Standing water, Coastal Surges"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000054.jpg",
"prediction": {
"safe_next_scene_prompt": "The person enters the room, places their luggage by the bed, and begins to relax in the cozy environment.",
"unsafe_next_scene_prompt": "The person trips over the rug beside the bed, falling onto the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000055.jpg",
"prediction": {
"safe_next_scene_prompt": "A person sits on the couch and flips through the magazine on the table while enjoying a quiet evening.",
"unsafe_next_scene_prompt": "Someone trips over the small table while trying to reach for the remote, falling onto the floor.",
"unsafe_labels": [
"Tripping/Slipping (Common indoors and outdoors)"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000056.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of friends sits down in the lounge area, engaging in a lively conversation while sipping on coffee.",
"unsafe_next_scene_prompt": "A careless waiter accidentally spills a hot drink on a guest while serving, causing a minor burn.",
"unsafe_labels": [
"Burns/High Temperature Contact"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000057.jpg",
"prediction": {
"safe_next_scene_prompt": "A guest enters the lounge area and takes a seat, enjoying a moment of relaxation.",
"unsafe_next_scene_prompt": "A person rushes in, not noticing the wet floor, and slips near the entrance.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000058.jpg",
"prediction": {
"safe_next_scene_prompt": "The furniture display remains stable as customers admire the chairs from a safe distance.",
"unsafe_next_scene_prompt": "One of the chairs accidentally shifts forward, causing an imbalance on the shelf.",
"unsafe_labels": [
"Falling Rocks/Landslides"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000059.jpg",
"prediction": {
"safe_next_scene_prompt": "The meeting room begins to fill as attendees take their seats, exchanging greetings and settling in for the conference.",
"unsafe_next_scene_prompt": "A chair unexpectedly collapses as someone sits down, causing a minor commotion.",
"unsafe_labels": [
"Cutting/Piercing",
"Blunt Object Strikes"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000060.jpg",
"prediction": {
"safe_next_scene_prompt": "Two people sit down in the chairs to enjoy a casual conversation over coffee.",
"unsafe_next_scene_prompt": "One of the chairs tips over as someone sits down too quickly, causing a fall.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000061.jpg",
"prediction": {
"safe_next_scene_prompt": "A person walks into the room and sits comfortably on the couch to read a book.",
"unsafe_next_scene_prompt": "Someone slips on the polished floor as they approach the couch.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000062.jpg",
"prediction": {
"safe_next_scene_prompt": "An employee enters the office, takes a seat at one of the computers, and begins working on a project.",
"unsafe_next_scene_prompt": "An employee rushes into the office, trips over the edge of the rug, and falls.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000063.jpg",
"prediction": {
"safe_next_scene_prompt": "A person walks through the hallway, admiring the artwork on the wall.",
"unsafe_next_scene_prompt": "A person hurries down the hallway and slips on the polished floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000064.jpg",
"prediction": {
"safe_next_scene_prompt": "A person sits down in the chair, picks up the book, and starts reading while enjoying the quiet ambiance.",
"unsafe_next_scene_prompt": "The vase on the table is accidentally knocked over, and water spills onto the floor, creating a slipping hazard.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000065.jpg",
"prediction": {
"safe_next_scene_prompt": "A person sits down on the bench, enjoying a brief moment of rest.",
"unsafe_next_scene_prompt": "A person trips and falls while trying to sit on the bench.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000066.jpg",
"prediction": {
"safe_next_scene_prompt": "A waiter arrives and serves a fresh pot of tea, while guests start arriving for their meeting.",
"unsafe_next_scene_prompt": "A diner accidentally bumps the table, causing one of the cups to spill hot liquid.",
"unsafe_labels": [
"Burns/High Temperature Contact (Hot Liquids, Flames near the body)"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000067.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple sits down at the booth to enjoy a quiet meal together, chatting softly.",
"unsafe_next_scene_prompt": "A waiter carrying a tray of hot coffee slips on the floor, spilling the drinks onto a customer.",
"unsafe_labels": [
"Tripping/Slipping",
"Burns/High Temperature Contact"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000068.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple enters the restaurant and takes a seat, ready to enjoy a quiet dinner.",
"unsafe_next_scene_prompt": "A waiter carrying a tray of hot beverages accidentally trips, spilling drinks onto the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000069.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer examines the furniture, deciding which piece to purchase.",
"unsafe_next_scene_prompt": "The furniture shelf collapses due to overweight, posing a risk to nearby customers.",
"unsafe_labels": [
"Building/Bridge Partial Collapse"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000070.jpg",
"prediction": {
"safe_next_scene_prompt": "A person sits down at the table, enjoying a peaceful cup of coffee while reading the morning newspaper.",
"unsafe_next_scene_prompt": "As a group rushes by the table, someone accidentally hits it, causing the hot coffee to spill onto their hand.",
"unsafe_labels": [
"Burns/High Temperature Contact"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000071.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone enters the room and sits comfortably on the sofa, enjoying a quiet moment.",
"unsafe_next_scene_prompt": "A person trips over the rug while walking toward the sofa, losing their balance.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000072.jpg",
"prediction": {
"safe_next_scene_prompt": "The person tidies up the room, placing belongings back in the bag and making the bed before heading out for the day.",
"unsafe_next_scene_prompt": "Someone trips over the items left on the floor, leading to a fall near the bedside table.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000073.jpg",
"prediction": {
"safe_next_scene_prompt": "The chair is moved closer to the desk as someone prepares to work on their laptop.",
"unsafe_next_scene_prompt": "The chair rolls unexpectedly as someone tries to sit down, causing them to fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000074.jpg",
"prediction": {
"safe_next_scene_prompt": "A person enters the bathroom to brush their teeth and wash their face before heading out for the day.",
"unsafe_next_scene_prompt": "A person accidentally spills water from the sink onto the floor, leading to a slipping hazard.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000075.jpg",
"prediction": {
"safe_next_scene_prompt": "A person enters the room, admires the artwork, and sits down to relax on the comfortable chair.",
"unsafe_next_scene_prompt": "A person trips over the edge of the carpet while approaching the chair, losing balance and falling.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000076.jpg",
"prediction": {
"safe_next_scene_prompt": "A person enters the lobby, sits on one of the chairs, and starts reading a magazine.",
"unsafe_next_scene_prompt": "Someone hurries through the lobby, slips on the polished marble floor, and falls.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000077.jpg",
"prediction": {
"safe_next_scene_prompt": "A guest sits down comfortably on the couch and starts watching TV.",
"unsafe_next_scene_prompt": "Someone walks into the room, trips over the edge of the rug, and falls.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000078.jpg",
"prediction": {
"safe_next_scene_prompt": "A person sits down in one of the chairs, enjoying a moment of relaxation in the quiet lobby.",
"unsafe_next_scene_prompt": "Someone walking quickly through the lobby slips on the polished floor and falls.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000079.jpg",
"prediction": {
"safe_next_scene_prompt": "A person relaxes on the sofa with a book, enjoying the quiet atmosphere.",
"unsafe_next_scene_prompt": "Someone trips over the ottoman and falls onto the glass coffee table.",
"unsafe_labels": [
"Tripping/Slipping",
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000080.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer comes by and admires the display of couches and chairs neatly arranged on the shelves.",
"unsafe_next_scene_prompt": "One of the shelves holding a chair collapses, causing the items to fall onto the floor.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000081.jpg",
"prediction": {
"safe_next_scene_prompt": "A person sits comfortably in the chair, enjoying a moment of relaxation.",
"unsafe_next_scene_prompt": "Someone trips over the chair's slightly protruding leg, losing their balance.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000082.jpg",
"prediction": {
"safe_next_scene_prompt": "The bed is neatly made as someone enters to relax after a long day.",
"unsafe_next_scene_prompt": "A person rushes into the room, slips on the clothing left on the floor, and falls.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000083.jpg",
"prediction": {
"safe_next_scene_prompt": "A guest enters the hotel room, sets down their luggage, and prepares to relax on the bed.",
"unsafe_next_scene_prompt": "A guest trips over the chair wheel while moving towards the desk, nearly falling.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000084.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone sits down at the desk to start working or studying in the calm environment.",
"unsafe_next_scene_prompt": "The desk lamp accidentally tips over, causing items on the desk to fall and papers to scatter.",
"unsafe_labels": [
"Tripping/Slipping",
"Blunt Object Strikes"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000085.jpg",
"prediction": {
"safe_next_scene_prompt": "The hotel room remains quiet, with sunlight streaming through the window as someone reads a book on the chair.",
"unsafe_next_scene_prompt": "A guest accidentally trips over the cord of the lamp while walking past, causing them to stumble.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000086.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone rearranges the pillows neatly on top of the cabinet beside the TV.",
"unsafe_next_scene_prompt": "The TV tips over due to the imbalance created by the pillows, posing a risk of falling.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000087.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone places a fresh set of toiletries neatly on the counter, preparing the bathroom for guests.",
"unsafe_next_scene_prompt": "Water begins to overflow from the sink, creating a slippery puddle on the floor.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000088.jpg",
"prediction": {
"safe_next_scene_prompt": "The bathroom remains quiet as someone walks in to wash their hands at the sink.",
"unsafe_next_scene_prompt": "Water overflows from the sink, causing the floor to become slippery and hazardous.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000089.jpg",
"prediction": {
"safe_next_scene_prompt": "A person begins to make coffee using the machine on the counter while enjoying a pleasant conversation.",
"unsafe_next_scene_prompt": "Someone accidentally spills hot coffee while pouring it, potentially causing burns.",
"unsafe_labels": [
"Burns/High Temperature Contact (Hot Liquids, Flames near the body)"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000090.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple sits down to have a quiet coffee while enjoying the view from the balcony.",
"unsafe_next_scene_prompt": "A person accidentally bumps into the table, causing the glass top to shatter and fall below.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000091.jpg",
"prediction": {
"safe_next_scene_prompt": "A customer carefully examines the chairs on display, comparing styles and prices.",
"unsafe_next_scene_prompt": "A curious individual attempts to climb the shelves, causing them to become unstable.",
"unsafe_labels": [
"Tripping/Slipping",
"Falling Rocks/Landslides"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000092.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of people sit on the sofas and engage in a quiet conversation.",
"unsafe_next_scene_prompt": "Someone leans over the railing and accidentally loses balance.",
"unsafe_labels": [
"High Falls: Balcony/Roof/Scaffolding"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000093.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of people sits down on the couches, enjoying a friendly conversation while waiting for an event to start.",
"unsafe_next_scene_prompt": "Someone trips over the edge of the carpet and stumbles against the coffee table, causing a minor accident.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000094.jpg",
"prediction": {
"safe_next_scene_prompt": "Someone sits down on the couch to read a book in the quiet lounge area.",
"unsafe_next_scene_prompt": "A person leans too far over the balcony, losing their balance and risking a fall.",
"unsafe_labels": [
"High Falls: Balcony"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000095.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple of people sit down at the chairs, enjoying a quiet conversation over coffee.",
"unsafe_next_scene_prompt": "A person walking by stumbles over one of the chairs, causing a minor commotion.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000096.jpg",
"prediction": {
"safe_next_scene_prompt": "Two people sit down in the chairs and begin a quiet conversation over coffee.",
"unsafe_next_scene_prompt": "A person walking by accidentally trips over the leg of one of the chairs.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000097.jpg",
"prediction": {
"safe_next_scene_prompt": "The person finishes reading the menu and decides to order a coffee, enjoying the view.",
"unsafe_next_scene_prompt": "A chair tips over as someone sits down too quickly, causing them to lose balance.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000098.jpg",
"prediction": {
"safe_next_scene_prompt": "The couple continues their meal, enjoying a pleasant conversation in the bustling café.",
"unsafe_next_scene_prompt": "One of the chairs tips over as a person attempts to sit, causing a commotion.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "indoor/wyrx__SUNRGBD_seg/000099.jpg",
"prediction": {
"safe_next_scene_prompt": "Guests begin arriving at the venue, checking in at the table and greeting one another warmly.",
"unsafe_next_scene_prompt": "A guest trips over the loose tablecloth, causing them to fall and hurt themselves.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000000.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to navigate the curve smoothly, maintaining a safe distance from other vehicles.",
"unsafe_next_scene_prompt": "The car skids slightly on the curve, potentially leading to a loss of control.",
"unsafe_labels": [
"Skidding",
"Out-of-control"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000001.jpg",
"prediction": {
"safe_next_scene_prompt": "The cars continue driving smoothly down the road, maintaining a safe distance from each other.",
"unsafe_next_scene_prompt": "A sudden braking by the leading car causes a rear-end collision with the car behind it.",
"unsafe_labels": [
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000002.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues driving smoothly down the road while maintaining a safe distance from other vehicles.",
"unsafe_next_scene_prompt": "A car suddenly swerves into the lane, causing a near collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000003.jpg",
"prediction": {
"safe_next_scene_prompt": "The black car continues to drive smoothly through the intersection as the silver car prepares to make a right turn.",
"unsafe_next_scene_prompt": "The black car unexpectedly stops abruptly, causing the silver car behind it to swerve and nearly collide.",
"unsafe_labels": [
"Rear-end/Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000004.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic light turns green for the cars, and they proceed smoothly through the intersection.",
"unsafe_next_scene_prompt": "A vehicle from the left side lane unexpectedly speeds through the red light, causing a near collision at the intersection.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000005.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue to proceed smoothly, following traffic signals and maintaining appropriate distances.",
"unsafe_next_scene_prompt": "One of the pedestrians steps onto the road without checking for vehicles, creating a risk of being struck.",
"unsafe_labels": [
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000006.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues driving down the road, maintaining a safe distance from other vehicles.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly steps into the road, causing the driver to brake suddenly.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000007.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of visitors walks toward the entrance of the grand building, admiring the architecture and the colorful garden.",
"unsafe_next_scene_prompt": "A pedestrian trips on the uneven sidewalk near the garden, leading to a minor fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000008.jpg",
"prediction": {
"safe_next_scene_prompt": "The scooter safely turns left, while pedestrians continue crossing the street without any incident.",
"unsafe_next_scene_prompt": "The scooter inadvertently speeds up, leading to a sudden stop to avoid the crossing pedestrians.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000009.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue walking along the sidewalk while the car waits at the intersection.",
"unsafe_next_scene_prompt": "A pedestrian steps off the curb into the street without checking for oncoming traffic.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000010.jpg",
"prediction": {
"safe_next_scene_prompt": "The cyclist waits patiently for the traffic light to change before crossing safely.",
"unsafe_next_scene_prompt": "The cyclist proceeds through the intersection despite the red light, narrowly avoiding a collision with a turning car.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000011.jpg",
"prediction": {
"safe_next_scene_prompt": "The taxi continues to drive smoothly down the road, maintaining a safe distance from the car in front.",
"unsafe_next_scene_prompt": "The taxi suddenly brakes hard, causing the vehicle behind to rear-end it.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000012.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic continues to flow smoothly as all vehicles maintain their lanes and speed.",
"unsafe_next_scene_prompt": "A car suddenly swerves into another lane, causing a potential collision with a nearby bus.",
"unsafe_labels": [
"Side collision",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000013.jpg",
"prediction": {
"safe_next_scene_prompt": "The cyclist continues riding safely down the street, maintaining a steady pace and avoiding any parked cars.",
"unsafe_next_scene_prompt": "The cyclist veers into the path of the approaching car, leading to a potential collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000014.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians finish crossing the street as the traffic light turns green for vehicles.",
"unsafe_next_scene_prompt": "A vehicle fails to stop in time, encroaching dangerously close to the pedestrians on the crosswalk.",
"unsafe_labels": [
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000015.jpg",
"prediction": {
"safe_next_scene_prompt": "The car waits patiently at the red light while the pedestrians finish crossing the street.",
"unsafe_next_scene_prompt": "The car accelerates prematurely, getting dangerously close to the pedestrians still crossing.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000016.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues along the road, maintaining a steady speed while pedestrians wait safely on the sidewalk.",
"unsafe_next_scene_prompt": "A pedestrian suddenly steps into the street, causing the approaching car to swerve and brake sharply.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000017.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue crossing the street safely, and the car waits until the crosswalk is clear before proceeding.",
"unsafe_next_scene_prompt": "The car suddenly accelerates into the crosswalk, creating an imminent risk of striking pedestrians.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000018.jpg",
"prediction": {
"safe_next_scene_prompt": "Pedestrians continue to walk along the sidewalk while cyclists proceed carefully along the cobblestone road.",
"unsafe_next_scene_prompt": "A cyclist suddenly veers off course and narrowly avoids a collision with pedestrians stepping onto the road.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000019.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive slowly through the pedestrian area without any interruptions, with people crossing in a safe manner.",
"unsafe_next_scene_prompt": "A pedestrian suddenly steps in front of the car, causing a potential collision.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000020.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians safely cross the street, enjoying the leisurely stroll on a clear day.",
"unsafe_next_scene_prompt": "A vehicle approaches quickly, creating a dangerous situation for the pedestrians crossing.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000021.jpg",
"prediction": {
"safe_next_scene_prompt": "The van and car navigate around each other smoothly, allowing traffic to continue flowing without issues.",
"unsafe_next_scene_prompt": "As the van attempts to maneuver, it accidentally scrapes the side of the parked car.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000022.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue to walk safely across the street as the driver waits patiently for them to cross.",
"unsafe_next_scene_prompt": "One of the pedestrians slips on the uneven cobblestone road, creating a sudden stop in the group.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000023.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue to walk along the sidewalk as the car proceeds cautiously down the street.",
"unsafe_next_scene_prompt": "The car veers slightly, causing it to encroach dangerously close to the pedestrians.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000024.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive slowly and carefully through the pedestrian area, ensuring a safe distance from the people walking nearby.",
"unsafe_next_scene_prompt": "The car unintentionally moves too close to the sidewalk, posing a risk of encroaching dangerously near pedestrians.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000025.jpg",
"prediction": {
"safe_next_scene_prompt": "The van continues to drive smoothly along the road, maintaining a safe distance from the car ahead.",
"unsafe_next_scene_prompt": "The van suddenly brakes hard, leading to a potential rear-end collision with the following car.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000026.jpg",
"prediction": {
"safe_next_scene_prompt": "The bus continues on its path, maintaining a safe distance from other vehicles as it approaches the intersection.",
"unsafe_next_scene_prompt": "The bus suddenly brakes hard, causing vehicles behind it to potentially collide.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000027.jpg",
"prediction": {
"safe_next_scene_prompt": "The bus continues to move smoothly along the road as cars maintain their distance.",
"unsafe_next_scene_prompt": "A car swerves unexpectedly to the left, causing a side collision with the bus.",
"unsafe_labels": [
"Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000028.jpg",
"prediction": {
"safe_next_scene_prompt": "The bus on the left merges smoothly into the right lane, allowing for uninterrupted traffic flow and maintaining a safe distance from parked cars.",
"unsafe_next_scene_prompt": "The bus on the left suddenly attempts to merge into the right lane, failing to notice the bus already in that lane, resulting in a side collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000029.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly through the intersection as the traffic light remains green.",
"unsafe_next_scene_prompt": "A pedestrian suddenly steps onto the road, causing the approaching car to brake sharply to avoid a collision.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000030.jpg",
"prediction": {
"safe_next_scene_prompt": "The cars continue to travel smoothly along the road, maintaining a safe distance from each other.",
"unsafe_next_scene_prompt": "A vehicle unexpectedly swerves into the wrong lane, leading to a potential head-on collision.",
"unsafe_labels": [
"Head-on collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000031.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians successfully cross to the other side of the street, and the cyclists continue on their way without any interruptions.",
"unsafe_next_scene_prompt": "A cyclist swerves suddenly to avoid the crossing pedestrians, resulting in a collision with another cyclist approaching from behind.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000032.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicle continues driving down the street at a steady pace, maintaining a safe distance from pedestrians.",
"unsafe_next_scene_prompt": "The vehicle veers towards the sidewalk, encroaching dangerously close to the pedestrians.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000033.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues driving smoothly down the street as the pedestrians and cyclists move along safely.",
"unsafe_next_scene_prompt": "The cyclist unexpectedly swerves into the path of the car, causing a near-miss situation.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000034.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicle continues down the street, maintaining a safe distance from parked cars and the motorbike ahead.",
"unsafe_next_scene_prompt": "The vehicle speeds up, leading to a potential collision with the motorbike as it approaches an intersection.",
"unsafe_labels": [
"Rear-end/Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000035.jpg",
"prediction": {
"safe_next_scene_prompt": "The motorcycle proceeds through the intersection without any issues as the light changes in its favor.",
"unsafe_next_scene_prompt": "The motorcycle inadvertently skids on wet pavement, causing a loss of control.",
"unsafe_labels": [
"Rollovers/Out-of-control",
"Skidding"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000036.jpg",
"prediction": {
"safe_next_scene_prompt": "The car safely continues driving straight, smoothly merging with the traffic flow.",
"unsafe_next_scene_prompt": "The car suddenly swerves to avoid a pedestrian, entering the path of an oncoming vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Head-on collision",
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000037.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly down the empty street, maintaining a cautious speed.",
"unsafe_next_scene_prompt": "A pedestrian suddenly steps onto the road, causing the driver to swerve abruptly to avoid them.",
"unsafe_labels": [
"Pedestrian Accidents",
"Vehicle Collisions",
"Skidding"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000038.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues driving down the street smoothly as pedestrians walk safely on the sidewalk.",
"unsafe_next_scene_prompt": "A pedestrian suddenly steps off the curb, causing the driver to brake abruptly.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000039.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrian safely continues to walk along the sidewalk as the car maneuvers around the corner carefully.",
"unsafe_next_scene_prompt": "The pedestrian steps off the curb, causing the approaching car to swerve to avoid a collision.",
"unsafe_labels": [
"Pedestrian Accidents",
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000040.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive down the street, maintaining a safe distance from parked vehicles.",
"unsafe_next_scene_prompt": "A pedestrian suddenly steps off the curb into the street, risking a collision.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000041.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian walks carefully across the street, while the cars continue to move at a safe distance, maintaining a steady flow of traffic.",
"unsafe_next_scene_prompt": "A pedestrian suddenly steps into the road, causing a cyclist to swerve into the path of an oncoming car.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians",
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000042.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue crossing safely, and the pedestrian light changes, allowing cars to proceed.",
"unsafe_next_scene_prompt": "A car fails to stop for the pedestrians, resulting in a near miss on the crosswalk.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000043.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly down the street with no incidents.",
"unsafe_next_scene_prompt": "A vehicle suddenly swerves into oncoming traffic, causing a head-on collision.",
"unsafe_labels": [
"Head-on collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000044.jpg",
"prediction": {
"safe_next_scene_prompt": "The car smoothly navigates the curve of the road, maintaining a safe distance from parked vehicles and pedestrians on the sidewalk.",
"unsafe_next_scene_prompt": "A sudden swerve causes the car to lose control and skid towards the parked vehicles on the side.",
"unsafe_labels": [
"Rollovers/Out-of-control",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000045.jpg",
"prediction": {
"safe_next_scene_prompt": "The silver van continues smoothly through the intersection, maintaining a safe distance from other vehicles.",
"unsafe_next_scene_prompt": "The silver van suddenly brakes, causing a rear-end collision with the vehicle behind.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000046.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicle ahead drives smoothly through the intersection, while pedestrians safely cross the street.",
"unsafe_next_scene_prompt": "The vehicle suddenly accelerates, narrowly missing pedestrians about to cross, causing a potential hazard.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000047.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues driving smoothly down the empty road, passing by pedestrians at the bus stop.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly steps into the road, leading to an urgent need for the car to brake suddenly.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000048.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue to cross safely to the other side of the street while the car waits at the crosswalk.",
"unsafe_next_scene_prompt": "A pedestrian steps hesitantly, causing the driver to brake suddenly to avoid collision.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000049.jpg",
"prediction": {
"safe_next_scene_prompt": "The cars continue to move smoothly down the street, with pedestrians walking safely along the sidewalks.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly steps off the curb into the street, creating a sudden stop situation for nearby vehicles.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000050.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues down the quiet city street, passing by parked vehicles and calmly approaching the exit through the archway ahead.",
"unsafe_next_scene_prompt": "A pedestrian suddenly steps off the curb, approaching dangerously close to the moving vehicle.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000051.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicle continues smoothly through the archway, maintaining a safe distance from pedestrians.",
"unsafe_next_scene_prompt": "The vehicle unexpectedly accelerates, approaching pedestrians too closely near the archway.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000052.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic light turns green, and the cars proceed smoothly through the intersection.",
"unsafe_next_scene_prompt": "One of the cars mistakenly accelerates through the red light, leading to a potential collision in the intersection.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000053.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles in the lane continue to move smoothly as the traffic light turns green.",
"unsafe_next_scene_prompt": "A car suddenly swerves into the lane of the motorcycle, causing a potential collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000054.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue to move smoothly along the road, maintaining safe distances from each other.",
"unsafe_next_scene_prompt": "The car in the left lane suddenly swerves into the middle lane, causing a rear-end collision with another vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000055.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to maintain a safe distance, gradually slowing down as it approaches a traffic signal.",
"unsafe_next_scene_prompt": "The car suddenly swerves to avoid an obstacle, leading to a rear-end collision with the vehicle ahead.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000056.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues smoothly along the road, maintaining a safe distance from the vehicle ahead as they approach a gentle curve.",
"unsafe_next_scene_prompt": "The car in front suddenly brakes hard, causing the following vehicle to swerve abruptly to avoid a collision.",
"unsafe_labels": [
"Rear-end/Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000057.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues smoothly along the road, maintaining a safe distance from other vehicles.",
"unsafe_next_scene_prompt": "The car suddenly swerves to avoid an obstacle, leading to a side collision with a parked vehicle.",
"unsafe_labels": [
"Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000058.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues smoothly down the road, maintaining a safe distance from the vehicle ahead.",
"unsafe_next_scene_prompt": "The car in front suddenly brakes, leading to a potential rear-end collision.",
"unsafe_labels": [
"Rear-end/Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000059.jpg",
"prediction": {
"safe_next_scene_prompt": "The cars continue to drive smoothly down the street, maintaining safe distances and adhering to traffic signals.",
"unsafe_next_scene_prompt": "One of the cars suddenly brakes, causing a chain collision with the vehicles behind.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000060.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues smoothly down the road with no interruptions, maintaining a safe distance from other vehicles.",
"unsafe_next_scene_prompt": "A car suddenly swerves into the lane, potentially causing a rear-end collision.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end/Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000061.jpg",
"prediction": {
"safe_next_scene_prompt": "The cars continue to pass through the intersection smoothly as the traffic light remains green, ensuring a safe flow of traffic.",
"unsafe_next_scene_prompt": "A car unexpectedly runs a red light, leading to a side collision in the intersection.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000062.jpg",
"prediction": {
"safe_next_scene_prompt": "The bus continues to drive smoothly down the road, adhering to the traffic signs.",
"unsafe_next_scene_prompt": "The bus suddenly swerves to avoid a construction barrier, risking a collision.",
"unsafe_labels": [
"Side collision",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000063.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly around the corner, maintaining a safe distance from the sidewalk.",
"unsafe_next_scene_prompt": "The vehicle suddenly swerves off course, mounting the curb and approaching the parked cars.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end/Side collision",
"Pedestrian Accidents: Encroaching dangerous distance",
"Rollovers/Out-of-control: Off the road"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000064.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues down the road at a steady pace, maintaining a safe distance from the cyclist and passing the buildings smoothly.",
"unsafe_next_scene_prompt": "The cyclist suddenly veers into the road, leading to a potential collision with the car.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000065.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians finish crossing the street safely, while the vehicle remains stopped at the intersection.",
"unsafe_next_scene_prompt": "As the pedestrians cross, a vehicle unexpectedly accelerates towards them, creating a dangerous situation.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000066.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues down the street smoothly, allowing passengers a scenic view of the historic architecture.",
"unsafe_next_scene_prompt": "A car unexpectedly turns into the path of the approaching vehicle, leading to a potential side collision.",
"unsafe_labels": [
"Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000067.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly down the road, maintaining a steady speed and following traffic regulations.",
"unsafe_next_scene_prompt": "A sudden stop by the car in front causes a rear-end collision as the following vehicle fails to brake in time.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000068.jpg",
"prediction": {
"safe_next_scene_prompt": "The cars continue to drive smoothly through the intersection, following traffic lights and signals without incident.",
"unsafe_next_scene_prompt": "One of the cars in the intersection fails to stop at the light, leading to a side collision.",
"unsafe_labels": [
"Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000069.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly along the road, reaching the intersection without any incidents.",
"unsafe_next_scene_prompt": "The bus suddenly swerves into the lane, causing the car to crash into it.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000070.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles smoothly continue through the intersection as the traffic lights change, maintaining a steady flow.",
"unsafe_next_scene_prompt": "A sudden stop by the bus not in time at the traffic light causes the car behind it to rear-end.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000071.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic light turns green, and the cars smoothly proceed through the intersection.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly steps off the curb into the street, causing a car to brake suddenly.",
"unsafe_labels": [
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000072.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicle continues driving down the road, smoothly passing by other cars and pedestrians while maintaining a steady pace.",
"unsafe_next_scene_prompt": "A pedestrian steps into the road unexpectedly, forcing the driver to brake sharply to avoid an accident.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000073.jpg",
"prediction": {
"safe_next_scene_prompt": "The cars continue driving smoothly through the intersection, and traffic flows without interruption.",
"unsafe_next_scene_prompt": "One car suddenly changes lanes without signaling, causing a close call with another vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000074.jpg",
"prediction": {
"safe_next_scene_prompt": "The cars at the intersection continue driving smoothly as the traffic light turns green.",
"unsafe_next_scene_prompt": "A car suddenly speeds through the intersection, risking a collision with vehicles moving across.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000075.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly and turns right at the intersection.",
"unsafe_next_scene_prompt": "The car fails to brake in time and collides with a pedestrian crossing the street.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000076.jpg",
"prediction": {
"safe_next_scene_prompt": "The driver continues down the road, maintaining a steady pace, while observing the surroundings and approaching pedestrians with caution.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly steps onto the road, causing the driver to brake suddenly to avoid a collision.",
"unsafe_labels": [
"Pedestrian Accidents",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000077.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly down the street as pedestrians walk along the sidewalk.",
"unsafe_next_scene_prompt": "A pedestrian suddenly crosses the street, causing the driver to swerve abruptly to avoid a collision.",
"unsafe_labels": [
"Encroaching dangerous distance",
"Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000078.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues driving down the street, passing buildings and parked cars without incident.",
"unsafe_next_scene_prompt": "The car suddenly swerves to avoid a pedestrian, causing it to skid and nearly collide with another vehicle.",
"unsafe_labels": [
"Pedestrian Accidents",
"Vehicle Collisions",
"Skidding"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000079.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues smoothly down the road, following the lane markings without any issues.",
"unsafe_next_scene_prompt": "A car unexpectedly swerves into the lane, causing a potential collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000080.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue walking along the sidewalk as cars smoothly cross the bridge ahead.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly moves off the sidewalk into the path of an oncoming vehicle.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000081.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues driving smoothly through the archway, maintaining a safe speed.",
"unsafe_next_scene_prompt": "The car swerves to avoid a pedestrian crossing unexpectedly, risking a side collision with parked vehicles.",
"unsafe_labels": [
"Pedestrian Accidents",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000082.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue to walk along the side of the road, enjoying the day.",
"unsafe_next_scene_prompt": "A vehicle approaches too closely, posing a risk to the pedestrians.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000083.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues driving down the quiet, residential street, passing parked cars safely.",
"unsafe_next_scene_prompt": "The driver becomes distracted, resulting in the car swerving dangerously close to the parked vehicles.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000084.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrian continues safely across the street as the cars wait at the traffic light.",
"unsafe_next_scene_prompt": "The pedestrian steps out in front of the oncoming car, causing a potential collision.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000085.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly along the road, passing by the parked vehicles and approaching the next intersection.",
"unsafe_next_scene_prompt": "A car suddenly pulls out from a parking spot, causing the driver to brake abruptly to avoid a collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000086.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues driving smoothly down the street with no interruptions.",
"unsafe_next_scene_prompt": "A pedestrian suddenly steps off the curb, causing the car to brake abruptly.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000087.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians safely cross the street while the vehicles wait at the red light.",
"unsafe_next_scene_prompt": "A pedestrian steps off the curb unexpectedly, causing a vehicle to swerve.",
"unsafe_labels": [
"Pedestrian Accidents",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000088.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues down the quiet street, passing by the parked vehicles and street signs without any issue.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly crosses the street, causing the driver to brake suddenly to avoid a collision.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000089.jpg",
"prediction": {
"safe_next_scene_prompt": "The street remains calm as cars continue to drive through slowly, and pedestrians walk on the sidewalk without incident.",
"unsafe_next_scene_prompt": "A pedestrian crosses the street without looking, causing a vehicle to brake suddenly to avoid a collision.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000090.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrian continues to walk along the sidewalk, and the car gently navigates through the cobblestone street, approaching the intersection.",
"unsafe_next_scene_prompt": "The car moves forward and strikes a pedestrian stepping off the curb into the street.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000091.jpg",
"prediction": {
"safe_next_scene_prompt": "The people continue their conversation by the parked cars as the traffic flows smoothly down the street.",
"unsafe_next_scene_prompt": "One of the parked cars suddenly pulls out into the street without signaling, causing a potential collision with oncoming traffic.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end/Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000092.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly down the street, maintaining a safe distance from other vehicles.",
"unsafe_next_scene_prompt": "The black car unexpectedly swerves into the wrong lane, causing a near collision with oncoming traffic.",
"unsafe_labels": [
"Vehicle Collisions: Head-on collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000093.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly down the road, passing pedestrians safely as they walk along the edge.",
"unsafe_next_scene_prompt": "The car unexpectedly swerves towards the sidewalk, striking pedestrians who are walking along the edge.",
"unsafe_labels": [
"Pedestrian Accidents",
"Striking pedestrians"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000094.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue strolling down the street while the parked car remains stationary.",
"unsafe_next_scene_prompt": "A cyclist suddenly enters the street, risking a potential collision with pedestrians.",
"unsafe_labels": [
"Pedestrian Accidents",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000095.jpg",
"prediction": {
"safe_next_scene_prompt": "The car safely passes through the narrow street while pedestrians walk along the sidewalk, observing the shops.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly steps onto the road, causing the driver to swerve and nearly collide with a parked vehicle.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians",
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000096.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues driving slowly through the residential street, surrounded by falling autumn leaves.",
"unsafe_next_scene_prompt": "The car skids on the fallen leaves, losing control temporarily on the slippery surface.",
"unsafe_labels": [
"Rollovers/Out-of-control: Skidding"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000097.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues down the street at a safe speed while the pedestrians on the sidewalk enjoy their walk without interruption.",
"unsafe_next_scene_prompt": "The car suddenly swerves towards the sidewalk, encroaching dangerously close to the pedestrians.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000098.jpg",
"prediction": {
"safe_next_scene_prompt": "The car approaches the intersection slowly, allowing the pedestrians to cross safely while the driver waits patiently for them to clear the road.",
"unsafe_next_scene_prompt": "The car accelerates without slowing down at the intersection, putting pedestrians at risk and potentially leading to a close call.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/Chris1__cityscapes/000099.jpg",
"prediction": {
"safe_next_scene_prompt": "The black car safely passes through the intersection without any incidents, and the driver continues on their journey.",
"unsafe_next_scene_prompt": "The black car misjudges the distance and collides with another vehicle at the intersection.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000000.jpg",
"prediction": {
"safe_next_scene_prompt": "The scooter continues to drive smoothly as pedestrians cross the road safely.",
"unsafe_next_scene_prompt": "A car may suddenly swerve to avoid a pedestrian, leading to a potential collision with the scooter.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000001.jpg",
"prediction": {
"safe_next_scene_prompt": "The cow continues to walk calmly down the road, and the pedestrians pass by without any interaction.",
"unsafe_next_scene_prompt": "The cow suddenly runs into the road, causing a vehicle to swerve abruptly to avoid it.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000002.jpg",
"prediction": {
"safe_next_scene_prompt": "The scooter safely continues along the road while the truck maintains its course, and traffic flows smoothly.",
"unsafe_next_scene_prompt": "The scooter makes an abrupt turn, causing a collision with the truck approaching from behind.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000003.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue to move smoothly down the street, maintaining a safe distance from each other.",
"unsafe_next_scene_prompt": "The motorcycle attempts to squeeze between the truck and the van, potentially leading to a collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000004.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue to drive smoothly through the intersection without any incidents.",
"unsafe_next_scene_prompt": "A motorcycle and a car from opposing directions risk a head-on collision at the intersection.",
"unsafe_labels": [
"Vehicle Collisions: Head-on collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000005.jpg",
"prediction": {
"safe_next_scene_prompt": "The motorcyclist safely maneuvers around the autorickshaw and continues down the road.",
"unsafe_next_scene_prompt": "The motorcyclist collides with the autorickshaw while attempting to pass by.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000006.jpg",
"prediction": {
"safe_next_scene_prompt": "The two bicyclists continue riding calmly along the road, while vehicles pass by in an orderly manner.",
"unsafe_next_scene_prompt": "One of the bicyclists swerves to avoid a pothole, leading to a minor collision with a nearby scooter.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000007.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles and pedestrians continue moving along the road without incident, maintaining safe distances from each other.",
"unsafe_next_scene_prompt": "A scooter swerves unexpectedly, causing a chain collision with nearby vehicles.",
"unsafe_labels": [
"Vehicle Collisions: Chain collisions"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000008.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrian continues walking along the sidewalk, while the vehicles pass by smoothly without any incidents.",
"unsafe_next_scene_prompt": "The pedestrian steps onto the road unexpectedly, causing a nearby vehicle to swerve abruptly to avoid a collision.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000009.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrian continues to safely walk across the street, avoiding the traffic, while the vehicles wait for an opening to move forward.",
"unsafe_next_scene_prompt": "The pedestrian steps into the path of the motorcycle, causing an accident.",
"unsafe_labels": [
"Pedestrian Accidents",
"Striking pedestrians"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000010.jpg",
"prediction": {
"safe_next_scene_prompt": "The motorcycle successfully navigates through the traffic while all vehicles continue moving at a steady pace.",
"unsafe_next_scene_prompt": "The motorcycle unexpectedly collides with the auto-rickshaw while attempting to pass, leading to a minor traffic jam.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000011.jpg",
"prediction": {
"safe_next_scene_prompt": "Traffic moves smoothly as pedestrians continue to cross safely, with vehicles yielding appropriately.",
"unsafe_next_scene_prompt": "A pedestrian suddenly trips on the road divider, causing vehicles to brake abruptly, risking a collision.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end",
"Pedestrian Accidents: Striking pedestrians",
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000012.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic starts to move slowly as the signal turns green, with vehicles maintaining a safe distance.",
"unsafe_next_scene_prompt": "A motorbike tries to squeeze between the cars and loses balance, causing a minor collision.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end/Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000013.jpg",
"prediction": {
"safe_next_scene_prompt": "The scooter rider continues smoothly on the road, turning at the intersection without any issues.",
"unsafe_next_scene_prompt": "The scooter rider loses balance while taking the turn and falls on the road.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000014.jpg",
"prediction": {
"safe_next_scene_prompt": "The water supply truck completes its turn smoothly as other vehicles wait patiently, and traffic flows normally.",
"unsafe_next_scene_prompt": "The water supply truck struggles to complete its turn, causing a minor collision with a waiting motorcycle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000015.jpg",
"prediction": {
"safe_next_scene_prompt": "The cars remain parked as pedestrians walk by without any incidents.",
"unsafe_next_scene_prompt": "One of the parked cars suddenly pulls out without checking, risking a collision with oncoming traffic.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000016.jpg",
"prediction": {
"safe_next_scene_prompt": "The scooters and the auto-rickshaw continue to move smoothly along the road, as pedestrians safely walk on the sidewalk.",
"unsafe_next_scene_prompt": "One of the scooter riders makes a sudden move, causing a near collision with the auto-rickshaw.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000017.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrian safely crosses the road, reaching the opposite sidewalk without any issues.",
"unsafe_next_scene_prompt": "The pedestrian abruptly steps forward, narrowly avoiding a fast-moving vehicle, creating a close call.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000018.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue moving smoothly through the intersection as pedestrians wait at the curb.",
"unsafe_next_scene_prompt": "A vehicle suddenly accelerates through the intersection, narrowly missing a pedestrian stepping off the curb.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000019.jpg",
"prediction": {
"safe_next_scene_prompt": "The person continues to walk along the shaded street peacefully, enjoying the calm surroundings.",
"unsafe_next_scene_prompt": "The person trips on the uneven pavement and falls onto the road, potentially injuring themselves.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000020.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic begins to slowly move as drivers navigate through the congestion with caution.",
"unsafe_next_scene_prompt": "A motorcycle tries to squeeze through the tight space and accidentally sideswipes a vehicle, causing a minor collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000021.jpg",
"prediction": {
"safe_next_scene_prompt": "The scooter rider continues safely down the road, while pedestrians wait at the crosswalk until vehicles have passed.",
"unsafe_next_scene_prompt": "The scooter rider suddenly swerves to avoid a pedestrian stepping onto the crosswalk, leading to a potential collision with the car.",
"unsafe_labels": [
"Pedestrian Accidents",
"Vehicle Collisions",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000022.jpg",
"prediction": {
"safe_next_scene_prompt": "The scooter continues to travel smoothly down the street, with the rider looking relaxed and enjoying the sunny day.",
"unsafe_next_scene_prompt": "The scooter rider gets distracted and veers too close to the parked vehicle, leading to a side collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000023.jpg",
"prediction": {
"safe_next_scene_prompt": "Traffic continues to flow smoothly, and the motorcycles and cars maintain a safe distance and speed.",
"unsafe_next_scene_prompt": "One of the motorcycles suddenly swerves into a lane, causing a rear-end collision with a passing car.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000024.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic light changes, and vehicles smoothly continue on their respective paths.",
"unsafe_next_scene_prompt": "The bus accidentally moves too close to the auto rickshaw, resulting in a minor collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000025.jpg",
"prediction": {
"safe_next_scene_prompt": "The scooter riders continue safely on the road, maintaining a steady speed alongside the other vehicles.",
"unsafe_next_scene_prompt": "The scooter swerves unexpectedly, causing a close call with an approaching vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end/Side collision",
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000026.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue to walk safely along the sidewalk while the vehicles pass by without incident.",
"unsafe_next_scene_prompt": "The motorcycle rider loses control and skids towards the group of pedestrians nearby.",
"unsafe_labels": [
"Rollovers/Out-of-control",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000027.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles slowly start to clear up, creating a smoother flow of traffic at the intersection.",
"unsafe_next_scene_prompt": "A sudden maneuver by a motorbike causes a chain collision involving multiple vehicles.",
"unsafe_labels": [
"Vehicle Collisions: Chain collisions"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000028.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians safely reach the other side of the road as the bus continues traveling away.",
"unsafe_next_scene_prompt": "The bus suddenly reverses, creating a dangerous situation for the pedestrians who are crossing the road.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000029.jpg",
"prediction": {
"safe_next_scene_prompt": "The street remains calm as vehicles continue to pass by without incident, and pedestrians carry on with their day.",
"unsafe_next_scene_prompt": "A motorbike swerves to avoid a pedestrian, causing a potential side collision with a parked vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000030.jpg",
"prediction": {
"safe_next_scene_prompt": "The people continue to chat and enjoy their day as the motorbike passes by peacefully.",
"unsafe_next_scene_prompt": "The motorbike suddenly swerves to avoid a pedestrian, leading to a collision with the parked bikes.",
"unsafe_labels": [
"Vehicle Collisions",
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000031.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians wait safely on the sidewalk as the motorcycles continue to move smoothly down the road.",
"unsafe_next_scene_prompt": "One of the motorcycles swerves unexpectedly, causing a collision with another motorbike.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000032.jpg",
"prediction": {
"safe_next_scene_prompt": "The truck continues to drive smoothly along the road, and the traffic around the area remains calm.",
"unsafe_next_scene_prompt": "The truck swerves suddenly, causing a rear-end collision with the car ahead.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000033.jpg",
"prediction": {
"safe_next_scene_prompt": "The truck smoothly merges into traffic and continues on its journey without any incidents.",
"unsafe_next_scene_prompt": "The truck unexpectedly swerves, causing a collision with a nearby vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000034.jpg",
"prediction": {
"safe_next_scene_prompt": "The road remains clear as vehicles calmly continue down the street, and pedestrians walk safely along the sidewalks.",
"unsafe_next_scene_prompt": "A vehicle swerves abruptly to avoid a pedestrian, leading to a side collision with a parked car.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000035.jpg",
"prediction": {
"safe_next_scene_prompt": "The motorcyclists continue riding smoothly down the street, maintaining a safe distance from pedestrians.",
"unsafe_next_scene_prompt": "The motorcyclists unexpectedly swerve to avoid an obstacle, leading to a near collision with pedestrians crossing the street.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance",
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000036.jpg",
"prediction": {
"safe_next_scene_prompt": "The bus continues to move smoothly, and pedestrians cross the road safely as traffic maintains a steady flow.",
"unsafe_next_scene_prompt": "The bus suddenly swerves to avoid a motorcycle, causing a chain collision with the vehicles behind it.",
"unsafe_labels": [
"Vehicle Collisions: Chain collisions"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000037.jpg",
"prediction": {
"safe_next_scene_prompt": "The scooter rider continues to drive safely, passing the pedestrians without any incident.",
"unsafe_next_scene_prompt": "The scooter rider loses control and accidentally strikes the pedestrians.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000038.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue crossing the road safely as the traffic waits for them.",
"unsafe_next_scene_prompt": "The blue car moves forward without noticing the pedestrians, leading to a potential collision.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000039.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrian crosses the street safely while the auto-rickshaw continues its journey down the road without incident.",
"unsafe_next_scene_prompt": "The pedestrian trips and falls while crossing the street, causing the auto-rickshaw to swerve suddenly to avoid him.",
"unsafe_labels": [
"Tripping/Slipping",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000040.jpg",
"prediction": {
"safe_next_scene_prompt": "The group of pedestrians continues walking along the sidewalk, chatting and enjoying their day.",
"unsafe_next_scene_prompt": "The scooter unexpectedly swerves onto the sidewalk, approaching dangerously close to the pedestrians.",
"unsafe_labels": [
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000041.jpg",
"prediction": {
"safe_next_scene_prompt": "Traffic continues to flow smoothly as the vehicles maintain their lanes and speeds.",
"unsafe_next_scene_prompt": "The scooter loses balance while overtaking, colliding with the car ahead.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000042.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrian safely crosses the street, and the vehicles continue on their routes without any interruptions.",
"unsafe_next_scene_prompt": "The pedestrian crosses in front of the car, causing the driver to abruptly stop, leading to a potential rear-end collision with the vehicle behind.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000043.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue to drive smoothly along the road, and the pedestrian crosses safely using the crosswalk.",
"unsafe_next_scene_prompt": "One of the vehicles swerves unexpectedly, creating a possibility of a collision with another vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000044.jpg",
"prediction": {
"safe_next_scene_prompt": "The street remains quiet as the pedestrians continue walking and the shopkeeper tends to his stall.",
"unsafe_next_scene_prompt": "The vehicle parked on the roadside suddenly rolls back into the street, causing nearby pedestrians to quickly move out of the way.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000045.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles maneuver carefully around each other, and the traffic continues to flow smoothly.",
"unsafe_next_scene_prompt": "The bus attempts to move forward, resulting in a collision with the auto rickshaw.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000046.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue to cross the road safely, reaching the other side without any incidents.",
"unsafe_next_scene_prompt": "A vehicle approaches, failing to notice the pedestrians and puts them at risk of being struck.",
"unsafe_labels": [
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000047.jpg",
"prediction": {
"safe_next_scene_prompt": "The vendor continues to arrange fruits on the stand while the passerby walks along the sidewalk.",
"unsafe_next_scene_prompt": "The vehicle moves suddenly and approaches the curb where the children are standing.",
"unsafe_labels": [
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000048.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic continues smoothly, with vehicles and scooters moving safely through the intersection.",
"unsafe_next_scene_prompt": "A scooter attempts to overtake a car but collides with it, causing a pile-up involving multiple vehicles.",
"unsafe_labels": [
"Vehicle Collisions",
"Chain collisions"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000049.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue to move smoothly as the pedestrians safely cross the road.",
"unsafe_next_scene_prompt": "The motorcycle, unable to brake in time, collides with the white car in the intersection.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000050.jpg",
"prediction": {
"safe_next_scene_prompt": "Traffic continues to flow smoothly as pedestrians observe signals and cross safely at designated areas.",
"unsafe_next_scene_prompt": "A scooter narrowly avoids colliding with a pedestrian who steps into the road unexpectedly.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000051.jpg",
"prediction": {
"safe_next_scene_prompt": "The motorbikes continue to ride along the street, passing by the parked cars without any incident.",
"unsafe_next_scene_prompt": "One of the motorbikes skids on the road and tips over, causing a minor accident.",
"unsafe_labels": [
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000052.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic continues to flow smoothly as pedestrians cross carefully at the intersection.",
"unsafe_next_scene_prompt": "A vehicle suddenly swerves to avoid a pedestrian, causing a minor collision with another car.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000053.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue to move smoothly along the road, maintaining a safe distance from each other.",
"unsafe_next_scene_prompt": "The vehicle on the right makes an unexpected turn into oncoming traffic, leading to a side collision.",
"unsafe_labels": [
"Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000054.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue to move smoothly along the road without incident, and the pedestrians cross safely at the crosswalk.",
"unsafe_next_scene_prompt": "One of the motorcyclists swerves unexpectedly, causing a collision with another vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000055.jpg",
"prediction": {
"safe_next_scene_prompt": "The motorbike smoothly passes by the bus and continues down the road without any issues.",
"unsafe_next_scene_prompt": "The motorbike attempts to overtake the bus and inadvertently drifts too close, causing a side collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000056.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic continues smoothly while the pedestrians and vendors carry on with their activities, and the cow crosses the road safely.",
"unsafe_next_scene_prompt": "A scooter rider swerves to avoid the cow, leading to a collision with another vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000057.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue to smoothly merge into traffic without any issues, while the cyclist waits for a safe moment to proceed.",
"unsafe_next_scene_prompt": "The cyclist accidentally swerves into oncoming traffic, resulting in a collision with the approaching car.",
"unsafe_labels": [
"Vehicle Collisions",
"Striking pedestrians"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000058.jpg",
"prediction": {
"safe_next_scene_prompt": "The people continue their conversations while others enter the shop to make purchases.",
"unsafe_next_scene_prompt": "A scooter on the sidewalk suddenly slips, causing the rider to lose balance.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000059.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue to drive smoothly down the road as pedestrians walk safely along the side.",
"unsafe_next_scene_prompt": "A pedestrian steps onto the road, resulting in an evasive maneuver by an oncoming vehicle.",
"unsafe_labels": [
"Encroaching dangerous distance",
"Striking pedestrians"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000060.jpg",
"prediction": {
"safe_next_scene_prompt": "The auto-rickshaws continue smoothly past the market without any issues, and the traffic flows steadily.",
"unsafe_next_scene_prompt": "An auto-rickshaw abruptly stops, causing the vehicle behind it to rear-end, leading to a minor collision.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000061.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue driving smoothly around the curve without any issues.",
"unsafe_next_scene_prompt": "The auto rickshaw suddenly skids on the road, causing it to crash into another vehicle.",
"unsafe_labels": [
"Rollovers/Out-of-control",
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000062.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian walks past the parked scooters, enjoying the sunny day.",
"unsafe_next_scene_prompt": "A scooter suddenly skids and crashes into the parked bicycles.",
"unsafe_labels": [
"Skidding",
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000063.jpg",
"prediction": {
"safe_next_scene_prompt": "The truck and the scooter continue down the road without any issues, smoothly merging into traffic.",
"unsafe_next_scene_prompt": "The scooter unexpectedly swerves to avoid the truck, leading to a side collision.",
"unsafe_labels": [
"Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000064.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic light changes, and vehicles proceed smoothly through the intersection.",
"unsafe_next_scene_prompt": "The front car suddenly stops, causing a rear-end collision between the cars behind it.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000065.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles slowly begin to move as the traffic light turns green, and the flow returns to normal, enabling all drivers to continue their journey smoothly.",
"unsafe_next_scene_prompt": "A sudden stop by one of the cars causes a chain reaction of rear-end collisions among the closely packed vehicles.",
"unsafe_labels": [
"Vehicle Collisions: Chain collisions"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000066.jpg",
"prediction": {
"safe_next_scene_prompt": "The group continues walking down the road, chatting and enjoying the sunny day.",
"unsafe_next_scene_prompt": "The scooter swerves to avoid the group, almost losing control.",
"unsafe_labels": [
"Pedestrian Accidents",
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000067.jpg",
"prediction": {
"safe_next_scene_prompt": "The scooter and auto-rickshaw safely continue their journey, merging smoothly into the traffic ahead.",
"unsafe_next_scene_prompt": "The scooter suddenly swerves to avoid debris, losing control near the truck.",
"unsafe_labels": [
"Rollovers/Out-of-control",
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000068.jpg",
"prediction": {
"safe_next_scene_prompt": "The man continues to inspect his motorcycle, while pedestrians walk by without incident.",
"unsafe_next_scene_prompt": "The pedestrian trips over the man crouched near the motorcycle, causing a stumble.",
"unsafe_labels": [
"Pedestrian Accidents",
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000069.jpg",
"prediction": {
"safe_next_scene_prompt": "The car smoothly continues down the road, passing by pedestrians safely and maintaining a steady speed.",
"unsafe_next_scene_prompt": "The car accelerates unexpectedly, veering towards the pedestrian area and causing alarm.",
"unsafe_labels": [
"Encroaching dangerous distance",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000070.jpg",
"prediction": {
"safe_next_scene_prompt": "The auto-rickshaw driver starts the vehicle and smoothly merges into the road traffic.",
"unsafe_next_scene_prompt": "The auto-rickshaw accidentally rolls backward and collides with a parked motorcycle.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000071.jpg",
"prediction": {
"safe_next_scene_prompt": "The truck continues to make its turn smoothly while pedestrians wait safely on the sidewalk.",
"unsafe_next_scene_prompt": "The truck loses control and veers off its path, causing a potential collision with another vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Rollovers/Out-of-control: Skidding"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000072.jpg",
"prediction": {
"safe_next_scene_prompt": "The two people continue walking down the street, chatting amiably, as a few more pedestrians join the scene.",
"unsafe_next_scene_prompt": "The two individuals inadvertently step onto the road, not noticing an oncoming vehicle approaching quickly.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000073.jpg",
"prediction": {
"safe_next_scene_prompt": "The water tanker carefully maneuvers through the intersection, and all vehicles proceed without incident.",
"unsafe_next_scene_prompt": "The truck makes a sudden turn, leading to a near-collision with a motorbike approaching from the left.",
"unsafe_labels": [
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000074.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles on the road continue to move smoothly, while pedestrians on the sidewalk go about their day safely.",
"unsafe_next_scene_prompt": "A motorcyclist loses control and skids, causing a multi-vehicle collision on the road.",
"unsafe_labels": [
"Vehicle Collisions",
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000075.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrian safely crosses the street as the vehicles slow down and yield, maintaining a safe distance.",
"unsafe_next_scene_prompt": "The pedestrian suddenly steps into the path of an oncoming motorcycle, resulting in a near-miss or collision.",
"unsafe_labels": [
"Striking pedestrians",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000076.jpg",
"prediction": {
"safe_next_scene_prompt": "The traffic continues to flow smoothly with vehicles maintaining a safe distance from each other.",
"unsafe_next_scene_prompt": "A motorbike swerves to avoid a sudden stop, leading to a side collision with a nearby car.",
"unsafe_labels": [
"Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000077.jpg",
"prediction": {
"safe_next_scene_prompt": "Traffic continues smoothly as the vehicles move forward and pedestrians walk along the sidewalk.",
"unsafe_next_scene_prompt": "The car door opens wider, potentially causing a collision with the approaching vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000078.jpg",
"prediction": {
"safe_next_scene_prompt": "The auto rickshaw continues its drive smoothly, passing by the parked cars without any issues.",
"unsafe_next_scene_prompt": "The auto rickshaw swerves unexpectedly, causing a collision with one of the parked vehicles.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000079.jpg",
"prediction": {
"safe_next_scene_prompt": "The white car safely continues to drive through the street without any incidents while pedestrians continue shopping at nearby stalls.",
"unsafe_next_scene_prompt": "The scooter rider loses control, causing a side collision with the white car, disrupting traffic in the area.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Rollovers/Out-of-control: Skidding"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000080.jpg",
"prediction": {
"safe_next_scene_prompt": "The motorcyclists and pedestrians continue to move cautiously, maintaining safe distances from each other and other vehicles.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly steps into the path of a moving vehicle, causing a close call or minor accident.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000081.jpg",
"prediction": {
"safe_next_scene_prompt": "The people continue walking down the street, enjoying a conversation as they pass by the parked vehicles.",
"unsafe_next_scene_prompt": "The scooter suddenly swerves to avoid an obstacle and collides with a parked car.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000082.jpg",
"prediction": {
"safe_next_scene_prompt": "A person parks their scooter and enters a nearby shop to purchase some items.",
"unsafe_next_scene_prompt": "A scooter unexpectedly loses balance while parking, causing the rider to fall onto the pavement.",
"unsafe_labels": [
"Tripping/Slipping",
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000083.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles smoothly continue their journey, and the pedestrians cross the street safely.",
"unsafe_next_scene_prompt": "A scooter suddenly loses balance and causes a minor collision with an auto rickshaw.",
"unsafe_labels": [
"Side collision",
"Skidding"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000084.jpg",
"prediction": {
"safe_next_scene_prompt": "The person continues arranging the vegetables on the truck as the auto rickshaws and scooters pass by smoothly on the road.",
"unsafe_next_scene_prompt": "The person on the truck loses balance and falls onto the road, causing nearby vehicles to swerve suddenly.",
"unsafe_labels": [
"Pedestrian Accidents",
"Tripping/Slipping",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000085.jpg",
"prediction": {
"safe_next_scene_prompt": "The motorcycle and vehicles continue smoothly down the road, with pedestrians safely reaching their destination.",
"unsafe_next_scene_prompt": "The motorcycle swerves to avoid a pedestrian, leading to a collision with the nearby truck.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000086.jpg",
"prediction": {
"safe_next_scene_prompt": "The vehicles continue to move smoothly through the intersection as the cyclist waits safely by the side.",
"unsafe_next_scene_prompt": "The cyclist suddenly decides to cross the road, leading to a near-miss with the approaching auto rickshaw.",
"unsafe_labels": [
"Pedestrian Accidents",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000087.jpg",
"prediction": {
"safe_next_scene_prompt": "The street continues to be peaceful as pedestrians shop and motorcycles pass by calmly.",
"unsafe_next_scene_prompt": "A motorcycle loses control, skidding dangerously close to the sidewalk and pedestrians.",
"unsafe_labels": [
"Rollovers/Out-of-control",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000088.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue walking down the street, enjoying their conversation.",
"unsafe_next_scene_prompt": "A car turns the corner quickly and gets too close to the pedestrians.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000089.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrian continues to walk safely along the sidewalk as vehicles pass by without incident.",
"unsafe_next_scene_prompt": "The truck swerves unexpectedly, coming dangerously close to the pedestrian.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000090.jpg",
"prediction": {
"safe_next_scene_prompt": "The auto-rickshaw continues down the street without any issues as pedestrians watch from the sidewalk.",
"unsafe_next_scene_prompt": "The auto-rickshaw loses control and swerves towards the sidewalk.",
"unsafe_labels": [
"Out-of-control",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000091.jpg",
"prediction": {
"safe_next_scene_prompt": "The red car continues to drive safely down the road without incident, while the pedestrians walk on the footpath.",
"unsafe_next_scene_prompt": "The red car loses control and veers towards the pedestrians, creating a potential accident.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000092.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue walking safely across the road as the vehicles maintain their lanes.",
"unsafe_next_scene_prompt": "A vehicle speeds through the intersection, narrowly missing pedestrians who are forced to jump back.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000093.jpg",
"prediction": {
"safe_next_scene_prompt": "The woman continues walking down the quiet street, enjoying the morning air.",
"unsafe_next_scene_prompt": "A vehicle suddenly speeds down the road, creating a dangerous situation for the pedestrian.",
"unsafe_labels": [
"Vehicle Collisions",
"Striking pedestrians"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000094.jpg",
"prediction": {
"safe_next_scene_prompt": "The truck proceeds down the road smoothly, allowing the motorcyclist to pass safely on the left.",
"unsafe_next_scene_prompt": "The motorcyclist attempts to overtake the truck but loses balance, skidding on the road surface.",
"unsafe_labels": [
"Rollovers/Out-of-control",
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000095.jpg",
"prediction": {
"safe_next_scene_prompt": "The motorcyclist continues to ride at a steady pace, maintaining a safe distance from the car in front.",
"unsafe_next_scene_prompt": "The motorcyclist attempts to overtake the car and nearly collides with the truck on the left.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000096.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues down the road smoothly, and pedestrians navigate the side of the street safely.",
"unsafe_next_scene_prompt": "A motorcycle swerves to avoid the car, losing control and stumbling over the curb.",
"unsafe_labels": [
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000097.jpg",
"prediction": {
"safe_next_scene_prompt": "Traffic continues smoothly, with vehicles moving along the road without any incidents and pedestrians safely navigating the sidewalk.",
"unsafe_next_scene_prompt": "A pedestrian steps into the path of a vehicle, causing a sudden stop and potential collision.",
"unsafe_labels": [
"Vehicle Collisions: Striking pedestrians",
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000098.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrian safely crosses the road and reaches the other side without any incidents.",
"unsafe_next_scene_prompt": "The vehicle moves forward, coming dangerously close to the pedestrian, risking a collision.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/iisc-aim__UVH-26/000099.jpg",
"prediction": {
"safe_next_scene_prompt": "The bus and scooters continue moving smoothly through the intersection, with all vehicles maintaining safe distances from each other.",
"unsafe_next_scene_prompt": "The bus makes a sharp turn, almost colliding with the scooters nearby, causing a sudden stop.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000000.jpg",
"prediction": {
"safe_next_scene_prompt": "As the sun sets, pedestrians begin to stroll down the quiet street, enjoying the peaceful evening.",
"unsafe_next_scene_prompt": "A car speeds down the street, losing control and skidding towards the parked vehicles.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end/Side collision",
"Rollovers/Out-of-control: Skidding"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000001.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian continues walking along the sidewalk as the cars pass by smoothly on the road.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly steps onto the road, risking an encounter with an oncoming vehicle.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000002.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple of pedestrians enjoy a leisurely stroll down the cobblestone alley, admiring the foliage-covered walls.",
"unsafe_next_scene_prompt": "A person trips on the uneven cobblestones, stumbling forward in the narrow alley.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000003.jpg",
"prediction": {
"safe_next_scene_prompt": "The cyclist continues to ride safely down the street as pedestrians walk along the sidewalk.",
"unsafe_next_scene_prompt": "The cyclist swerves accidentally and veers close to pedestrians, nearly causing a collision.",
"unsafe_labels": [
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000004.jpg",
"prediction": {
"safe_next_scene_prompt": "Pedestrians walk down the street, enjoying the urban scenery and a clear day.",
"unsafe_next_scene_prompt": "A piece of construction debris falls from the scaffolding onto the street.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000005.jpg",
"prediction": {
"safe_next_scene_prompt": "As shoppers continue strolling down the street, they pause to admire the beautifully lit holiday displays in the storefronts.",
"unsafe_next_scene_prompt": "A pedestrian on their phone steps off the curb, not noticing an approaching vehicle.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000006.jpg",
"prediction": {
"safe_next_scene_prompt": "Traffic lights change and cars continue to move smoothly down the street.",
"unsafe_next_scene_prompt": "A distracted driver fails to notice the light changing and rear-ends the car in front.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000007.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue to stroll down the busy street, enjoying a pleasant afternoon.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly trips and falls on the patterned sidewalk.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000008.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple strolls through the alley, enjoying the warm, golden light of the setting sun.",
"unsafe_next_scene_prompt": "A cyclist speeds down the narrow alley, potentially colliding with pedestrians.",
"unsafe_labels": [
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000009.jpg",
"prediction": {
"safe_next_scene_prompt": "People continue walking down the snowy street, admiring the festive lights and decorations.",
"unsafe_next_scene_prompt": "A pedestrian slips on the icy sidewalk, struggling to regain balance and avoid a fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000010.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple walks down the dimly lit street, admiring the historical architecture under the warm glow of streetlights.",
"unsafe_next_scene_prompt": "A pedestrian slips on the wet cobblestone, losing their balance and narrowly avoiding a passing car.",
"unsafe_labels": [
"Tripping/Slipping",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000011.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of people strolls down the street, enjoying the sunny day, as a dog plays in a nearby yard.",
"unsafe_next_scene_prompt": "A car comes speeding around the corner, losing control and skidding off the road.",
"unsafe_labels": [
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000012.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues to drive smoothly down the street, passing by pedestrians who are enjoying a walk on the sidewalk.",
"unsafe_next_scene_prompt": "The car suddenly swerves to avoid a pedestrian stepping onto the street, leading to a potential collision with another vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000013.jpg",
"prediction": {
"safe_next_scene_prompt": "The couple continues to stroll through the alley, enjoying the art on the walls.",
"unsafe_next_scene_prompt": "A loose object falls from one of the buildings above, narrowly missing the couple.",
"unsafe_labels": [
"Falling Rocks/Landslides",
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000014.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue their leisurely stroll down the street, enjoying the pleasant weather.",
"unsafe_next_scene_prompt": "A car suddenly reverses down the street, creating a hazard for the pedestrians.",
"unsafe_labels": [
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000015.jpg",
"prediction": {
"safe_next_scene_prompt": "The person continues walking down the sidewalk, enjoying the sunny day.",
"unsafe_next_scene_prompt": "The person on the sidewalk inadvertently steps onto the road, coming dangerously close to an oncoming vehicle.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000016.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple of pedestrians walk casually down the sidewalk, enjoying the day's weather without any disturbances.",
"unsafe_next_scene_prompt": "A vehicle suddenly speeds around the corner, striking a pedestrian who is crossing the street.",
"unsafe_labels": [
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000017.jpg",
"prediction": {
"safe_next_scene_prompt": "The people continue their pleasant conversation, enjoying the quaint charm of the street.",
"unsafe_next_scene_prompt": "A passerby accidentally stumbles on the uneven cobblestone street, risking a fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000018.jpg",
"prediction": {
"safe_next_scene_prompt": "As evening falls, the lights from the buildings reflect beautifully on the calm canal waters, while a few people walk leisurely along the streets enjoying the serene atmosphere.",
"unsafe_next_scene_prompt": "Suddenly, a person cycling near the edge of the canal loses balance and falls into the water.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000019.jpg",
"prediction": {
"safe_next_scene_prompt": "A dog leisurely trots down the empty street, sniffing around curiously.",
"unsafe_next_scene_prompt": "A car suddenly loses control and skids on the wet street, narrowly avoiding parked vehicles.",
"unsafe_labels": [
"Skidding",
"Off the road"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000020.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue walking down the street, enjoying the architecture and trees lining the pathway.",
"unsafe_next_scene_prompt": "A car unexpectedly swerves near the sidewalk, causing the pedestrians to step back quickly.",
"unsafe_labels": [
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000021.jpg",
"prediction": {
"safe_next_scene_prompt": "The group continues walking down the street, talking and enjoying their day.",
"unsafe_next_scene_prompt": "A car suddenly speeds by too close, causing the pedestrians to jump aside.",
"unsafe_labels": [
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000022.jpg",
"prediction": {
"safe_next_scene_prompt": "The women enter the store and are greeted by a friendly shop assistant who offers them a basket.",
"unsafe_next_scene_prompt": "As the women walk towards the store, someone on a bicycle quickly approaches them from behind, risking a collision.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000023.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue walking down the street, passing by the various shops and cars parked alongside the curb.",
"unsafe_next_scene_prompt": "A car suddenly swerves onto the sidewalk, causing pedestrians to quickly jump out of the way.",
"unsafe_labels": [
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000024.jpg",
"prediction": {
"safe_next_scene_prompt": "The bustling street becomes busier as more people arrive to shop and enjoy the day.",
"unsafe_next_scene_prompt": "Loose bricks from a building facade fall onto the sidewalk, causing nearby pedestrians to scatter.",
"unsafe_labels": [
"Falling Rocks/Landslides",
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000025.jpg",
"prediction": {
"safe_next_scene_prompt": "The people continue to stroll down the bustling street, enjoying the shops and cafes.",
"unsafe_next_scene_prompt": "A sudden commotion in the crowd causes a panic, leading to people pushing and shoving to get away.",
"unsafe_labels": [
"Crowd Crush/Panic Risk (Entrance Pushing, Falling and Being Pushed)"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000026.jpg",
"prediction": {
"safe_next_scene_prompt": "Pedestrians continue to cross the street safely as the traffic lights change, illuminating the scene with festive lights.",
"unsafe_next_scene_prompt": "A car runs the red light, resulting in a collision with another vehicle entering the intersection.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000027.jpg",
"prediction": {
"safe_next_scene_prompt": "The people continue to walk along the lively street, enjoying the architecture and atmosphere.",
"unsafe_next_scene_prompt": "A pedestrian trips over an uneven sidewalk tile, potentially causing injury.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000028.jpg",
"prediction": {
"safe_next_scene_prompt": "The vendor continues pushing the cart down the narrow alley, greeting a passerby with a smile.",
"unsafe_next_scene_prompt": "The vendor trips on uneven cobblestones, causing the cart to tip, and products spill onto the ground.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000029.jpg",
"prediction": {
"safe_next_scene_prompt": "The trolley continues smoothly down the street, with pedestrians walking safely on the sidewalks and cars passing by without any incident.",
"unsafe_next_scene_prompt": "A trolley loses control and skids towards the sidewalk, causing pedestrians to scatter in fear.",
"unsafe_labels": [
"Pedestrian Accidents",
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000030.jpg",
"prediction": {
"safe_next_scene_prompt": "Pedestrians continue to walk along the sidewalk as more cars drive down the road under the evening sky.",
"unsafe_next_scene_prompt": "A car swerves unexpectedly, causing a pedestrian to step back to avoid being struck.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000031.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue to window-shop along the quiet street, enjoying the sunny weather.",
"unsafe_next_scene_prompt": "A cyclist suddenly loses control and veers towards a group of pedestrians, causing panic on the narrow street.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians",
"Rollovers/Out-of-control: Skidding"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000032.jpg",
"prediction": {
"safe_next_scene_prompt": "The blue car continues smoothly along the empty highway, maintaining a safe speed.",
"unsafe_next_scene_prompt": "The blue car suddenly swerves to avoid debris on the road, risking a skid.",
"unsafe_labels": [
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000033.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue their leisurely stroll down the colorful street, stopping occasionally to admire the architecture.",
"unsafe_next_scene_prompt": "A car suddenly swerves and encroaches closely, causing the pedestrians to jump back in alarm.",
"unsafe_labels": [
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000034.jpg",
"prediction": {
"safe_next_scene_prompt": "The street lights turn on as evening approaches, illuminating the peaceful street filled with parked cars.",
"unsafe_next_scene_prompt": "A car from a side street speeds into the intersection, causing a rear-end collision.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000035.jpg",
"prediction": {
"safe_next_scene_prompt": "The double-decker buses continue to move smoothly along the street while pedestrians enjoy their evening walk.",
"unsafe_next_scene_prompt": "A bus unexpectedly swerves to avoid an obstacle, leading to a collision with another vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000036.jpg",
"prediction": {
"safe_next_scene_prompt": "The couple continues to stroll down the peaceful street, admiring the traditional architecture and enjoying the serene atmosphere.",
"unsafe_next_scene_prompt": "As the couple walks further, they slip on a wet spot on the stone path, causing them to lose their balance.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000037.jpg",
"prediction": {
"safe_next_scene_prompt": "The vintage cars continue to drive slowly through the historic city streets, enjoying the peaceful afternoon.",
"unsafe_next_scene_prompt": "One car swerves unexpectedly, coming dangerously close to the sidewalk, causing pedestrians to jump back in alarm.",
"unsafe_labels": [
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000038.jpg",
"prediction": {
"safe_next_scene_prompt": "The evening continues peacefully with a gentle breeze, as more pedestrians stroll down the quiet street.",
"unsafe_next_scene_prompt": "A vehicle unexpectedly swerves onto the sidewalk, causing pedestrians to quickly move out of the way.",
"unsafe_labels": [
"Pedestrian Accidents",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000039.jpg",
"prediction": {
"safe_next_scene_prompt": "The group continues strolling leisurely down the street, chatting and enjoying the ambiance of the night.",
"unsafe_next_scene_prompt": "One of the people walking stumbles on an uneven cobblestone, risking a fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000040.jpg",
"prediction": {
"safe_next_scene_prompt": "The market street becomes busier as more people gather to browse and shop, enjoying the sunny day.",
"unsafe_next_scene_prompt": "A pedestrian steps into the path of an oncoming scooter, creating a moment of alarm among the crowd.",
"unsafe_labels": [
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000041.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian strolls down the alley, enjoying the sunshine and stopping at a nearby café for a coffee.",
"unsafe_next_scene_prompt": "A motorbike skids on a slick patch on the street, narrowly avoiding a pedestrian.",
"unsafe_labels": [
"Rollovers/Out-of-control",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000042.jpg",
"prediction": {
"safe_next_scene_prompt": "The man continues to play his saxophone, drawing in a small crowd who enjoy his music.",
"unsafe_next_scene_prompt": "A passerby trips on the uneven sidewalk near the musician, causing a stumble.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000043.jpg",
"prediction": {
"safe_next_scene_prompt": "A person walks past the building quietly, taking in the urban landscape.",
"unsafe_next_scene_prompt": "Someone trips while ascending the staircase, losing their balance.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000044.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians and cyclists continue along their paths without any incidents, sharing the sidewalk peacefully.",
"unsafe_next_scene_prompt": "One of the cyclists swerves unexpectedly toward the pedestrians, causing a collision.",
"unsafe_labels": [
"Striking pedestrians",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000045.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue to walk along the street, enjoying the pleasant day.",
"unsafe_next_scene_prompt": "A cyclist suddenly loses control and swerves into the path of a pedestrian.",
"unsafe_labels": [
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000046.jpg",
"prediction": {
"safe_next_scene_prompt": "As the sun sets, more people begin to stroll down the street, enjoying the vibrant atmosphere.",
"unsafe_next_scene_prompt": "A car speeds down the narrow street, veering dangerously close to pedestrians on the sidewalk.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000047.jpg",
"prediction": {
"safe_next_scene_prompt": "A cyclist leisurely rides past the shops as pedestrians look inside the windows.",
"unsafe_next_scene_prompt": "The cyclist swerves to avoid a pedestrian stepping onto the road, causing a close encounter.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000048.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple strolls leisurely down the street, enjoying the architecture and bustling atmosphere.",
"unsafe_next_scene_prompt": "A car unexpectedly swerves towards the sidewalk, causing pedestrians to scatter in alarm.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000049.jpg",
"prediction": {
"safe_next_scene_prompt": "The people continue strolling through the plaza, enjoying a pleasant evening while window shopping and chatting.",
"unsafe_next_scene_prompt": "A nearby vehicle unexpectedly accelerates towards the plaza, creating a dangerous situation for pedestrians.",
"unsafe_labels": [
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000050.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian walks peacefully down the street, enjoying the afternoon sun.",
"unsafe_next_scene_prompt": "A vehicle suddenly loses control and veers onto the sidewalk, endangering pedestrians.",
"unsafe_labels": [
"Pedestrian Accidents",
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000051.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of friends leisurely stroll down the well-lit street, stopping to admire the vibrant signs and window displays.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly steps onto the road without looking, narrowly avoiding an oncoming vehicle.",
"unsafe_labels": [
"Striking pedestrians",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000052.jpg",
"prediction": {
"safe_next_scene_prompt": "The person continues walking down the street, enjoying the peaceful morning atmosphere.",
"unsafe_next_scene_prompt": "The person trips over an uneven cobblestone, causing them to fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000053.jpg",
"prediction": {
"safe_next_scene_prompt": "A passerby stops to admire the architecture and takes a photograph of the street.",
"unsafe_next_scene_prompt": "One of the vehicles suddenly backs up without noticing a pedestrian nearby.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000054.jpg",
"prediction": {
"safe_next_scene_prompt": "A cat peacefully strolls down the quiet alleyway as a gentle breeze moves the leaves.",
"unsafe_next_scene_prompt": "A pedestrian trips over uneven pavement, causing nearby shutters to shake as they fall.",
"unsafe_labels": [
"Tripping/Slipping",
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000055.jpg",
"prediction": {
"safe_next_scene_prompt": "The construction area remains secure as workers continue their tasks behind the barriers.",
"unsafe_next_scene_prompt": "A vehicle unexpectedly swerves into the construction area, causing a potential collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000056.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian strolls along the side of the bridge, enjoying the view of the river below.",
"unsafe_next_scene_prompt": "A vehicle loses control on the bridge and veers towards the side railings.",
"unsafe_labels": [
"Vehicle Collisions",
"Off the road"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000057.jpg",
"prediction": {
"safe_next_scene_prompt": "Pedestrians stroll along the sidewalk as a cyclist rides down the street, enjoying the sunny weather.",
"unsafe_next_scene_prompt": "A car suddenly swerves into oncoming traffic while avoiding a cyclist, leading to a head-on collision.",
"unsafe_labels": [
"Head-on collision"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000058.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple strolls down the narrow alley, admiring the architecture and enjoying a quiet afternoon.",
"unsafe_next_scene_prompt": "A sudden gust of wind dislodges debris from one of the roofs, causing objects to fall onto the alley.",
"unsafe_labels": [
"Falling Rocks/Landslides",
"Glass Shattering/Falling Debris",
"Extreme Weather Risks (Strong Winds Blowing Down Objects, Trees Falling)"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000059.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple of friends walk down the street, chatting and enjoying the evening ambiance.",
"unsafe_next_scene_prompt": "A speeding car turns the corner too quickly, risking a collision with pedestrians on the sidewalk.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000060.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of tourists arrives at the plaza, taking photos and enjoying the historic architecture.",
"unsafe_next_scene_prompt": "A bicyclist loses control while speeding through the plaza and crashes into a pedestrian.",
"unsafe_labels": [
"Pedestrian Accidents",
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000061.jpg",
"prediction": {
"safe_next_scene_prompt": "The crowd continues to enjoy a leisurely walk under the afternoon sun, visiting shops and cafes along the street.",
"unsafe_next_scene_prompt": "A sudden commotion causes part of the crowd to surge forward, increasing the risk of a crowd crush.",
"unsafe_labels": [
"Crowd Crush/Panic Risk"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000062.jpg",
"prediction": {
"safe_next_scene_prompt": "The street remains calm, with cars smoothly passing by the brightly lit McDonald's sign.",
"unsafe_next_scene_prompt": "A car unexpectedly swerves while trying to enter the drive-thru lane, causing a sudden collision.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000063.jpg",
"prediction": {
"safe_next_scene_prompt": "People casually stroll along the street, stopping to window shop and chat with friends.",
"unsafe_next_scene_prompt": "A pedestrian steps back suddenly to avoid an oncoming cyclist, stumbling into the path of a nearby vehicle.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000064.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian leisurely walks down the sidewalk, passing by the shops on a sunny day.",
"unsafe_next_scene_prompt": "A car unexpectedly mounts the curb, causing pedestrians to quickly jump out of the way.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000065.jpg",
"prediction": {
"safe_next_scene_prompt": "A gentle breeze blows as a few pedestrians stroll down the street, enjoying the quiet atmosphere.",
"unsafe_next_scene_prompt": "A distracted pedestrian steps into the street, unaware of an approaching vehicle.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000066.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian strolls down the quiet street, enjoying the vibrant oranges on the tree.",
"unsafe_next_scene_prompt": "A strong wind causes one of the oranges to fall, narrowly missing a pedestrian walking below.",
"unsafe_labels": [
"Extreme Weather Risks (Strong Winds Blowing Down Objects, Trees Falling)"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000067.jpg",
"prediction": {
"safe_next_scene_prompt": "The people continue to walk along the street, browsing the market stalls peacefully.",
"unsafe_next_scene_prompt": "A bicycle speeds through the crowded street, causing pedestrians to quickly move out of the way.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000068.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian walks safely through the alley, enjoying the quiet ambiance.",
"unsafe_next_scene_prompt": "A vehicle suddenly reverses into the alley, narrowly missing people walking by.",
"unsafe_labels": [
"Vehicle Collisions: Rear-end/Side collision",
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000069.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian leisurely walks down the quiet street, enjoying the peaceful atmosphere.",
"unsafe_next_scene_prompt": "A cyclist suddenly loses control and skids on the uneven cobblestones.",
"unsafe_labels": [
"Rollovers/Out-of-control",
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000070.jpg",
"prediction": {
"safe_next_scene_prompt": "The couple continues walking down the cobblestone street, enjoying the peaceful afternoon.",
"unsafe_next_scene_prompt": "A car suddenly speeds around the corner, narrowly missing the couple as they walk.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000071.jpg",
"prediction": {
"safe_next_scene_prompt": "The evening continues peacefully as cars drive slowly down the dimly lit street, with pedestrians walking safely on the sidewalks.",
"unsafe_next_scene_prompt": "One of the vehicles suddenly swerves, losing control on the wet road and causing a side collision with another car.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000072.jpg",
"prediction": {
"safe_next_scene_prompt": "The person continues to perform carefree, entertaining passersby with their antics.",
"unsafe_next_scene_prompt": "The person steps unexpectedly into the path of a cyclist, causing a near collision.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000073.jpg",
"prediction": {
"safe_next_scene_prompt": "Pedestrians walk along the sidewalk peacefully, enjoying a sunny day.",
"unsafe_next_scene_prompt": "A car swerves off the road, narrowly avoiding pedestrians on the sidewalk.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000074.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of tourists leisurely walk up the picturesque street, admiring the colorful murals on the walls.",
"unsafe_next_scene_prompt": "Someone walking up the narrow street trips and falls, landing awkwardly on the steps.",
"unsafe_labels": [
"Stair Falls/Stumbling"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000075.jpg",
"prediction": {
"safe_next_scene_prompt": "The street remains quiet as a car drives cautiously down the lane without any issues.",
"unsafe_next_scene_prompt": "A pedestrian steps onto the road, unaware of an approaching vehicle, leading to a potential accident.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000076.jpg",
"prediction": {
"safe_next_scene_prompt": "Pedestrians continue to walk along the sidewalks, while cars proceed smoothly along the road.",
"unsafe_next_scene_prompt": "A vehicle suddenly swerves into the opposite lane, risking a head-on collision.",
"unsafe_labels": [
"Head-on collision"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000077.jpg",
"prediction": {
"safe_next_scene_prompt": "Pedestrians continue walking down the busy street, enjoying the sunny day and stopping occasionally to browse shops.",
"unsafe_next_scene_prompt": "A car unexpectedly swerves onto the sidewalk, causing people to quickly jump out of the way.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000078.jpg",
"prediction": {
"safe_next_scene_prompt": "The cyclist continues down the road, enjoying the pleasant weather as pedestrians walk by.",
"unsafe_next_scene_prompt": "The cyclist suddenly swerves to avoid a parked car door opening, losing balance and falling onto the road.",
"unsafe_labels": [
"Pedestrian Accidents",
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000079.jpg",
"prediction": {
"safe_next_scene_prompt": "The man continues to rest on the bench, enjoying the peaceful afternoon view of the street.",
"unsafe_next_scene_prompt": "The man attempts to stand up but trips on the uneven cobblestones, stumbling slightly.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000080.jpg",
"prediction": {
"safe_next_scene_prompt": "People continue to walk through the street as the lights change, pedestrians safely cross at the crosswalk.",
"unsafe_next_scene_prompt": "A pedestrian steps off the curb without noticing the oncoming traffic, leading to a close call.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000081.jpg",
"prediction": {
"safe_next_scene_prompt": "Pedestrians continue to walk safely around the square, and a few people enter the building.",
"unsafe_next_scene_prompt": "A distracted pedestrian steps onto the road, causing a vehicle to swerve suddenly.",
"unsafe_labels": [
"Pedestrian Accidents",
"Vehicle Collisions"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000082.jpg",
"prediction": {
"safe_next_scene_prompt": "People continue to stroll leisurely along the shaded street, enjoying the pleasant weather and vibrant surroundings.",
"unsafe_next_scene_prompt": "A cyclist loses balance and collides with a pedestrian, causing a minor accident on the sidewalk.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000083.jpg",
"prediction": {
"safe_next_scene_prompt": "The two people continue their leisurely walk down the street, stopping occasionally to peek inside shop windows.",
"unsafe_next_scene_prompt": "A strong gust of wind blows through the narrow street, causing a large sign to detach and fall towards the pedestrians.",
"unsafe_labels": [
"Extreme Weather Risks (Strong Winds Blowing Down Objects, Trees Falling)",
"Falling Rocks/Landslides"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000084.jpg",
"prediction": {
"safe_next_scene_prompt": "Pedestrians continue to stroll down the busy street, occasionally pausing to glance into shop windows.",
"unsafe_next_scene_prompt": "A distracted pedestrian steps off the curb, narrowly avoiding a motorbike approaching from the side.",
"unsafe_labels": [
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000085.jpg",
"prediction": {
"safe_next_scene_prompt": "People continue to walk along the street, enjoying a calm afternoon of shopping and leisure.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly stumbles on the sidewalk near the edge of the street.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000086.jpg",
"prediction": {
"safe_next_scene_prompt": "The motorcyclist continues to ride smoothly along the road, enjoying the clear weather and scenery.",
"unsafe_next_scene_prompt": "A car suddenly changes lanes without signaling, leading to a potential collision with the motorcyclist.",
"unsafe_labels": [
"Vehicle Collisions: Side collision"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000087.jpg",
"prediction": {
"safe_next_scene_prompt": "A group of friends strolls down the street, enjoying the evening and chatting happily.",
"unsafe_next_scene_prompt": "A car unexpectedly swerves into the pedestrian area, causing panic among people on the street.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000088.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian walks peacefully along the sidewalk, admiring the neat row of houses.",
"unsafe_next_scene_prompt": "A car suddenly swerves off the road, narrowly missing a pedestrian and hitting a parked vehicle.",
"unsafe_labels": [
"Vehicle Collisions: Side collision",
"Pedestrian Accidents: Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000089.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple walks leisurely down the cobblestone street, enjoying the peaceful atmosphere of the historic town.",
"unsafe_next_scene_prompt": "A pedestrian stumbles on the uneven cobblestones, risking a fall onto the hard surface.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000090.jpg",
"prediction": {
"safe_next_scene_prompt": "A few people leisurely walk down the quiet street as the sun sets, casting long shadows.",
"unsafe_next_scene_prompt": "A pedestrian suddenly trips over an uneven cobblestone, risking a fall.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000091.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue their walk through the historic streets, enjoying the architectural beauty around them.",
"unsafe_next_scene_prompt": "Part of a building facade begins to crumble, causing debris to fall into the narrow street below.",
"unsafe_labels": [
"Glass Shattering/Falling Debris"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000092.jpg",
"prediction": {
"safe_next_scene_prompt": "The pedestrians continue to walk along the street, chatting and enjoying their day.",
"unsafe_next_scene_prompt": "A pedestrian trips over a loose pavement slab, causing a brief stumble.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000093.jpg",
"prediction": {
"safe_next_scene_prompt": "The weather remains calm as more pedestrians leisurely stroll down the street, enjoying their day.",
"unsafe_next_scene_prompt": "A sudden gust of wind knocks over items from the cart, creating a hazard for pedestrians.",
"unsafe_labels": [
"Tripping/Slipping",
"Falling Rocks/Landslides",
"Extreme Weather Risks"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000094.jpg",
"prediction": {
"safe_next_scene_prompt": "A lone car drives along the highway, enjoying the scenic landscape under the vast blue sky.",
"unsafe_next_scene_prompt": "A vehicle loses control on the deserted highway, swerving off the road.",
"unsafe_labels": [
"Rollovers/Out-of-control"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000095.jpg",
"prediction": {
"safe_next_scene_prompt": "The car continues down the street as the pedestrian waits safely at the crosswalk.",
"unsafe_next_scene_prompt": "The car swerves suddenly to avoid an obstacle, coming dangerously close to the pedestrian.",
"unsafe_labels": [
"Pedestrian Accidents",
"Encroaching dangerous distance"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000096.jpg",
"prediction": {
"safe_next_scene_prompt": "A pedestrian peacefully walks across the street as the traffic light changes.",
"unsafe_next_scene_prompt": "A vehicle unexpectedly swerves to avoid another car, causing a near-miss with a pedestrian.",
"unsafe_labels": [
"Vehicle Collisions",
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000097.jpg",
"prediction": {
"safe_next_scene_prompt": "A couple strolls leisurely along the street enjoying the evening ambiance.",
"unsafe_next_scene_prompt": "A pedestrian unexpectedly steps into the path of an oncoming cyclist, causing a near collision.",
"unsafe_labels": [
"Pedestrian Accidents"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000098.jpg",
"prediction": {
"safe_next_scene_prompt": "The couple continues to walk down the street, chatting and enjoying the rain.",
"unsafe_next_scene_prompt": "The couple slips on the wet pavement and falls onto the street.",
"unsafe_labels": [
"Tripping/Slipping"
]
}
},
{
"image_id": "outdoor/prithivMLmods__IndoorOutdoorNet-20K/000099.jpg",
"prediction": {
"safe_next_scene_prompt": "The man continues walking down the street, enjoying a chat with a friend.",
"unsafe_next_scene_prompt": "The man accidentally steps into the path of an oncoming bicycle.",
"unsafe_labels": [
"Pedestrian Accidents: Striking pedestrians"
]
}
}
]
|