File size: 247,098 Bytes
cb5f642 | 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 | Model: molmo_7b
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Model type: molmo
Fine-tuned: False
[SKIP] 7582677198746750229_7602429433449893127 (no frames / failed extraction)
[SKIP] 7583417083719847190_7602908531787910422 (no frames / failed extraction)
[SKIP] 7584037444983459092_7593315053781241106 (no frames / failed extraction)
[SKIP] 7584733886580591880_7592782759857245447 (no frames / failed extraction)
[SKIP] 7585273467772194070_7593446635338763542 (no frames / failed extraction)
[SKIP] 7585621460966788374_7603473500816297238 (no frames / failed extraction)
[SKIP] 7586150189941935382_7593384463275461910 (no frames / failed extraction)
[SKIP] 7586597062821793046_7602700394216688918 (no frames / failed extraction)
[SKIP] 7587882760279231777_7593074162743217430 (no frames / failed extraction)
[SKIP] 7588180930066386198_7603412848949218582 (no frames / failed extraction)
[SKIP] 7588207905518767382_7602720790659992855 (no frames / failed extraction)
[SKIP] 7588859776717671702_7593296535866117378 (no frames / failed extraction)
[SKIP] 7589385196827462934_7603104546189036822 (no frames / failed extraction)
[SKIP] 7589913665097174294_7593039101570354454 (no frames / failed extraction)
[SKIP] 7589960687187725591_7593085871843314966 (no frames / failed extraction)
[SKIP] 7590468019252432150_7593407027062263062 (no frames / failed extraction)
[SKIP] 7591630202673974550_7593064619959405846 (no frames / failed extraction)
[SKIP] 7591836115888246038_7593080065173359894 (no frames / failed extraction)
[SKIP] 7591847133309930773_7593094663347768598 (no frames / failed extraction)
[SKIP] 7591874135001763094_7593341652392070432 (no frames / failed extraction)
[SKIP] 7591889069026659606_7593402590713416983 (no frames / failed extraction)
[SKIP] 7592192610349993224_7603422246249483542 (no frames / failed extraction)
[SKIP] 7592249912092298516_7592692430290423048 (no frames / failed extraction)
[SKIP] 7592292119172156694_7593344515516255510 (no frames / failed extraction)
[SKIP] 7592407303433850134_7593089551699086614 (no frames / failed extraction)
[SKIP] 7592438557940190472_7593320220027112712 (no frames / failed extraction)
[SKIP] 7592447930083118358_7593389460251888918 (no frames / failed extraction)
[SKIP] 7592579018231123222_7593140560538504470 (no frames / failed extraction)
[SKIP] 7592587710313827606_7593083922620189974 (no frames / failed extraction)
[SKIP] 7592606436027338006_7593094886673501462 (no frames / failed extraction)
[SKIP] 7592608349129018646_7593268938440576278 (no frames / failed extraction)
[SKIP] 7592638072890641686_7593021195084172566 (no frames / failed extraction)
[SKIP] 7592665489650846999_7593089848739646742 (no frames / failed extraction)
[SKIP] 7592684356397698336_7593071353121492246 (no frames / failed extraction)
[SKIP] 7592689445384490262_7593027488104795414 (no frames / failed extraction)
[SKIP] 7592706387596135702_7593112206011649302 (no frames / failed extraction)
[SKIP] 7592730883266858262_7593062110196681987 (no frames / failed extraction)
[SKIP] 7592949961030094102_7603492671742545174 (no frames / failed extraction)
[SKIP] 7592962410810461462_7593308664602135830 (no frames / failed extraction)
[SKIP] 7592969692319386902_7593341592568712470 (no frames / failed extraction)
[SKIP] 7592997884329512214_7593429334455618838 (no frames / failed extraction)
[SKIP] 7593023927065038102_7593407584388795670 (no frames / failed extraction)
[SKIP] 7593025085439560982_7593349087630691607 (no frames / failed extraction)
[SKIP] 7593042030754925846_7593114198452882720 (no frames / failed extraction)
[SKIP] 7593061563909606658_7593077514952510742 (no frames / failed extraction)
[SKIP] 7593070251244375318_7593078378312387862 (no frames / failed extraction)
[SKIP] 7593753670903270678_7602706264363142432 (no frames / failed extraction)
[SKIP] 7596084847773420823_7602772755599117590 (no frames / failed extraction)
[SKIP] 7596228877127634198_7602841595464994070 (no frames / failed extraction)
[SKIP] 7597475892209650975_7604100479915805972 (no frames / failed extraction)
[SKIP] 7597495313544400150_7603023470439484694 (no frames / failed extraction)
[SKIP] 7597873882174868758_7603005109261405462 (no frames / failed extraction)
[SKIP] 7598175222746877206_7603007093393624342 (no frames / failed extraction)
[SKIP] 7598472951473704214_7602725579322002710 (no frames / failed extraction)
[SKIP] 7598516119405726996_7603973426964925716 (no frames / failed extraction)
[SKIP] 7599677244956593430_7602460334779108630 (no frames / failed extraction)
[SKIP] 7599719725207145750_7602933646244285718 (no frames / failed extraction)
[SKIP] 7600336749038144788_7602748123613629718 (no frames / failed extraction)
[SKIP] 7600496386005536022_7603075447164914966 (no frames / failed extraction)
[SKIP] 7600813734570773782_7602429316919479574 (no frames / failed extraction)
[SKIP] 7600848290413825302_7602779112352025878 (no frames / failed extraction)
[SKIP] 7601220761646402838_7603018067106499863 (no frames / failed extraction)
[SKIP] 7601510305893534998_7602678212866477335 (no frames / failed extraction)
[SKIP] 7601613870863518994_7603563256304700688 (no frames / failed extraction)
[SKIP] 7601848515752398102_7602678382060571906 (no frames / failed extraction)
[SKIP] 7601913432597712150_7603131540138200342 (no frames / failed extraction)
[SKIP] 7601928286750379286_7602577786364120342 (no frames / failed extraction)
[SKIP] 7601933322196946198_7602754876120042774 (no frames / failed extraction)
[SKIP] 7601998610477190422_7602715371820338454 (no frames / failed extraction)
[SKIP] 7602130594893417735_7604578017720962311 (no frames / failed extraction)
[SKIP] 7602177500176796950_7602678869098827030 (no frames / failed extraction)
[SKIP] 7602247963691289878_7602952772085943574 (no frames / failed extraction)
[SKIP] 7602249398457847062_7602706438569381142 (no frames / failed extraction)
[SKIP] 7602252479589322006_7602710905004018966 (no frames / failed extraction)
[SKIP] 7602260906663300374_7603059444066389270 (no frames / failed extraction)
[SKIP] 7602271814382849302_7602882172822834454 (no frames / failed extraction)
[SKIP] 7602310864481357078_7602647922227907862 (no frames / failed extraction)
[SKIP] 7602312802610531592_7604593851096976660 (no frames / failed extraction)
[SKIP] 7602376297129561366_7602579472767847702 (no frames / failed extraction)
[SKIP] 7602380228945644822_7602998633562197270 (no frames / failed extraction)
[SKIP] 7602389798820564227_7602719197398912278 (no frames / failed extraction)
[SKIP] 7602393643793648918_7602510910665624854 (no frames / failed extraction)
[SKIP] 7602395422874717462_7602982547936611606 (no frames / failed extraction)
[SKIP] 7602402488028876054_7602916875302898976 (no frames / failed extraction)
[SKIP] 7602405874400759047_7602473421427019026 (no frames / failed extraction)
[SKIP] 7602411358860102934_7602747902141664534 (no frames / failed extraction)
[SKIP] 7602418496676498711_7603388889381735712 (no frames / failed extraction)
[SKIP] 7602423244649483542_7603035091178097942 (no frames / failed extraction)
[SKIP] 7602580322869366038_7602742455183707414 (no frames / failed extraction)
[SKIP] 7602594689996410134_7603071616582503702 (no frames / failed extraction)
[SKIP] 7602614247180356885_7602647330415709462 (no frames / failed extraction)
[SKIP] 7602629799265488131_7602679961081761046 (no frames / failed extraction)
[SKIP] 7602663072544722198_7602769847151250710 (no frames / failed extraction)
[SKIP] 7602698902118157590_7603048226572274966 (no frames / failed extraction)
[SKIP] 7602712165912513814_7602756998052039958 (no frames / failed extraction)
[SKIP] 7602716194466073858_7602731198116498711 (no frames / failed extraction)
[SKIP] 7602756717650251030_7603150900827491586 (no frames / failed extraction)
[SKIP] 7602761656724196630_7603069792135826710 (no frames / failed extraction)
[SKIP] 7602776772869983510_7602780713779334422 (no frames / failed extraction)
[SKIP] 7603023017689566486_7603400137217543446 (no frames / failed extraction)
[SKIP] 7603726508284185876_7604510815655300372 (no frames / failed extraction)
[SKIP] 7603982549580385544_7604135707203964181 (no frames / failed extraction)
[SKIP] 7604033909038304532_7604549104487861512 (no frames / failed extraction)
[SKIP] 7604197852574665992_7604504344976755988 (no frames / failed extraction)
[SKIP] 7604249600865701142_7604624761112644882 (no frames / failed extraction)
Loaded 133 samples from /mlx/users/jiashuo.fan/playground/inference/active_cases/frames_cache
Pending: 133
Loading Molmo from /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.52, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
Encountered exception while importing tensorflow: No module named 'tensorflow'
Traceback (most recent call last):
File "/mlx/users/jiashuo.fan/playground/inference/active_cases/eval_active_cases.py", line 1174, in <module>
main()
File "/mlx/users/jiashuo.fan/playground/inference/active_cases/eval_active_cases.py", line 1083, in main
model, processor = loader(model_path)
^^^^^^^^^^^^^^^^^^
File "/mlx/users/jiashuo.fan/playground/inference/active_cases/eval_active_cases.py", line 397, in load_molmo
processor = AutoProcessor.from_pretrained(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/models/auto/processing_auto.py", line 392, in from_pretrained
return processor_class.from_pretrained(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/processing_utils.py", line 1394, in from_pretrained
args = cls._get_arguments_from_pretrained(pretrained_model_name_or_path, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/processing_utils.py", line 1453, in _get_arguments_from_pretrained
args.append(attribute_class.from_pretrained(pretrained_model_name_or_path, **kwargs))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/models/auto/image_processing_auto.py", line 598, in from_pretrained
image_processor_class = get_class_from_dynamic_module(class_ref, pretrained_model_name_or_path, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/dynamic_module_utils.py", line 604, in get_class_from_dynamic_module
final_module = get_cached_module_file(
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/dynamic_module_utils.py", line 427, in get_cached_module_file
modules_needed = check_imports(resolved_module_file)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/dynamic_module_utils.py", line 260, in check_imports
raise ImportError(
ImportError: This modeling file requires the following packages that were not found in your environment: tensorflow. Run `pip install tensorflow`
Model: molmo_7b
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Model type: molmo
Fine-tuned: False
[SKIP] 7582677198746750229_7602429433449893127 (no frames / failed extraction)
[SKIP] 7583417083719847190_7602908531787910422 (no frames / failed extraction)
[SKIP] 7584037444983459092_7593315053781241106 (no frames / failed extraction)
[SKIP] 7584733886580591880_7592782759857245447 (no frames / failed extraction)
[SKIP] 7585273467772194070_7593446635338763542 (no frames / failed extraction)
[SKIP] 7585621460966788374_7603473500816297238 (no frames / failed extraction)
[SKIP] 7586150189941935382_7593384463275461910 (no frames / failed extraction)
[SKIP] 7586597062821793046_7602700394216688918 (no frames / failed extraction)
[SKIP] 7587882760279231777_7593074162743217430 (no frames / failed extraction)
[SKIP] 7588180930066386198_7603412848949218582 (no frames / failed extraction)
[SKIP] 7588207905518767382_7602720790659992855 (no frames / failed extraction)
[SKIP] 7588859776717671702_7593296535866117378 (no frames / failed extraction)
[SKIP] 7589385196827462934_7603104546189036822 (no frames / failed extraction)
[SKIP] 7589913665097174294_7593039101570354454 (no frames / failed extraction)
[SKIP] 7589960687187725591_7593085871843314966 (no frames / failed extraction)
[SKIP] 7590468019252432150_7593407027062263062 (no frames / failed extraction)
[SKIP] 7591630202673974550_7593064619959405846 (no frames / failed extraction)
[SKIP] 7591836115888246038_7593080065173359894 (no frames / failed extraction)
[SKIP] 7591847133309930773_7593094663347768598 (no frames / failed extraction)
[SKIP] 7591874135001763094_7593341652392070432 (no frames / failed extraction)
[SKIP] 7591889069026659606_7593402590713416983 (no frames / failed extraction)
[SKIP] 7592192610349993224_7603422246249483542 (no frames / failed extraction)
[SKIP] 7592249912092298516_7592692430290423048 (no frames / failed extraction)
[SKIP] 7592292119172156694_7593344515516255510 (no frames / failed extraction)
[SKIP] 7592407303433850134_7593089551699086614 (no frames / failed extraction)
[SKIP] 7592438557940190472_7593320220027112712 (no frames / failed extraction)
[SKIP] 7592447930083118358_7593389460251888918 (no frames / failed extraction)
[SKIP] 7592579018231123222_7593140560538504470 (no frames / failed extraction)
[SKIP] 7592587710313827606_7593083922620189974 (no frames / failed extraction)
[SKIP] 7592606436027338006_7593094886673501462 (no frames / failed extraction)
[SKIP] 7592608349129018646_7593268938440576278 (no frames / failed extraction)
[SKIP] 7592638072890641686_7593021195084172566 (no frames / failed extraction)
[SKIP] 7592665489650846999_7593089848739646742 (no frames / failed extraction)
[SKIP] 7592684356397698336_7593071353121492246 (no frames / failed extraction)
[SKIP] 7592689445384490262_7593027488104795414 (no frames / failed extraction)
[SKIP] 7592706387596135702_7593112206011649302 (no frames / failed extraction)
[SKIP] 7592730883266858262_7593062110196681987 (no frames / failed extraction)
[SKIP] 7592949961030094102_7603492671742545174 (no frames / failed extraction)
[SKIP] 7592962410810461462_7593308664602135830 (no frames / failed extraction)
[SKIP] 7592969692319386902_7593341592568712470 (no frames / failed extraction)
[SKIP] 7592997884329512214_7593429334455618838 (no frames / failed extraction)
[SKIP] 7593023927065038102_7593407584388795670 (no frames / failed extraction)
[SKIP] 7593025085439560982_7593349087630691607 (no frames / failed extraction)
[SKIP] 7593042030754925846_7593114198452882720 (no frames / failed extraction)
[SKIP] 7593061563909606658_7593077514952510742 (no frames / failed extraction)
[SKIP] 7593070251244375318_7593078378312387862 (no frames / failed extraction)
[SKIP] 7593753670903270678_7602706264363142432 (no frames / failed extraction)
[SKIP] 7596084847773420823_7602772755599117590 (no frames / failed extraction)
[SKIP] 7596228877127634198_7602841595464994070 (no frames / failed extraction)
[SKIP] 7597475892209650975_7604100479915805972 (no frames / failed extraction)
[SKIP] 7597495313544400150_7603023470439484694 (no frames / failed extraction)
[SKIP] 7597873882174868758_7603005109261405462 (no frames / failed extraction)
[SKIP] 7598175222746877206_7603007093393624342 (no frames / failed extraction)
[SKIP] 7598472951473704214_7602725579322002710 (no frames / failed extraction)
[SKIP] 7598516119405726996_7603973426964925716 (no frames / failed extraction)
[SKIP] 7599677244956593430_7602460334779108630 (no frames / failed extraction)
[SKIP] 7599719725207145750_7602933646244285718 (no frames / failed extraction)
[SKIP] 7600336749038144788_7602748123613629718 (no frames / failed extraction)
[SKIP] 7600496386005536022_7603075447164914966 (no frames / failed extraction)
[SKIP] 7600813734570773782_7602429316919479574 (no frames / failed extraction)
[SKIP] 7600848290413825302_7602779112352025878 (no frames / failed extraction)
[SKIP] 7601220761646402838_7603018067106499863 (no frames / failed extraction)
[SKIP] 7601510305893534998_7602678212866477335 (no frames / failed extraction)
[SKIP] 7601613870863518994_7603563256304700688 (no frames / failed extraction)
[SKIP] 7601848515752398102_7602678382060571906 (no frames / failed extraction)
[SKIP] 7601913432597712150_7603131540138200342 (no frames / failed extraction)
[SKIP] 7601928286750379286_7602577786364120342 (no frames / failed extraction)
[SKIP] 7601933322196946198_7602754876120042774 (no frames / failed extraction)
[SKIP] 7601998610477190422_7602715371820338454 (no frames / failed extraction)
[SKIP] 7602130594893417735_7604578017720962311 (no frames / failed extraction)
[SKIP] 7602177500176796950_7602678869098827030 (no frames / failed extraction)
[SKIP] 7602247963691289878_7602952772085943574 (no frames / failed extraction)
[SKIP] 7602249398457847062_7602706438569381142 (no frames / failed extraction)
[SKIP] 7602252479589322006_7602710905004018966 (no frames / failed extraction)
[SKIP] 7602260906663300374_7603059444066389270 (no frames / failed extraction)
[SKIP] 7602271814382849302_7602882172822834454 (no frames / failed extraction)
[SKIP] 7602310864481357078_7602647922227907862 (no frames / failed extraction)
[SKIP] 7602312802610531592_7604593851096976660 (no frames / failed extraction)
[SKIP] 7602376297129561366_7602579472767847702 (no frames / failed extraction)
[SKIP] 7602380228945644822_7602998633562197270 (no frames / failed extraction)
[SKIP] 7602389798820564227_7602719197398912278 (no frames / failed extraction)
[SKIP] 7602393643793648918_7602510910665624854 (no frames / failed extraction)
[SKIP] 7602395422874717462_7602982547936611606 (no frames / failed extraction)
[SKIP] 7602402488028876054_7602916875302898976 (no frames / failed extraction)
[SKIP] 7602405874400759047_7602473421427019026 (no frames / failed extraction)
[SKIP] 7602411358860102934_7602747902141664534 (no frames / failed extraction)
[SKIP] 7602418496676498711_7603388889381735712 (no frames / failed extraction)
[SKIP] 7602423244649483542_7603035091178097942 (no frames / failed extraction)
[SKIP] 7602580322869366038_7602742455183707414 (no frames / failed extraction)
[SKIP] 7602594689996410134_7603071616582503702 (no frames / failed extraction)
[SKIP] 7602614247180356885_7602647330415709462 (no frames / failed extraction)
[SKIP] 7602629799265488131_7602679961081761046 (no frames / failed extraction)
[SKIP] 7602663072544722198_7602769847151250710 (no frames / failed extraction)
[SKIP] 7602698902118157590_7603048226572274966 (no frames / failed extraction)
[SKIP] 7602712165912513814_7602756998052039958 (no frames / failed extraction)
[SKIP] 7602716194466073858_7602731198116498711 (no frames / failed extraction)
[SKIP] 7602756717650251030_7603150900827491586 (no frames / failed extraction)
[SKIP] 7602761656724196630_7603069792135826710 (no frames / failed extraction)
[SKIP] 7602776772869983510_7602780713779334422 (no frames / failed extraction)
[SKIP] 7603023017689566486_7603400137217543446 (no frames / failed extraction)
[SKIP] 7603726508284185876_7604510815655300372 (no frames / failed extraction)
[SKIP] 7603982549580385544_7604135707203964181 (no frames / failed extraction)
[SKIP] 7604033909038304532_7604549104487861512 (no frames / failed extraction)
[SKIP] 7604197852574665992_7604504344976755988 (no frames / failed extraction)
[SKIP] 7604249600865701142_7604624761112644882 (no frames / failed extraction)
Loaded 133 samples from /mlx/users/jiashuo.fan/playground/inference/active_cases/frames_cache
Pending: 133
Traceback (most recent call last):
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/utils/import_utils.py", line 2317, in __getattr__
module = self._get_module(self._class_to_module[name])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/utils/import_utils.py", line 2347, in _get_module
raise e
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/utils/import_utils.py", line 2345, in _get_module
return importlib.import_module("." + module_name, self.__name__)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/mlx/users/jiashuo.fan/miniconda3/envs/abbie/lib/python3.11/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "<frozen importlib._bootstrap>", line 1204, in _gcd_import
File "<frozen importlib._bootstrap>", line 1176, in _find_and_load
File "<frozen importlib._bootstrap>", line 1147, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/models/auto/processing_auto.py", line 27, in <module>
from ...image_processing_utils import ImageProcessingMixin
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/image_processing_utils.py", line 21, in <module>
from .image_processing_base import BatchFeature, ImageProcessingMixin
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/image_processing_base.py", line 26, in <module>
from .image_utils import is_valid_image, load_image
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/image_utils.py", line 55, in <module>
from torchvision.transforms import InterpolationMode
File "/mlx/users/jiashuo.fan/miniconda3/envs/abbie/lib/python3.11/site-packages/torchvision/__init__.py", line 10, in <module>
from torchvision import _meta_registrations, datasets, io, models, ops, transforms, utils # usort:skip
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/mlx/users/jiashuo.fan/miniconda3/envs/abbie/lib/python3.11/site-packages/torchvision/_meta_registrations.py", line 163, in <module>
@torch.library.register_fake("torchvision::nms")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/mlx/users/jiashuo.fan/miniconda3/envs/abbie/lib/python3.11/site-packages/torch/library.py", line 1073, in register
use_lib._register_fake(
File "/mlx/users/jiashuo.fan/miniconda3/envs/abbie/lib/python3.11/site-packages/torch/library.py", line 203, in _register_fake
handle = entry.fake_impl.register(
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/mlx/users/jiashuo.fan/miniconda3/envs/abbie/lib/python3.11/site-packages/torch/_library/fake_impl.py", line 50, in register
if torch._C._dispatch_has_kernel_for_dispatch_key(self.qualname, "Meta"):
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: operator torchvision::nms does not exist
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/mlx/users/jiashuo.fan/playground/inference/active_cases/eval_active_cases.py", line 1187, in <module>
main()
File "/mlx/users/jiashuo.fan/playground/inference/active_cases/eval_active_cases.py", line 1096, in main
model, processor = loader(model_path)
^^^^^^^^^^^^^^^^^^
File "/mlx/users/jiashuo.fan/playground/inference/active_cases/eval_active_cases.py", line 394, in load_molmo
from transformers import AutoModelForCausalLM, AutoProcessor
File "/home/tiger/.local/lib/python3.11/site-packages/transformers/utils/import_utils.py", line 2320, in __getattr__
raise ModuleNotFoundError(
ModuleNotFoundError: Could not import module 'AutoProcessor'. Are this object's requirements defined correctly?
Model: molmo_7b
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Model type: molmo
Fine-tuned: False
[SKIP] 7582677198746750229_7602429433449893127 (no frames / failed extraction)
[SKIP] 7583417083719847190_7602908531787910422 (no frames / failed extraction)
[SKIP] 7584037444983459092_7593315053781241106 (no frames / failed extraction)
[SKIP] 7584733886580591880_7592782759857245447 (no frames / failed extraction)
[SKIP] 7585273467772194070_7593446635338763542 (no frames / failed extraction)
[SKIP] 7585621460966788374_7603473500816297238 (no frames / failed extraction)
[SKIP] 7586150189941935382_7593384463275461910 (no frames / failed extraction)
[SKIP] 7586597062821793046_7602700394216688918 (no frames / failed extraction)
[SKIP] 7587882760279231777_7593074162743217430 (no frames / failed extraction)
[SKIP] 7588180930066386198_7603412848949218582 (no frames / failed extraction)
[SKIP] 7588207905518767382_7602720790659992855 (no frames / failed extraction)
[SKIP] 7588859776717671702_7593296535866117378 (no frames / failed extraction)
[SKIP] 7589385196827462934_7603104546189036822 (no frames / failed extraction)
[SKIP] 7589913665097174294_7593039101570354454 (no frames / failed extraction)
[SKIP] 7589960687187725591_7593085871843314966 (no frames / failed extraction)
[SKIP] 7590468019252432150_7593407027062263062 (no frames / failed extraction)
[SKIP] 7591630202673974550_7593064619959405846 (no frames / failed extraction)
[SKIP] 7591836115888246038_7593080065173359894 (no frames / failed extraction)
[SKIP] 7591847133309930773_7593094663347768598 (no frames / failed extraction)
[SKIP] 7591874135001763094_7593341652392070432 (no frames / failed extraction)
[SKIP] 7591889069026659606_7593402590713416983 (no frames / failed extraction)
[SKIP] 7592192610349993224_7603422246249483542 (no frames / failed extraction)
[SKIP] 7592249912092298516_7592692430290423048 (no frames / failed extraction)
[SKIP] 7592292119172156694_7593344515516255510 (no frames / failed extraction)
[SKIP] 7592407303433850134_7593089551699086614 (no frames / failed extraction)
[SKIP] 7592438557940190472_7593320220027112712 (no frames / failed extraction)
[SKIP] 7592447930083118358_7593389460251888918 (no frames / failed extraction)
[SKIP] 7592579018231123222_7593140560538504470 (no frames / failed extraction)
[SKIP] 7592587710313827606_7593083922620189974 (no frames / failed extraction)
[SKIP] 7592606436027338006_7593094886673501462 (no frames / failed extraction)
[SKIP] 7592608349129018646_7593268938440576278 (no frames / failed extraction)
[SKIP] 7592638072890641686_7593021195084172566 (no frames / failed extraction)
[SKIP] 7592665489650846999_7593089848739646742 (no frames / failed extraction)
[SKIP] 7592684356397698336_7593071353121492246 (no frames / failed extraction)
[SKIP] 7592689445384490262_7593027488104795414 (no frames / failed extraction)
[SKIP] 7592706387596135702_7593112206011649302 (no frames / failed extraction)
[SKIP] 7592730883266858262_7593062110196681987 (no frames / failed extraction)
[SKIP] 7592949961030094102_7603492671742545174 (no frames / failed extraction)
[SKIP] 7592962410810461462_7593308664602135830 (no frames / failed extraction)
[SKIP] 7592969692319386902_7593341592568712470 (no frames / failed extraction)
[SKIP] 7592997884329512214_7593429334455618838 (no frames / failed extraction)
[SKIP] 7593023927065038102_7593407584388795670 (no frames / failed extraction)
[SKIP] 7593025085439560982_7593349087630691607 (no frames / failed extraction)
[SKIP] 7593042030754925846_7593114198452882720 (no frames / failed extraction)
[SKIP] 7593061563909606658_7593077514952510742 (no frames / failed extraction)
[SKIP] 7593070251244375318_7593078378312387862 (no frames / failed extraction)
[SKIP] 7593753670903270678_7602706264363142432 (no frames / failed extraction)
[SKIP] 7596084847773420823_7602772755599117590 (no frames / failed extraction)
[SKIP] 7596228877127634198_7602841595464994070 (no frames / failed extraction)
[SKIP] 7597475892209650975_7604100479915805972 (no frames / failed extraction)
[SKIP] 7597495313544400150_7603023470439484694 (no frames / failed extraction)
[SKIP] 7597873882174868758_7603005109261405462 (no frames / failed extraction)
[SKIP] 7598175222746877206_7603007093393624342 (no frames / failed extraction)
[SKIP] 7598472951473704214_7602725579322002710 (no frames / failed extraction)
[SKIP] 7598516119405726996_7603973426964925716 (no frames / failed extraction)
[SKIP] 7599677244956593430_7602460334779108630 (no frames / failed extraction)
[SKIP] 7599719725207145750_7602933646244285718 (no frames / failed extraction)
[SKIP] 7600336749038144788_7602748123613629718 (no frames / failed extraction)
[SKIP] 7600496386005536022_7603075447164914966 (no frames / failed extraction)
[SKIP] 7600813734570773782_7602429316919479574 (no frames / failed extraction)
[SKIP] 7600848290413825302_7602779112352025878 (no frames / failed extraction)
[SKIP] 7601220761646402838_7603018067106499863 (no frames / failed extraction)
[SKIP] 7601510305893534998_7602678212866477335 (no frames / failed extraction)
[SKIP] 7601613870863518994_7603563256304700688 (no frames / failed extraction)
[SKIP] 7601848515752398102_7602678382060571906 (no frames / failed extraction)
[SKIP] 7601913432597712150_7603131540138200342 (no frames / failed extraction)
[SKIP] 7601928286750379286_7602577786364120342 (no frames / failed extraction)
[SKIP] 7601933322196946198_7602754876120042774 (no frames / failed extraction)
[SKIP] 7601998610477190422_7602715371820338454 (no frames / failed extraction)
[SKIP] 7602130594893417735_7604578017720962311 (no frames / failed extraction)
[SKIP] 7602177500176796950_7602678869098827030 (no frames / failed extraction)
[SKIP] 7602247963691289878_7602952772085943574 (no frames / failed extraction)
[SKIP] 7602249398457847062_7602706438569381142 (no frames / failed extraction)
[SKIP] 7602252479589322006_7602710905004018966 (no frames / failed extraction)
[SKIP] 7602260906663300374_7603059444066389270 (no frames / failed extraction)
[SKIP] 7602271814382849302_7602882172822834454 (no frames / failed extraction)
[SKIP] 7602310864481357078_7602647922227907862 (no frames / failed extraction)
[SKIP] 7602312802610531592_7604593851096976660 (no frames / failed extraction)
[SKIP] 7602376297129561366_7602579472767847702 (no frames / failed extraction)
[SKIP] 7602380228945644822_7602998633562197270 (no frames / failed extraction)
[SKIP] 7602389798820564227_7602719197398912278 (no frames / failed extraction)
[SKIP] 7602393643793648918_7602510910665624854 (no frames / failed extraction)
[SKIP] 7602395422874717462_7602982547936611606 (no frames / failed extraction)
[SKIP] 7602402488028876054_7602916875302898976 (no frames / failed extraction)
[SKIP] 7602405874400759047_7602473421427019026 (no frames / failed extraction)
[SKIP] 7602411358860102934_7602747902141664534 (no frames / failed extraction)
[SKIP] 7602418496676498711_7603388889381735712 (no frames / failed extraction)
[SKIP] 7602423244649483542_7603035091178097942 (no frames / failed extraction)
[SKIP] 7602580322869366038_7602742455183707414 (no frames / failed extraction)
[SKIP] 7602594689996410134_7603071616582503702 (no frames / failed extraction)
[SKIP] 7602614247180356885_7602647330415709462 (no frames / failed extraction)
[SKIP] 7602629799265488131_7602679961081761046 (no frames / failed extraction)
[SKIP] 7602663072544722198_7602769847151250710 (no frames / failed extraction)
[SKIP] 7602698902118157590_7603048226572274966 (no frames / failed extraction)
[SKIP] 7602712165912513814_7602756998052039958 (no frames / failed extraction)
[SKIP] 7602716194466073858_7602731198116498711 (no frames / failed extraction)
[SKIP] 7602756717650251030_7603150900827491586 (no frames / failed extraction)
[SKIP] 7602761656724196630_7603069792135826710 (no frames / failed extraction)
[SKIP] 7602776772869983510_7602780713779334422 (no frames / failed extraction)
[SKIP] 7603023017689566486_7603400137217543446 (no frames / failed extraction)
[SKIP] 7603726508284185876_7604510815655300372 (no frames / failed extraction)
[SKIP] 7603982549580385544_7604135707203964181 (no frames / failed extraction)
[SKIP] 7604033909038304532_7604549104487861512 (no frames / failed extraction)
[SKIP] 7604197852574665992_7604504344976755988 (no frames / failed extraction)
[SKIP] 7604249600865701142_7604624761112644882 (no frames / failed extraction)
Loaded 133 samples from /mlx/users/jiashuo.fan/playground/inference/active_cases/frames_cache
Pending: 133
Loading Molmo from /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.52, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
`torch_dtype` is deprecated! Use `dtype` instead!
Loading checkpoint shards: 0%| | 0/7 [00:00<?, ?it/s]
Loading checkpoint shards: 14%|█▍ | 1/7 [00:17<01:44, 17.33s/it]
Loading checkpoint shards: 29%|██▊ | 2/7 [00:18<00:38, 7.67s/it]
Loading checkpoint shards: 43%|████▎ | 3/7 [00:19<00:18, 4.61s/it]
Loading checkpoint shards: 57%|█████▋ | 4/7 [00:20<00:09, 3.18s/it]
Loading checkpoint shards: 71%|███████▏ | 5/7 [00:21<00:04, 2.37s/it]
Loading checkpoint shards: 86%|████████▌ | 6/7 [00:22<00:01, 1.86s/it]
Loading checkpoint shards: 100%|██████████| 7/7 [00:23<00:00, 1.60s/it]
Loading checkpoint shards: 100%|██████████| 7/7 [00:23<00:00, 3.30s/it]
ERROR on 7582864625457384725_7592503137240386834: module 'tensorflow' has no attribute 'Tensor'
[1/133] 7582864625457384725_7592503137240386834 | acc=0.000 (correct=0/0) | 7.27 samp/s
ERROR on 7583298662386650389_7603817886603300103: module 'tensorflow' has no attribute 'Tensor'
[2/133] 7583298662386650389_7603817886603300103 | acc=0.000 (correct=0/0) | 8.20 samp/s
ERROR on 7583769463078800643_7603057302106656022: module 'tensorflow' has no attribute 'Tensor'
[3/133] 7583769463078800643_7603057302106656022 | acc=0.000 (correct=0/0) | 9.28 samp/s
ERROR on 7584143881545977110_7593173975707028758: module 'tensorflow' has no attribute 'Tensor'
[4/133] 7584143881545977110_7593173975707028758 | acc=0.000 (correct=0/0) | 9.94 samp/s
ERROR on 7584459358449405202_7604337545559674132: module 'tensorflow' has no attribute 'Tensor'
[5/133] 7584459358449405202_7604337545559674132 | acc=0.000 (correct=0/0) | 10.13 samp/s
ERROR on 7584515446049656086_7592960395527146774: module 'tensorflow' has no attribute 'Tensor'
[6/133] 7584515446049656086_7592960395527146774 | acc=0.000 (correct=0/0) | 10.04 samp/s
ERROR on 7585337388545723681_7593386207040507169: module 'tensorflow' has no attribute 'Tensor'
[7/133] 7585337388545723681_7593386207040507169 | acc=0.000 (correct=0/0) | 10.04 samp/s
ERROR on 7586774649753718038_7593408077811207427: module 'tensorflow' has no attribute 'Tensor'
[8/133] 7586774649753718038_7593408077811207427 | acc=0.000 (correct=0/0) | 10.03 samp/s
ERROR on 7588310732303879432_7595998237404761362: module 'tensorflow' has no attribute 'Tensor'
[9/133] 7588310732303879432_7595998237404761362 | acc=0.000 (correct=0/0) | 10.07 samp/s
ERROR on 7589478401866616084_7592464439727623445: module 'tensorflow' has no attribute 'Tensor'
[10/133] 7589478401866616084_7592464439727623445 | acc=0.000 (correct=0/0) | 10.12 samp/s
ERROR on 7589598278531009813_7604139924731809045: module 'tensorflow' has no attribute 'Tensor'
[11/133] 7589598278531009813_7604139924731809045 | acc=0.000 (correct=0/0) | 10.29 samp/s
ERROR on 7590080459309124886_7602942433009159446: module 'tensorflow' has no attribute 'Tensor'
[12/133] 7590080459309124886_7602942433009159446 | acc=0.000 (correct=0/0) | 10.21 samp/s
ERROR on 7590122947935735062_7602760876478745878: module 'tensorflow' has no attribute 'Tensor'
[13/133] 7590122947935735062_7602760876478745878 | acc=0.000 (correct=0/0) | 10.24 samp/s
ERROR on 7590736059038698760_7604236963700329736: module 'tensorflow' has no attribute 'Tensor'
[14/133] 7590736059038698760_7604236963700329736 | acc=0.000 (correct=0/0) | 10.11 samp/s
ERROR on 7591396054570896660_7602174366645865736: module 'tensorflow' has no attribute 'Tensor'
[15/133] 7591396054570896660_7602174366645865736 | acc=0.000 (correct=0/0) | 10.13 samp/s
ERROR on 7591603142207474952_7592657430761295124: module 'tensorflow' has no attribute 'Tensor'
[16/133] 7591603142207474952_7592657430761295124 | acc=0.000 (correct=0/0) | 10.15 samp/s
ERROR on 7591633885876833543_7592914268626930952: module 'tensorflow' has no attribute 'Tensor'
[17/133] 7591633885876833543_7592914268626930952 | acc=0.000 (correct=0/0) | 10.17 samp/s
ERROR on 7592127916369022215_7592811493075225877: module 'tensorflow' has no attribute 'Tensor'
[18/133] 7592127916369022215_7592811493075225877 | acc=0.000 (correct=0/0) | 10.10 samp/s
ERROR on 7592292714314566934_7603000520394968342: module 'tensorflow' has no attribute 'Tensor'
[19/133] 7592292714314566934_7603000520394968342 | acc=0.000 (correct=0/0) | 10.07 samp/s
ERROR on 7592363769301388575_7592557472821382420: module 'tensorflow' has no attribute 'Tensor'
[20/133] 7592363769301388575_7592557472821382420 | acc=0.000 (correct=0/0) | 10.10 samp/s
ERROR on 7592379393456999688_7592812522206514452: module 'tensorflow' has no attribute 'Tensor'
[21/133] 7592379393456999688_7592812522206514452 | acc=0.000 (correct=0/0) | 10.08 samp/s
ERROR on 7592395525857627448_7592424707811446034: module 'tensorflow' has no attribute 'Tensor'
[22/133] 7592395525857627448_7592424707811446034 | acc=0.000 (correct=0/0) | 10.08 samp/s
ERROR on 7592396786472455445_7592776503407037716: module 'tensorflow' has no attribute 'Tensor'
[23/133] 7592396786472455445_7592776503407037716 | acc=0.000 (correct=0/0) | 10.09 samp/s
ERROR on 7592406759860423943_7592469167501102344: module 'tensorflow' has no attribute 'Tensor'
[24/133] 7592406759860423943_7592469167501102344 | acc=0.000 (correct=0/0) | 10.09 samp/s
ERROR on 7592439822283705607_7592708834959904001: module 'tensorflow' has no attribute 'Tensor'
[25/133] 7592439822283705607_7592708834959904001 | acc=0.000 (correct=0/0) | 10.10 samp/s
ERROR on 7592441861743136007_7592686503755582727: module 'tensorflow' has no attribute 'Tensor'
[26/133] 7592441861743136007_7592686503755582727 | acc=0.000 (correct=0/0) | 10.10 samp/s
ERROR on 7592612029127494934_7593372133087022358: module 'tensorflow' has no attribute 'Tensor'
[27/133] 7592612029127494934_7593372133087022358 | acc=0.000 (correct=0/0) | 10.10 samp/s
ERROR on 7592621669458480417_7593325946653003030: module 'tensorflow' has no attribute 'Tensor'
[28/133] 7592621669458480417_7593325946653003030 | acc=0.000 (correct=0/0) | 10.15 samp/s
ERROR on 7592630277092936980_7592934574200605974: module 'tensorflow' has no attribute 'Tensor'
[29/133] 7592630277092936980_7592934574200605974 | acc=0.000 (correct=0/0) | 10.16 samp/s
ERROR on 7592662940269006113_7593135968987696406: module 'tensorflow' has no attribute 'Tensor'
[30/133] 7592662940269006113_7593135968987696406 | acc=0.000 (correct=0/0) | 10.18 samp/s
ERROR on 7592695844491644178_7593247873295289622: module 'tensorflow' has no attribute 'Tensor'
[31/133] 7592695844491644178_7593247873295289622 | acc=0.000 (correct=0/0) | 10.21 samp/s
ERROR on 7592734749563653384_7593673083739802898: module 'tensorflow' has no attribute 'Tensor'
[32/133] 7592734749563653384_7593673083739802898 | acc=0.000 (correct=0/0) | 10.17 samp/s
ERROR on 7592983455659543830_7593423283710610710: module 'tensorflow' has no attribute 'Tensor'
[33/133] 7592983455659543830_7593423283710610710 | acc=0.000 (correct=0/0) | 10.19 samp/s
ERROR on 7593033792315575574_7593099150867172630: module 'tensorflow' has no attribute 'Tensor'
[34/133] 7593033792315575574_7593099150867172630 | acc=0.000 (correct=0/0) | 10.20 samp/s
ERROR on 7593219919349566741_7595664852438338823: module 'tensorflow' has no attribute 'Tensor'
[35/133] 7593219919349566741_7595664852438338823 | acc=0.000 (correct=0/0) | 10.23 samp/s
ERROR on 7593374120054656276_7604306674219863303: module 'tensorflow' has no attribute 'Tensor'
[36/133] 7593374120054656276_7604306674219863303 | acc=0.000 (correct=0/0) | 10.25 samp/s
ERROR on 7593727005841968391_7595431144884129035: module 'tensorflow' has no attribute 'Tensor'
[37/133] 7593727005841968391_7595431144884129035 | acc=0.000 (correct=0/0) | 10.32 samp/s
ERROR on 7593819989833026834_7604240520432520466: module 'tensorflow' has no attribute 'Tensor'
[38/133] 7593819989833026834_7604240520432520466 | acc=0.000 (correct=0/0) | 10.32 samp/s
ERROR on 7594557794372652309_7604204623724809479: module 'tensorflow' has no attribute 'Tensor'
[39/133] 7594557794372652309_7604204623724809479 | acc=0.000 (correct=0/0) | 10.31 samp/s
ERROR on 7594990951328746808_7595755849885289748: module 'tensorflow' has no attribute 'Tensor'
[40/133] 7594990951328746808_7595755849885289748 | acc=0.000 (correct=0/0) | 10.37 samp/s
ERROR on 7595380926247341332_7602338775099837714: module 'tensorflow' has no attribute 'Tensor'
[41/133] 7595380926247341332_7602338775099837714 | acc=0.000 (correct=0/0) | 10.43 samp/s
ERROR on 7595395129591024904_7595962701738741000: module 'tensorflow' has no attribute 'Tensor'
[42/133] 7595395129591024904_7595962701738741000 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7595407496525663506_7595842450577575179: module 'tensorflow' has no attribute 'Tensor'
[43/133] 7595407496525663506_7595842450577575179 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7595414619993246983_7595648604866350354: module 'tensorflow' has no attribute 'Tensor'
[44/133] 7595414619993246983_7595648604866350354 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7595460052346096914_7595599161152605447: module 'tensorflow' has no attribute 'Tensor'
[45/133] 7595460052346096914_7595599161152605447 | acc=0.000 (correct=0/0) | 10.49 samp/s
ERROR on 7595474031126646034_7595640420671982904: module 'tensorflow' has no attribute 'Tensor'
[46/133] 7595474031126646034_7595640420671982904 | acc=0.000 (correct=0/0) | 10.44 samp/s
ERROR on 7595812699439648007_7604520050434854152: module 'tensorflow' has no attribute 'Tensor'
[47/133] 7595812699439648007_7604520050434854152 | acc=0.000 (correct=0/0) | 10.43 samp/s
ERROR on 7597044647780764948_7604054478521748757: module 'tensorflow' has no attribute 'Tensor'
[48/133] 7597044647780764948_7604054478521748757 | acc=0.000 (correct=0/0) | 10.50 samp/s
ERROR on 7597788963738324232_7603763715422407957: module 'tensorflow' has no attribute 'Tensor'
[49/133] 7597788963738324232_7603763715422407957 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7598938266598952210_7604394570947890440: module 'tensorflow' has no attribute 'Tensor'
[50/133] 7598938266598952210_7604394570947890440 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7598981214132849942_7603041768992460054: module 'tensorflow' has no attribute 'Tensor'
[51/133] 7598981214132849942_7603041768992460054 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7599419411836964117_7602328110696090901: module 'tensorflow' has no attribute 'Tensor'
[52/133] 7599419411836964117_7602328110696090901 | acc=0.000 (correct=0/0) | 10.52 samp/s
ERROR on 7600049951300685076_7602626609417604370: module 'tensorflow' has no attribute 'Tensor'
[53/133] 7600049951300685076_7602626609417604370 | acc=0.000 (correct=0/0) | 10.52 samp/s
ERROR on 7600071116324900116_7602337842538368276: module 'tensorflow' has no attribute 'Tensor'
[54/133] 7600071116324900116_7602337842538368276 | acc=0.000 (correct=0/0) | 10.52 samp/s
ERROR on 7600138772541394198_7602907593710767382: module 'tensorflow' has no attribute 'Tensor'
[55/133] 7600138772541394198_7602907593710767382 | acc=0.000 (correct=0/0) | 10.52 samp/s
ERROR on 7600184266231745810_7603856182331051284: module 'tensorflow' has no attribute 'Tensor'
[56/133] 7600184266231745810_7603856182331051284 | acc=0.000 (correct=0/0) | 10.52 samp/s
ERROR on 7600267409701833992_7604407914765290759: module 'tensorflow' has no attribute 'Tensor'
[57/133] 7600267409701833992_7604407914765290759 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7600717184851053846_7603923738865782037: module 'tensorflow' has no attribute 'Tensor'
[58/133] 7600717184851053846_7603923738865782037 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7600822923275799828_7604562398480977159: module 'tensorflow' has no attribute 'Tensor'
[59/133] 7600822923275799828_7604562398480977159 | acc=0.000 (correct=0/0) | 10.54 samp/s
ERROR on 7600850853821418772_7604066449119857941: module 'tensorflow' has no attribute 'Tensor'
[60/133] 7600850853821418772_7604066449119857941 | acc=0.000 (correct=0/0) | 10.57 samp/s
ERROR on 7601115694347947294_7604552935992724744: module 'tensorflow' has no attribute 'Tensor'
[61/133] 7601115694347947294_7604552935992724744 | acc=0.000 (correct=0/0) | 10.58 samp/s
ERROR on 7601134749763030294_7602752793023204630: module 'tensorflow' has no attribute 'Tensor'
[62/133] 7601134749763030294_7602752793023204630 | acc=0.000 (correct=0/0) | 10.58 samp/s
ERROR on 7601312798609591574_7603019182405373206: module 'tensorflow' has no attribute 'Tensor'
[63/133] 7601312798609591574_7603019182405373206 | acc=0.000 (correct=0/0) | 10.58 samp/s
ERROR on 7601325066151890196_7602212400758000916: module 'tensorflow' has no attribute 'Tensor'
[64/133] 7601325066151890196_7602212400758000916 | acc=0.000 (correct=0/0) | 10.60 samp/s
ERROR on 7601574274960231702_7602694663203523862: module 'tensorflow' has no attribute 'Tensor'
[65/133] 7601574274960231702_7602694663203523862 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7601579424177343762_7602468045705006356: module 'tensorflow' has no attribute 'Tensor'
[66/133] 7601579424177343762_7602468045705006356 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7601586470712954115_7603338240136908054: module 'tensorflow' has no attribute 'Tensor'
[67/133] 7601586470712954115_7603338240136908054 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7601669855993007382_7603430768756477206: module 'tensorflow' has no attribute 'Tensor'
[68/133] 7601669855993007382_7603430768756477206 | acc=0.000 (correct=0/0) | 10.60 samp/s
ERROR on 7601674006034402582_7602604985834048790: module 'tensorflow' has no attribute 'Tensor'
[69/133] 7601674006034402582_7602604985834048790 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7601713212869856533_7602376124693351688: module 'tensorflow' has no attribute 'Tensor'
[70/133] 7601713212869856533_7602376124693351688 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7601765261200461078_7602681205758102806: module 'tensorflow' has no attribute 'Tensor'
[71/133] 7601765261200461078_7602681205758102806 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7601949430056602900_7602434611599265044: module 'tensorflow' has no attribute 'Tensor'
[72/133] 7601949430056602900_7602434611599265044 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7601970606141148438_7603078990038895894: module 'tensorflow' has no attribute 'Tensor'
[73/133] 7601970606141148438_7603078990038895894 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7602006928537046280_7602420413976546567: module 'tensorflow' has no attribute 'Tensor'
[74/133] 7602006928537046280_7602420413976546567 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7602009271491988743_7604143486912171271: module 'tensorflow' has no attribute 'Tensor'
[75/133] 7602009271491988743_7604143486912171271 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7602060282625674517_7602477809264495880: module 'tensorflow' has no attribute 'Tensor'
[76/133] 7602060282625674517_7602477809264495880 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7602082846525754631_7604271197852929287: module 'tensorflow' has no attribute 'Tensor'
[77/133] 7602082846525754631_7604271197852929287 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7602143673546984725_7604193599068146951: module 'tensorflow' has no attribute 'Tensor'
[78/133] 7602143673546984725_7604193599068146951 | acc=0.000 (correct=0/0) | 10.72 samp/s
ERROR on 7602256064427330839_7603098072029138198: module 'tensorflow' has no attribute 'Tensor'
[79/133] 7602256064427330839_7603098072029138198 | acc=0.000 (correct=0/0) | 10.71 samp/s
ERROR on 7602270984690748694_7603038892320705814: module 'tensorflow' has no attribute 'Tensor'
[80/133] 7602270984690748694_7603038892320705814 | acc=0.000 (correct=0/0) | 10.70 samp/s
ERROR on 7602366022103878929_7602669638551391496: module 'tensorflow' has no attribute 'Tensor'
[81/133] 7602366022103878929_7602669638551391496 | acc=0.000 (correct=0/0) | 10.70 samp/s
ERROR on 7602382902457863445_7604191296412159252: module 'tensorflow' has no attribute 'Tensor'
[82/133] 7602382902457863445_7604191296412159252 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7602700620830625046_7602866165395803414: module 'tensorflow' has no attribute 'Tensor'
[83/133] 7602700620830625046_7602866165395803414 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7602708595221875986_7604355289906826504: module 'tensorflow' has no attribute 'Tensor'
[84/133] 7602708595221875986_7604355289906826504 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7602725486715817219_7603481735279512854: module 'tensorflow' has no attribute 'Tensor'
[85/133] 7602725486715817219_7603481735279512854 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7602729554339253526_7603093834116943126: module 'tensorflow' has no attribute 'Tensor'
[86/133] 7602729554339253526_7603093834116943126 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7602843396088106262_7602995295437278486: module 'tensorflow' has no attribute 'Tensor'
[87/133] 7602843396088106262_7602995295437278486 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7602910354212932884_7603540991643061512: module 'tensorflow' has no attribute 'Tensor'
[88/133] 7602910354212932884_7603540991643061512 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7602915847211977992_7604398958395559186: module 'tensorflow' has no attribute 'Tensor'
[89/133] 7602915847211977992_7604398958395559186 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7602946751540071701_7604027006077963528: module 'tensorflow' has no attribute 'Tensor'
[90/133] 7602946751540071701_7604027006077963528 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7602984837502307606_7603479345079815446: module 'tensorflow' has no attribute 'Tensor'
[91/133] 7602984837502307606_7603479345079815446 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603022279718538516_7604021216944360712: module 'tensorflow' has no attribute 'Tensor'
[92/133] 7603022279718538516_7604021216944360712 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603057662082731286_7603508048769993987: module 'tensorflow' has no attribute 'Tensor'
[93/133] 7603057662082731286_7603508048769993987 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603072200341507329_7604142589331115280: module 'tensorflow' has no attribute 'Tensor'
[94/133] 7603072200341507329_7604142589331115280 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7603075574315158806_7603118367762910486: module 'tensorflow' has no attribute 'Tensor'
[95/133] 7603075574315158806_7603118367762910486 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7603079625559887125_7603753412768910612: module 'tensorflow' has no attribute 'Tensor'
[96/133] 7603079625559887125_7603753412768910612 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7603090622093757718_7603453990323457303: module 'tensorflow' has no attribute 'Tensor'
[97/133] 7603090622093757718_7603453990323457303 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7603114436525870358_7603434420065848598: module 'tensorflow' has no attribute 'Tensor'
[98/133] 7603114436525870358_7603434420065848598 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7603118709992967446_7603141944167976214: module 'tensorflow' has no attribute 'Tensor'
[99/133] 7603118709992967446_7603141944167976214 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7603138308822076692_7603806260097453332: module 'tensorflow' has no attribute 'Tensor'
[100/133] 7603138308822076692_7603806260097453332 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603146769148513566_7604566499847687445: module 'tensorflow' has no attribute 'Tensor'
[101/133] 7603146769148513566_7604566499847687445 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7603165062764711186_7603407222311292181: module 'tensorflow' has no attribute 'Tensor'
[102/133] 7603165062764711186_7603407222311292181 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7603185260158881045_7603447262575906068: module 'tensorflow' has no attribute 'Tensor'
[103/133] 7603185260158881045_7603447262575906068 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7603389036920704264_7604264676964207892: module 'tensorflow' has no attribute 'Tensor'
[104/133] 7603389036920704264_7604264676964207892 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7603529071628225800_7604036865682951445: module 'tensorflow' has no attribute 'Tensor'
[105/133] 7603529071628225800_7604036865682951445 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7603529734223383828_7604261847734275335: module 'tensorflow' has no attribute 'Tensor'
[106/133] 7603529734223383828_7604261847734275335 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7603597531121011986_7604027676130594055: module 'tensorflow' has no attribute 'Tensor'
[107/133] 7603597531121011986_7604027676130594055 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603814056583023893_7603967990312307975: module 'tensorflow' has no attribute 'Tensor'
[108/133] 7603814056583023893_7603967990312307975 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603818369183190303_7604234434702806280: module 'tensorflow' has no attribute 'Tensor'
[109/133] 7603818369183190303_7604234434702806280 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603852215660465416_7604220286849813781: module 'tensorflow' has no attribute 'Tensor'
[110/133] 7603852215660465416_7604220286849813781 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7603876731857931540_7604241667603893524: module 'tensorflow' has no attribute 'Tensor'
[111/133] 7603876731857931540_7604241667603893524 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7603884493329550609_7604041815758490901: module 'tensorflow' has no attribute 'Tensor'
[112/133] 7603884493329550609_7604041815758490901 | acc=0.000 (correct=0/0) | 10.70 samp/s
ERROR on 7603902943246503175_7604332451615247623: module 'tensorflow' has no attribute 'Tensor'
[113/133] 7603902943246503175_7604332451615247623 | acc=0.000 (correct=0/0) | 10.70 samp/s
ERROR on 7603921933381455125_7604079730609982741: module 'tensorflow' has no attribute 'Tensor'
[114/133] 7603921933381455125_7604079730609982741 | acc=0.000 (correct=0/0) | 10.70 samp/s
ERROR on 7603932047878442257_7603978976616336661: module 'tensorflow' has no attribute 'Tensor'
[115/133] 7603932047878442257_7603978976616336661 | acc=0.000 (correct=0/0) | 10.70 samp/s
ERROR on 7603947476332186901_7604063261130034433: module 'tensorflow' has no attribute 'Tensor'
[116/133] 7603947476332186901_7604063261130034433 | acc=0.000 (correct=0/0) | 10.73 samp/s
ERROR on 7603977624448175368_7604464746045230354: module 'tensorflow' has no attribute 'Tensor'
[117/133] 7603977624448175368_7604464746045230354 | acc=0.000 (correct=0/0) | 10.76 samp/s
ERROR on 7603979300127214866_7604577411136621844: module 'tensorflow' has no attribute 'Tensor'
[118/133] 7603979300127214866_7604577411136621844 | acc=0.000 (correct=0/0) | 10.76 samp/s
ERROR on 7603993350802394389_7604087376469642517: module 'tensorflow' has no attribute 'Tensor'
[119/133] 7603993350802394389_7604087376469642517 | acc=0.000 (correct=0/0) | 10.75 samp/s
ERROR on 7604019342124043540_7604368885785070868: module 'tensorflow' has no attribute 'Tensor'
[120/133] 7604019342124043540_7604368885785070868 | acc=0.000 (correct=0/0) | 10.75 samp/s
ERROR on 7604023995578453256_7604406022966463752: module 'tensorflow' has no attribute 'Tensor'
[121/133] 7604023995578453256_7604406022966463752 | acc=0.000 (correct=0/0) | 10.74 samp/s
ERROR on 7604071937224199445_7604486246018075922: module 'tensorflow' has no attribute 'Tensor'
[122/133] 7604071937224199445_7604486246018075922 | acc=0.000 (correct=0/0) | 10.74 samp/s
ERROR on 7604117742802701576_7604523788599938321: module 'tensorflow' has no attribute 'Tensor'
[123/133] 7604117742802701576_7604523788599938321 | acc=0.000 (correct=0/0) | 10.74 samp/s
ERROR on 7604119657179630856_7604130070600437010: module 'tensorflow' has no attribute 'Tensor'
[124/133] 7604119657179630856_7604130070600437010 | acc=0.000 (correct=0/0) | 10.74 samp/s
ERROR on 7604120387240234260_7604264832187108629: module 'tensorflow' has no attribute 'Tensor'
[125/133] 7604120387240234260_7604264832187108629 | acc=0.000 (correct=0/0) | 10.73 samp/s
ERROR on 7604133644516494613_7604325341783493906: module 'tensorflow' has no attribute 'Tensor'
[126/133] 7604133644516494613_7604325341783493906 | acc=0.000 (correct=0/0) | 10.73 samp/s
ERROR on 7604138193516055815_7604239035036437780: module 'tensorflow' has no attribute 'Tensor'
[127/133] 7604138193516055815_7604239035036437780 | acc=0.000 (correct=0/0) | 10.73 samp/s
ERROR on 7604161389954862337_7604241413802380564: module 'tensorflow' has no attribute 'Tensor'
[128/133] 7604161389954862337_7604241413802380564 | acc=0.000 (correct=0/0) | 10.72 samp/s
ERROR on 7604192834694040850_7604553253086383381: module 'tensorflow' has no attribute 'Tensor'
[129/133] 7604192834694040850_7604553253086383381 | acc=0.000 (correct=0/0) | 10.72 samp/s
ERROR on 7604198893898763541_7604200050855775508: module 'tensorflow' has no attribute 'Tensor'
[130/133] 7604198893898763541_7604200050855775508 | acc=0.000 (correct=0/0) | 10.72 samp/s
ERROR on 7604221872682634503_7604297076985351432: module 'tensorflow' has no attribute 'Tensor'
[131/133] 7604221872682634503_7604297076985351432 | acc=0.000 (correct=0/0) | 10.71 samp/s
ERROR on 7604250553891310869_7604452867709127956: module 'tensorflow' has no attribute 'Tensor'
[132/133] 7604250553891310869_7604452867709127956 | acc=0.000 (correct=0/0) | 10.71 samp/s
ERROR on 7604250992779087122_7604343009810926869: module 'tensorflow' has no attribute 'Tensor'
[133/133] 7604250992779087122_7604343009810926869 | acc=0.000 (correct=0/0) | 10.74 samp/s
============================================================
DONE model=molmo_7b
accuracy: 0.0000 (0/0)
per-class: {}
parse_failures: 0
time: 12.4s (10.73 samp/s)
saved -> /mnt/bn/bohanzhainas1/jiashuo/exp/active_cases_eval/molmo_7b.json
Model: molmo_7b
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Model type: molmo
Fine-tuned: False
Resuming: 133 already done
[SKIP] 7582677198746750229_7602429433449893127 (no frames / failed extraction)
[SKIP] 7583417083719847190_7602908531787910422 (no frames / failed extraction)
[SKIP] 7584037444983459092_7593315053781241106 (no frames / failed extraction)
[SKIP] 7584733886580591880_7592782759857245447 (no frames / failed extraction)
[SKIP] 7585273467772194070_7593446635338763542 (no frames / failed extraction)
[SKIP] 7585621460966788374_7603473500816297238 (no frames / failed extraction)
[SKIP] 7586150189941935382_7593384463275461910 (no frames / failed extraction)
[SKIP] 7586597062821793046_7602700394216688918 (no frames / failed extraction)
[SKIP] 7587882760279231777_7593074162743217430 (no frames / failed extraction)
[SKIP] 7588180930066386198_7603412848949218582 (no frames / failed extraction)
[SKIP] 7588207905518767382_7602720790659992855 (no frames / failed extraction)
[SKIP] 7588859776717671702_7593296535866117378 (no frames / failed extraction)
[SKIP] 7589385196827462934_7603104546189036822 (no frames / failed extraction)
[SKIP] 7589913665097174294_7593039101570354454 (no frames / failed extraction)
[SKIP] 7589960687187725591_7593085871843314966 (no frames / failed extraction)
[SKIP] 7590468019252432150_7593407027062263062 (no frames / failed extraction)
[SKIP] 7591630202673974550_7593064619959405846 (no frames / failed extraction)
[SKIP] 7591836115888246038_7593080065173359894 (no frames / failed extraction)
[SKIP] 7591847133309930773_7593094663347768598 (no frames / failed extraction)
[SKIP] 7591874135001763094_7593341652392070432 (no frames / failed extraction)
[SKIP] 7591889069026659606_7593402590713416983 (no frames / failed extraction)
[SKIP] 7592192610349993224_7603422246249483542 (no frames / failed extraction)
[SKIP] 7592249912092298516_7592692430290423048 (no frames / failed extraction)
[SKIP] 7592292119172156694_7593344515516255510 (no frames / failed extraction)
[SKIP] 7592407303433850134_7593089551699086614 (no frames / failed extraction)
[SKIP] 7592438557940190472_7593320220027112712 (no frames / failed extraction)
[SKIP] 7592447930083118358_7593389460251888918 (no frames / failed extraction)
[SKIP] 7592579018231123222_7593140560538504470 (no frames / failed extraction)
[SKIP] 7592587710313827606_7593083922620189974 (no frames / failed extraction)
[SKIP] 7592606436027338006_7593094886673501462 (no frames / failed extraction)
[SKIP] 7592608349129018646_7593268938440576278 (no frames / failed extraction)
[SKIP] 7592638072890641686_7593021195084172566 (no frames / failed extraction)
[SKIP] 7592665489650846999_7593089848739646742 (no frames / failed extraction)
[SKIP] 7592684356397698336_7593071353121492246 (no frames / failed extraction)
[SKIP] 7592689445384490262_7593027488104795414 (no frames / failed extraction)
[SKIP] 7592706387596135702_7593112206011649302 (no frames / failed extraction)
[SKIP] 7592730883266858262_7593062110196681987 (no frames / failed extraction)
[SKIP] 7592949961030094102_7603492671742545174 (no frames / failed extraction)
[SKIP] 7592962410810461462_7593308664602135830 (no frames / failed extraction)
[SKIP] 7592969692319386902_7593341592568712470 (no frames / failed extraction)
[SKIP] 7592997884329512214_7593429334455618838 (no frames / failed extraction)
[SKIP] 7593023927065038102_7593407584388795670 (no frames / failed extraction)
[SKIP] 7593025085439560982_7593349087630691607 (no frames / failed extraction)
[SKIP] 7593042030754925846_7593114198452882720 (no frames / failed extraction)
[SKIP] 7593061563909606658_7593077514952510742 (no frames / failed extraction)
[SKIP] 7593070251244375318_7593078378312387862 (no frames / failed extraction)
[SKIP] 7593753670903270678_7602706264363142432 (no frames / failed extraction)
[SKIP] 7596084847773420823_7602772755599117590 (no frames / failed extraction)
[SKIP] 7596228877127634198_7602841595464994070 (no frames / failed extraction)
[SKIP] 7597475892209650975_7604100479915805972 (no frames / failed extraction)
[SKIP] 7597495313544400150_7603023470439484694 (no frames / failed extraction)
[SKIP] 7597873882174868758_7603005109261405462 (no frames / failed extraction)
[SKIP] 7598175222746877206_7603007093393624342 (no frames / failed extraction)
[SKIP] 7598472951473704214_7602725579322002710 (no frames / failed extraction)
[SKIP] 7598516119405726996_7603973426964925716 (no frames / failed extraction)
[SKIP] 7599677244956593430_7602460334779108630 (no frames / failed extraction)
[SKIP] 7599719725207145750_7602933646244285718 (no frames / failed extraction)
[SKIP] 7600336749038144788_7602748123613629718 (no frames / failed extraction)
[SKIP] 7600496386005536022_7603075447164914966 (no frames / failed extraction)
[SKIP] 7600813734570773782_7602429316919479574 (no frames / failed extraction)
[SKIP] 7600848290413825302_7602779112352025878 (no frames / failed extraction)
[SKIP] 7601220761646402838_7603018067106499863 (no frames / failed extraction)
[SKIP] 7601510305893534998_7602678212866477335 (no frames / failed extraction)
[SKIP] 7601613870863518994_7603563256304700688 (no frames / failed extraction)
[SKIP] 7601848515752398102_7602678382060571906 (no frames / failed extraction)
[SKIP] 7601913432597712150_7603131540138200342 (no frames / failed extraction)
[SKIP] 7601928286750379286_7602577786364120342 (no frames / failed extraction)
[SKIP] 7601933322196946198_7602754876120042774 (no frames / failed extraction)
[SKIP] 7601998610477190422_7602715371820338454 (no frames / failed extraction)
[SKIP] 7602130594893417735_7604578017720962311 (no frames / failed extraction)
[SKIP] 7602177500176796950_7602678869098827030 (no frames / failed extraction)
[SKIP] 7602247963691289878_7602952772085943574 (no frames / failed extraction)
[SKIP] 7602249398457847062_7602706438569381142 (no frames / failed extraction)
[SKIP] 7602252479589322006_7602710905004018966 (no frames / failed extraction)
[SKIP] 7602260906663300374_7603059444066389270 (no frames / failed extraction)
[SKIP] 7602271814382849302_7602882172822834454 (no frames / failed extraction)
[SKIP] 7602310864481357078_7602647922227907862 (no frames / failed extraction)
[SKIP] 7602312802610531592_7604593851096976660 (no frames / failed extraction)
[SKIP] 7602376297129561366_7602579472767847702 (no frames / failed extraction)
[SKIP] 7602380228945644822_7602998633562197270 (no frames / failed extraction)
[SKIP] 7602389798820564227_7602719197398912278 (no frames / failed extraction)
[SKIP] 7602393643793648918_7602510910665624854 (no frames / failed extraction)
[SKIP] 7602395422874717462_7602982547936611606 (no frames / failed extraction)
[SKIP] 7602402488028876054_7602916875302898976 (no frames / failed extraction)
[SKIP] 7602405874400759047_7602473421427019026 (no frames / failed extraction)
[SKIP] 7602411358860102934_7602747902141664534 (no frames / failed extraction)
[SKIP] 7602418496676498711_7603388889381735712 (no frames / failed extraction)
[SKIP] 7602423244649483542_7603035091178097942 (no frames / failed extraction)
[SKIP] 7602580322869366038_7602742455183707414 (no frames / failed extraction)
[SKIP] 7602594689996410134_7603071616582503702 (no frames / failed extraction)
[SKIP] 7602614247180356885_7602647330415709462 (no frames / failed extraction)
[SKIP] 7602629799265488131_7602679961081761046 (no frames / failed extraction)
[SKIP] 7602663072544722198_7602769847151250710 (no frames / failed extraction)
[SKIP] 7602698902118157590_7603048226572274966 (no frames / failed extraction)
[SKIP] 7602712165912513814_7602756998052039958 (no frames / failed extraction)
[SKIP] 7602716194466073858_7602731198116498711 (no frames / failed extraction)
[SKIP] 7602756717650251030_7603150900827491586 (no frames / failed extraction)
[SKIP] 7602761656724196630_7603069792135826710 (no frames / failed extraction)
[SKIP] 7602776772869983510_7602780713779334422 (no frames / failed extraction)
[SKIP] 7603023017689566486_7603400137217543446 (no frames / failed extraction)
[SKIP] 7603726508284185876_7604510815655300372 (no frames / failed extraction)
[SKIP] 7603982549580385544_7604135707203964181 (no frames / failed extraction)
[SKIP] 7604033909038304532_7604549104487861512 (no frames / failed extraction)
[SKIP] 7604197852574665992_7604504344976755988 (no frames / failed extraction)
[SKIP] 7604249600865701142_7604624761112644882 (no frames / failed extraction)
Loaded 133 samples from /mlx/users/jiashuo.fan/playground/inference/active_cases/frames_cache
Pending: 0
Nothing to evaluate!
Model: molmo_7b
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Model type: molmo
Fine-tuned: False
[SKIP] 7582677198746750229_7602429433449893127 (no frames / failed extraction)
[SKIP] 7583417083719847190_7602908531787910422 (no frames / failed extraction)
[SKIP] 7584037444983459092_7593315053781241106 (no frames / failed extraction)
[SKIP] 7584733886580591880_7592782759857245447 (no frames / failed extraction)
[SKIP] 7585273467772194070_7593446635338763542 (no frames / failed extraction)
[SKIP] 7585621460966788374_7603473500816297238 (no frames / failed extraction)
[SKIP] 7586150189941935382_7593384463275461910 (no frames / failed extraction)
[SKIP] 7586597062821793046_7602700394216688918 (no frames / failed extraction)
[SKIP] 7587882760279231777_7593074162743217430 (no frames / failed extraction)
[SKIP] 7588180930066386198_7603412848949218582 (no frames / failed extraction)
[SKIP] 7588207905518767382_7602720790659992855 (no frames / failed extraction)
[SKIP] 7588859776717671702_7593296535866117378 (no frames / failed extraction)
[SKIP] 7589385196827462934_7603104546189036822 (no frames / failed extraction)
[SKIP] 7589913665097174294_7593039101570354454 (no frames / failed extraction)
[SKIP] 7589960687187725591_7593085871843314966 (no frames / failed extraction)
[SKIP] 7590468019252432150_7593407027062263062 (no frames / failed extraction)
[SKIP] 7591630202673974550_7593064619959405846 (no frames / failed extraction)
[SKIP] 7591836115888246038_7593080065173359894 (no frames / failed extraction)
[SKIP] 7591847133309930773_7593094663347768598 (no frames / failed extraction)
[SKIP] 7591874135001763094_7593341652392070432 (no frames / failed extraction)
[SKIP] 7591889069026659606_7593402590713416983 (no frames / failed extraction)
[SKIP] 7592192610349993224_7603422246249483542 (no frames / failed extraction)
[SKIP] 7592249912092298516_7592692430290423048 (no frames / failed extraction)
[SKIP] 7592292119172156694_7593344515516255510 (no frames / failed extraction)
[SKIP] 7592407303433850134_7593089551699086614 (no frames / failed extraction)
[SKIP] 7592438557940190472_7593320220027112712 (no frames / failed extraction)
[SKIP] 7592447930083118358_7593389460251888918 (no frames / failed extraction)
[SKIP] 7592579018231123222_7593140560538504470 (no frames / failed extraction)
[SKIP] 7592587710313827606_7593083922620189974 (no frames / failed extraction)
[SKIP] 7592606436027338006_7593094886673501462 (no frames / failed extraction)
[SKIP] 7592608349129018646_7593268938440576278 (no frames / failed extraction)
[SKIP] 7592638072890641686_7593021195084172566 (no frames / failed extraction)
[SKIP] 7592665489650846999_7593089848739646742 (no frames / failed extraction)
[SKIP] 7592684356397698336_7593071353121492246 (no frames / failed extraction)
[SKIP] 7592689445384490262_7593027488104795414 (no frames / failed extraction)
[SKIP] 7592706387596135702_7593112206011649302 (no frames / failed extraction)
[SKIP] 7592730883266858262_7593062110196681987 (no frames / failed extraction)
[SKIP] 7592949961030094102_7603492671742545174 (no frames / failed extraction)
[SKIP] 7592962410810461462_7593308664602135830 (no frames / failed extraction)
[SKIP] 7592969692319386902_7593341592568712470 (no frames / failed extraction)
[SKIP] 7592997884329512214_7593429334455618838 (no frames / failed extraction)
[SKIP] 7593023927065038102_7593407584388795670 (no frames / failed extraction)
[SKIP] 7593025085439560982_7593349087630691607 (no frames / failed extraction)
[SKIP] 7593042030754925846_7593114198452882720 (no frames / failed extraction)
[SKIP] 7593061563909606658_7593077514952510742 (no frames / failed extraction)
[SKIP] 7593070251244375318_7593078378312387862 (no frames / failed extraction)
[SKIP] 7593753670903270678_7602706264363142432 (no frames / failed extraction)
[SKIP] 7596084847773420823_7602772755599117590 (no frames / failed extraction)
[SKIP] 7596228877127634198_7602841595464994070 (no frames / failed extraction)
[SKIP] 7597475892209650975_7604100479915805972 (no frames / failed extraction)
[SKIP] 7597495313544400150_7603023470439484694 (no frames / failed extraction)
[SKIP] 7597873882174868758_7603005109261405462 (no frames / failed extraction)
[SKIP] 7598175222746877206_7603007093393624342 (no frames / failed extraction)
[SKIP] 7598472951473704214_7602725579322002710 (no frames / failed extraction)
[SKIP] 7598516119405726996_7603973426964925716 (no frames / failed extraction)
[SKIP] 7599677244956593430_7602460334779108630 (no frames / failed extraction)
[SKIP] 7599719725207145750_7602933646244285718 (no frames / failed extraction)
[SKIP] 7600336749038144788_7602748123613629718 (no frames / failed extraction)
[SKIP] 7600496386005536022_7603075447164914966 (no frames / failed extraction)
[SKIP] 7600813734570773782_7602429316919479574 (no frames / failed extraction)
[SKIP] 7600848290413825302_7602779112352025878 (no frames / failed extraction)
[SKIP] 7601220761646402838_7603018067106499863 (no frames / failed extraction)
[SKIP] 7601510305893534998_7602678212866477335 (no frames / failed extraction)
[SKIP] 7601613870863518994_7603563256304700688 (no frames / failed extraction)
[SKIP] 7601848515752398102_7602678382060571906 (no frames / failed extraction)
[SKIP] 7601913432597712150_7603131540138200342 (no frames / failed extraction)
[SKIP] 7601928286750379286_7602577786364120342 (no frames / failed extraction)
[SKIP] 7601933322196946198_7602754876120042774 (no frames / failed extraction)
[SKIP] 7601998610477190422_7602715371820338454 (no frames / failed extraction)
[SKIP] 7602130594893417735_7604578017720962311 (no frames / failed extraction)
[SKIP] 7602177500176796950_7602678869098827030 (no frames / failed extraction)
[SKIP] 7602247963691289878_7602952772085943574 (no frames / failed extraction)
[SKIP] 7602249398457847062_7602706438569381142 (no frames / failed extraction)
[SKIP] 7602252479589322006_7602710905004018966 (no frames / failed extraction)
[SKIP] 7602260906663300374_7603059444066389270 (no frames / failed extraction)
[SKIP] 7602271814382849302_7602882172822834454 (no frames / failed extraction)
[SKIP] 7602310864481357078_7602647922227907862 (no frames / failed extraction)
[SKIP] 7602312802610531592_7604593851096976660 (no frames / failed extraction)
[SKIP] 7602376297129561366_7602579472767847702 (no frames / failed extraction)
[SKIP] 7602380228945644822_7602998633562197270 (no frames / failed extraction)
[SKIP] 7602389798820564227_7602719197398912278 (no frames / failed extraction)
[SKIP] 7602393643793648918_7602510910665624854 (no frames / failed extraction)
[SKIP] 7602395422874717462_7602982547936611606 (no frames / failed extraction)
[SKIP] 7602402488028876054_7602916875302898976 (no frames / failed extraction)
[SKIP] 7602405874400759047_7602473421427019026 (no frames / failed extraction)
[SKIP] 7602411358860102934_7602747902141664534 (no frames / failed extraction)
[SKIP] 7602418496676498711_7603388889381735712 (no frames / failed extraction)
[SKIP] 7602423244649483542_7603035091178097942 (no frames / failed extraction)
[SKIP] 7602580322869366038_7602742455183707414 (no frames / failed extraction)
[SKIP] 7602594689996410134_7603071616582503702 (no frames / failed extraction)
[SKIP] 7602614247180356885_7602647330415709462 (no frames / failed extraction)
[SKIP] 7602629799265488131_7602679961081761046 (no frames / failed extraction)
[SKIP] 7602663072544722198_7602769847151250710 (no frames / failed extraction)
[SKIP] 7602698902118157590_7603048226572274966 (no frames / failed extraction)
[SKIP] 7602712165912513814_7602756998052039958 (no frames / failed extraction)
[SKIP] 7602716194466073858_7602731198116498711 (no frames / failed extraction)
[SKIP] 7602756717650251030_7603150900827491586 (no frames / failed extraction)
[SKIP] 7602761656724196630_7603069792135826710 (no frames / failed extraction)
[SKIP] 7602776772869983510_7602780713779334422 (no frames / failed extraction)
[SKIP] 7603023017689566486_7603400137217543446 (no frames / failed extraction)
[SKIP] 7603726508284185876_7604510815655300372 (no frames / failed extraction)
[SKIP] 7603982549580385544_7604135707203964181 (no frames / failed extraction)
[SKIP] 7604033909038304532_7604549104487861512 (no frames / failed extraction)
[SKIP] 7604197852574665992_7604504344976755988 (no frames / failed extraction)
[SKIP] 7604249600865701142_7604624761112644882 (no frames / failed extraction)
Loaded 133 samples from /mlx/users/jiashuo.fan/playground/inference/active_cases/frames_cache
Pending: 133
Loading Molmo from /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.52, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
`torch_dtype` is deprecated! Use `dtype` instead!
Loading checkpoint shards: 0%| | 0/7 [00:00<?, ?it/s]
Loading checkpoint shards: 14%|█▍ | 1/7 [00:01<00:06, 1.03s/it]
Loading checkpoint shards: 29%|██▊ | 2/7 [00:02<00:05, 1.06s/it]
Loading checkpoint shards: 43%|████▎ | 3/7 [00:03<00:04, 1.07s/it]
Loading checkpoint shards: 57%|█████▋ | 4/7 [00:04<00:03, 1.07s/it]
Loading checkpoint shards: 71%|███████▏ | 5/7 [00:05<00:02, 1.03s/it]
Loading checkpoint shards: 86%|████████▌ | 6/7 [00:06<00:01, 1.01s/it]
Loading checkpoint shards: 100%|██████████| 7/7 [00:07<00:00, 1.05s/it]
Loading checkpoint shards: 100%|██████████| 7/7 [00:07<00:00, 1.05s/it]
ERROR on 7582864625457384725_7592503137240386834: module 'tensorflow' has no attribute 'Variable'
[1/133] 7582864625457384725_7592503137240386834 | acc=0.000 (correct=0/0) | 7.49 samp/s
ERROR on 7583298662386650389_7603817886603300103: module 'tensorflow' has no attribute 'Variable'
[2/133] 7583298662386650389_7603817886603300103 | acc=0.000 (correct=0/0) | 8.48 samp/s
ERROR on 7583769463078800643_7603057302106656022: module 'tensorflow' has no attribute 'Variable'
[3/133] 7583769463078800643_7603057302106656022 | acc=0.000 (correct=0/0) | 9.51 samp/s
ERROR on 7584143881545977110_7593173975707028758: module 'tensorflow' has no attribute 'Variable'
[4/133] 7584143881545977110_7593173975707028758 | acc=0.000 (correct=0/0) | 10.36 samp/s
ERROR on 7584459358449405202_7604337545559674132: module 'tensorflow' has no attribute 'Variable'
[5/133] 7584459358449405202_7604337545559674132 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7584515446049656086_7592960395527146774: module 'tensorflow' has no attribute 'Variable'
[6/133] 7584515446049656086_7592960395527146774 | acc=0.000 (correct=0/0) | 10.41 samp/s
ERROR on 7585337388545723681_7593386207040507169: module 'tensorflow' has no attribute 'Variable'
[7/133] 7585337388545723681_7593386207040507169 | acc=0.000 (correct=0/0) | 10.39 samp/s
ERROR on 7586774649753718038_7593408077811207427: module 'tensorflow' has no attribute 'Variable'
[8/133] 7586774649753718038_7593408077811207427 | acc=0.000 (correct=0/0) | 10.35 samp/s
ERROR on 7588310732303879432_7595998237404761362: module 'tensorflow' has no attribute 'Variable'
[9/133] 7588310732303879432_7595998237404761362 | acc=0.000 (correct=0/0) | 10.35 samp/s
ERROR on 7589478401866616084_7592464439727623445: module 'tensorflow' has no attribute 'Variable'
[10/133] 7589478401866616084_7592464439727623445 | acc=0.000 (correct=0/0) | 10.37 samp/s
ERROR on 7589598278531009813_7604139924731809045: module 'tensorflow' has no attribute 'Variable'
[11/133] 7589598278531009813_7604139924731809045 | acc=0.000 (correct=0/0) | 10.54 samp/s
ERROR on 7590080459309124886_7602942433009159446: module 'tensorflow' has no attribute 'Variable'
[12/133] 7590080459309124886_7602942433009159446 | acc=0.000 (correct=0/0) | 10.44 samp/s
ERROR on 7590122947935735062_7602760876478745878: module 'tensorflow' has no attribute 'Variable'
[13/133] 7590122947935735062_7602760876478745878 | acc=0.000 (correct=0/0) | 10.47 samp/s
ERROR on 7590736059038698760_7604236963700329736: module 'tensorflow' has no attribute 'Variable'
[14/133] 7590736059038698760_7604236963700329736 | acc=0.000 (correct=0/0) | 10.32 samp/s
ERROR on 7591396054570896660_7602174366645865736: module 'tensorflow' has no attribute 'Variable'
[15/133] 7591396054570896660_7602174366645865736 | acc=0.000 (correct=0/0) | 10.33 samp/s
ERROR on 7591603142207474952_7592657430761295124: module 'tensorflow' has no attribute 'Variable'
[16/133] 7591603142207474952_7592657430761295124 | acc=0.000 (correct=0/0) | 10.34 samp/s
ERROR on 7591633885876833543_7592914268626930952: module 'tensorflow' has no attribute 'Variable'
[17/133] 7591633885876833543_7592914268626930952 | acc=0.000 (correct=0/0) | 10.33 samp/s
ERROR on 7592127916369022215_7592811493075225877: module 'tensorflow' has no attribute 'Variable'
[18/133] 7592127916369022215_7592811493075225877 | acc=0.000 (correct=0/0) | 10.26 samp/s
ERROR on 7592292714314566934_7603000520394968342: module 'tensorflow' has no attribute 'Variable'
[19/133] 7592292714314566934_7603000520394968342 | acc=0.000 (correct=0/0) | 10.23 samp/s
ERROR on 7592363769301388575_7592557472821382420: module 'tensorflow' has no attribute 'Variable'
[20/133] 7592363769301388575_7592557472821382420 | acc=0.000 (correct=0/0) | 10.25 samp/s
ERROR on 7592379393456999688_7592812522206514452: module 'tensorflow' has no attribute 'Variable'
[21/133] 7592379393456999688_7592812522206514452 | acc=0.000 (correct=0/0) | 10.22 samp/s
ERROR on 7592395525857627448_7592424707811446034: module 'tensorflow' has no attribute 'Variable'
[22/133] 7592395525857627448_7592424707811446034 | acc=0.000 (correct=0/0) | 10.22 samp/s
ERROR on 7592396786472455445_7592776503407037716: module 'tensorflow' has no attribute 'Variable'
[23/133] 7592396786472455445_7592776503407037716 | acc=0.000 (correct=0/0) | 10.21 samp/s
ERROR on 7592406759860423943_7592469167501102344: module 'tensorflow' has no attribute 'Variable'
[24/133] 7592406759860423943_7592469167501102344 | acc=0.000 (correct=0/0) | 10.20 samp/s
ERROR on 7592439822283705607_7592708834959904001: module 'tensorflow' has no attribute 'Variable'
[25/133] 7592439822283705607_7592708834959904001 | acc=0.000 (correct=0/0) | 10.20 samp/s
ERROR on 7592441861743136007_7592686503755582727: module 'tensorflow' has no attribute 'Variable'
[26/133] 7592441861743136007_7592686503755582727 | acc=0.000 (correct=0/0) | 10.20 samp/s
ERROR on 7592612029127494934_7593372133087022358: module 'tensorflow' has no attribute 'Variable'
[27/133] 7592612029127494934_7593372133087022358 | acc=0.000 (correct=0/0) | 10.20 samp/s
ERROR on 7592621669458480417_7593325946653003030: module 'tensorflow' has no attribute 'Variable'
[28/133] 7592621669458480417_7593325946653003030 | acc=0.000 (correct=0/0) | 10.23 samp/s
ERROR on 7592630277092936980_7592934574200605974: module 'tensorflow' has no attribute 'Variable'
[29/133] 7592630277092936980_7592934574200605974 | acc=0.000 (correct=0/0) | 10.24 samp/s
ERROR on 7592662940269006113_7593135968987696406: module 'tensorflow' has no attribute 'Variable'
[30/133] 7592662940269006113_7593135968987696406 | acc=0.000 (correct=0/0) | 10.26 samp/s
ERROR on 7592695844491644178_7593247873295289622: module 'tensorflow' has no attribute 'Variable'
[31/133] 7592695844491644178_7593247873295289622 | acc=0.000 (correct=0/0) | 10.28 samp/s
ERROR on 7592734749563653384_7593673083739802898: module 'tensorflow' has no attribute 'Variable'
[32/133] 7592734749563653384_7593673083739802898 | acc=0.000 (correct=0/0) | 10.14 samp/s
ERROR on 7592983455659543830_7593423283710610710: module 'tensorflow' has no attribute 'Variable'
[33/133] 7592983455659543830_7593423283710610710 | acc=0.000 (correct=0/0) | 10.14 samp/s
ERROR on 7593033792315575574_7593099150867172630: module 'tensorflow' has no attribute 'Variable'
[34/133] 7593033792315575574_7593099150867172630 | acc=0.000 (correct=0/0) | 10.15 samp/s
ERROR on 7593219919349566741_7595664852438338823: module 'tensorflow' has no attribute 'Variable'
[35/133] 7593219919349566741_7595664852438338823 | acc=0.000 (correct=0/0) | 10.19 samp/s
ERROR on 7593374120054656276_7604306674219863303: module 'tensorflow' has no attribute 'Variable'
[36/133] 7593374120054656276_7604306674219863303 | acc=0.000 (correct=0/0) | 10.20 samp/s
ERROR on 7593727005841968391_7595431144884129035: module 'tensorflow' has no attribute 'Variable'
[37/133] 7593727005841968391_7595431144884129035 | acc=0.000 (correct=0/0) | 10.27 samp/s
ERROR on 7593819989833026834_7604240520432520466: module 'tensorflow' has no attribute 'Variable'
[38/133] 7593819989833026834_7604240520432520466 | acc=0.000 (correct=0/0) | 10.27 samp/s
ERROR on 7594557794372652309_7604204623724809479: module 'tensorflow' has no attribute 'Variable'
[39/133] 7594557794372652309_7604204623724809479 | acc=0.000 (correct=0/0) | 10.28 samp/s
ERROR on 7594990951328746808_7595755849885289748: module 'tensorflow' has no attribute 'Variable'
[40/133] 7594990951328746808_7595755849885289748 | acc=0.000 (correct=0/0) | 10.32 samp/s
ERROR on 7595380926247341332_7602338775099837714: module 'tensorflow' has no attribute 'Variable'
[41/133] 7595380926247341332_7602338775099837714 | acc=0.000 (correct=0/0) | 10.38 samp/s
ERROR on 7595395129591024904_7595962701738741000: module 'tensorflow' has no attribute 'Variable'
[42/133] 7595395129591024904_7595962701738741000 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7595407496525663506_7595842450577575179: module 'tensorflow' has no attribute 'Variable'
[43/133] 7595407496525663506_7595842450577575179 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7595414619993246983_7595648604866350354: module 'tensorflow' has no attribute 'Variable'
[44/133] 7595414619993246983_7595648604866350354 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7595460052346096914_7595599161152605447: module 'tensorflow' has no attribute 'Variable'
[45/133] 7595460052346096914_7595599161152605447 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7595474031126646034_7595640420671982904: module 'tensorflow' has no attribute 'Variable'
[46/133] 7595474031126646034_7595640420671982904 | acc=0.000 (correct=0/0) | 10.42 samp/s
ERROR on 7595812699439648007_7604520050434854152: module 'tensorflow' has no attribute 'Variable'
[47/133] 7595812699439648007_7604520050434854152 | acc=0.000 (correct=0/0) | 10.41 samp/s
ERROR on 7597044647780764948_7604054478521748757: module 'tensorflow' has no attribute 'Variable'
[48/133] 7597044647780764948_7604054478521748757 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7597788963738324232_7603763715422407957: module 'tensorflow' has no attribute 'Variable'
[49/133] 7597788963738324232_7603763715422407957 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7598938266598952210_7604394570947890440: module 'tensorflow' has no attribute 'Variable'
[50/133] 7598938266598952210_7604394570947890440 | acc=0.000 (correct=0/0) | 10.52 samp/s
ERROR on 7598981214132849942_7603041768992460054: module 'tensorflow' has no attribute 'Variable'
[51/133] 7598981214132849942_7603041768992460054 | acc=0.000 (correct=0/0) | 10.52 samp/s
ERROR on 7599419411836964117_7602328110696090901: module 'tensorflow' has no attribute 'Variable'
[52/133] 7599419411836964117_7602328110696090901 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7600049951300685076_7602626609417604370: module 'tensorflow' has no attribute 'Variable'
[53/133] 7600049951300685076_7602626609417604370 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7600071116324900116_7602337842538368276: module 'tensorflow' has no attribute 'Variable'
[54/133] 7600071116324900116_7602337842538368276 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7600138772541394198_7602907593710767382: module 'tensorflow' has no attribute 'Variable'
[55/133] 7600138772541394198_7602907593710767382 | acc=0.000 (correct=0/0) | 10.50 samp/s
ERROR on 7600184266231745810_7603856182331051284: module 'tensorflow' has no attribute 'Variable'
[56/133] 7600184266231745810_7603856182331051284 | acc=0.000 (correct=0/0) | 10.50 samp/s
ERROR on 7600267409701833992_7604407914765290759: module 'tensorflow' has no attribute 'Variable'
[57/133] 7600267409701833992_7604407914765290759 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7600717184851053846_7603923738865782037: module 'tensorflow' has no attribute 'Variable'
[58/133] 7600717184851053846_7603923738865782037 | acc=0.000 (correct=0/0) | 10.50 samp/s
ERROR on 7600822923275799828_7604562398480977159: module 'tensorflow' has no attribute 'Variable'
[59/133] 7600822923275799828_7604562398480977159 | acc=0.000 (correct=0/0) | 10.50 samp/s
ERROR on 7600850853821418772_7604066449119857941: module 'tensorflow' has no attribute 'Variable'
[60/133] 7600850853821418772_7604066449119857941 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7601115694347947294_7604552935992724744: module 'tensorflow' has no attribute 'Variable'
[61/133] 7601115694347947294_7604552935992724744 | acc=0.000 (correct=0/0) | 10.54 samp/s
ERROR on 7601134749763030294_7602752793023204630: module 'tensorflow' has no attribute 'Variable'
[62/133] 7601134749763030294_7602752793023204630 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7601312798609591574_7603019182405373206: module 'tensorflow' has no attribute 'Variable'
[63/133] 7601312798609591574_7603019182405373206 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7601325066151890196_7602212400758000916: module 'tensorflow' has no attribute 'Variable'
[64/133] 7601325066151890196_7602212400758000916 | acc=0.000 (correct=0/0) | 10.55 samp/s
ERROR on 7601574274960231702_7602694663203523862: module 'tensorflow' has no attribute 'Variable'
[65/133] 7601574274960231702_7602694663203523862 | acc=0.000 (correct=0/0) | 10.54 samp/s
ERROR on 7601579424177343762_7602468045705006356: module 'tensorflow' has no attribute 'Variable'
[66/133] 7601579424177343762_7602468045705006356 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7601586470712954115_7603338240136908054: module 'tensorflow' has no attribute 'Variable'
[67/133] 7601586470712954115_7603338240136908054 | acc=0.000 (correct=0/0) | 10.52 samp/s
ERROR on 7601669855993007382_7603430768756477206: module 'tensorflow' has no attribute 'Variable'
[68/133] 7601669855993007382_7603430768756477206 | acc=0.000 (correct=0/0) | 10.49 samp/s
ERROR on 7601674006034402582_7602604985834048790: module 'tensorflow' has no attribute 'Variable'
[69/133] 7601674006034402582_7602604985834048790 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7601713212869856533_7602376124693351688: module 'tensorflow' has no attribute 'Variable'
[70/133] 7601713212869856533_7602376124693351688 | acc=0.000 (correct=0/0) | 10.56 samp/s
ERROR on 7601765261200461078_7602681205758102806: module 'tensorflow' has no attribute 'Variable'
[71/133] 7601765261200461078_7602681205758102806 | acc=0.000 (correct=0/0) | 10.55 samp/s
ERROR on 7601949430056602900_7602434611599265044: module 'tensorflow' has no attribute 'Variable'
[72/133] 7601949430056602900_7602434611599265044 | acc=0.000 (correct=0/0) | 10.54 samp/s
ERROR on 7601970606141148438_7603078990038895894: module 'tensorflow' has no attribute 'Variable'
[73/133] 7601970606141148438_7603078990038895894 | acc=0.000 (correct=0/0) | 10.55 samp/s
ERROR on 7602006928537046280_7602420413976546567: module 'tensorflow' has no attribute 'Variable'
[74/133] 7602006928537046280_7602420413976546567 | acc=0.000 (correct=0/0) | 10.55 samp/s
ERROR on 7602009271491988743_7604143486912171271: module 'tensorflow' has no attribute 'Variable'
[75/133] 7602009271491988743_7604143486912171271 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7602060282625674517_7602477809264495880: module 'tensorflow' has no attribute 'Variable'
[76/133] 7602060282625674517_7602477809264495880 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7602082846525754631_7604271197852929287: module 'tensorflow' has no attribute 'Variable'
[77/133] 7602082846525754631_7604271197852929287 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7602143673546984725_7604193599068146951: module 'tensorflow' has no attribute 'Variable'
[78/133] 7602143673546984725_7604193599068146951 | acc=0.000 (correct=0/0) | 10.49 samp/s
ERROR on 7602256064427330839_7603098072029138198: module 'tensorflow' has no attribute 'Variable'
[79/133] 7602256064427330839_7603098072029138198 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7602270984690748694_7603038892320705814: module 'tensorflow' has no attribute 'Variable'
[80/133] 7602270984690748694_7603038892320705814 | acc=0.000 (correct=0/0) | 10.47 samp/s
ERROR on 7602366022103878929_7602669638551391496: module 'tensorflow' has no attribute 'Variable'
[81/133] 7602366022103878929_7602669638551391496 | acc=0.000 (correct=0/0) | 10.47 samp/s
ERROR on 7602382902457863445_7604191296412159252: module 'tensorflow' has no attribute 'Variable'
[82/133] 7602382902457863445_7604191296412159252 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7602700620830625046_7602866165395803414: module 'tensorflow' has no attribute 'Variable'
[83/133] 7602700620830625046_7602866165395803414 | acc=0.000 (correct=0/0) | 10.47 samp/s
ERROR on 7602708595221875986_7604355289906826504: module 'tensorflow' has no attribute 'Variable'
[84/133] 7602708595221875986_7604355289906826504 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7602725486715817219_7603481735279512854: module 'tensorflow' has no attribute 'Variable'
[85/133] 7602725486715817219_7603481735279512854 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7602729554339253526_7603093834116943126: module 'tensorflow' has no attribute 'Variable'
[86/133] 7602729554339253526_7603093834116943126 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7602843396088106262_7602995295437278486: module 'tensorflow' has no attribute 'Variable'
[87/133] 7602843396088106262_7602995295437278486 | acc=0.000 (correct=0/0) | 10.44 samp/s
ERROR on 7602910354212932884_7603540991643061512: module 'tensorflow' has no attribute 'Variable'
[88/133] 7602910354212932884_7603540991643061512 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7602915847211977992_7604398958395559186: module 'tensorflow' has no attribute 'Variable'
[89/133] 7602915847211977992_7604398958395559186 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7602946751540071701_7604027006077963528: module 'tensorflow' has no attribute 'Variable'
[90/133] 7602946751540071701_7604027006077963528 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7602984837502307606_7603479345079815446: module 'tensorflow' has no attribute 'Variable'
[91/133] 7602984837502307606_7603479345079815446 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7603022279718538516_7604021216944360712: module 'tensorflow' has no attribute 'Variable'
[92/133] 7603022279718538516_7604021216944360712 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7603057662082731286_7603508048769993987: module 'tensorflow' has no attribute 'Variable'
[93/133] 7603057662082731286_7603508048769993987 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7603072200341507329_7604142589331115280: module 'tensorflow' has no attribute 'Variable'
[94/133] 7603072200341507329_7604142589331115280 | acc=0.000 (correct=0/0) | 10.47 samp/s
ERROR on 7603075574315158806_7603118367762910486: module 'tensorflow' has no attribute 'Variable'
[95/133] 7603075574315158806_7603118367762910486 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7603079625559887125_7603753412768910612: module 'tensorflow' has no attribute 'Variable'
[96/133] 7603079625559887125_7603753412768910612 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7603090622093757718_7603453990323457303: module 'tensorflow' has no attribute 'Variable'
[97/133] 7603090622093757718_7603453990323457303 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7603114436525870358_7603434420065848598: module 'tensorflow' has no attribute 'Variable'
[98/133] 7603114436525870358_7603434420065848598 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7603118709992967446_7603141944167976214: module 'tensorflow' has no attribute 'Variable'
[99/133] 7603118709992967446_7603141944167976214 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7603138308822076692_7603806260097453332: module 'tensorflow' has no attribute 'Variable'
[100/133] 7603138308822076692_7603806260097453332 | acc=0.000 (correct=0/0) | 10.47 samp/s
ERROR on 7603146769148513566_7604566499847687445: module 'tensorflow' has no attribute 'Variable'
[101/133] 7603146769148513566_7604566499847687445 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7603165062764711186_7603407222311292181: module 'tensorflow' has no attribute 'Variable'
[102/133] 7603165062764711186_7603407222311292181 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7603185260158881045_7603447262575906068: module 'tensorflow' has no attribute 'Variable'
[103/133] 7603185260158881045_7603447262575906068 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7603389036920704264_7604264676964207892: module 'tensorflow' has no attribute 'Variable'
[104/133] 7603389036920704264_7604264676964207892 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7603529071628225800_7604036865682951445: module 'tensorflow' has no attribute 'Variable'
[105/133] 7603529071628225800_7604036865682951445 | acc=0.000 (correct=0/0) | 10.47 samp/s
ERROR on 7603529734223383828_7604261847734275335: module 'tensorflow' has no attribute 'Variable'
[106/133] 7603529734223383828_7604261847734275335 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7603597531121011986_7604027676130594055: module 'tensorflow' has no attribute 'Variable'
[107/133] 7603597531121011986_7604027676130594055 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7603814056583023893_7603967990312307975: module 'tensorflow' has no attribute 'Variable'
[108/133] 7603814056583023893_7603967990312307975 | acc=0.000 (correct=0/0) | 10.44 samp/s
ERROR on 7603818369183190303_7604234434702806280: module 'tensorflow' has no attribute 'Variable'
[109/133] 7603818369183190303_7604234434702806280 | acc=0.000 (correct=0/0) | 10.44 samp/s
ERROR on 7603852215660465416_7604220286849813781: module 'tensorflow' has no attribute 'Variable'
[110/133] 7603852215660465416_7604220286849813781 | acc=0.000 (correct=0/0) | 10.44 samp/s
ERROR on 7603876731857931540_7604241667603893524: module 'tensorflow' has no attribute 'Variable'
[111/133] 7603876731857931540_7604241667603893524 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7603884493329550609_7604041815758490901: module 'tensorflow' has no attribute 'Variable'
[112/133] 7603884493329550609_7604041815758490901 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7603902943246503175_7604332451615247623: module 'tensorflow' has no attribute 'Variable'
[113/133] 7603902943246503175_7604332451615247623 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7603921933381455125_7604079730609982741: module 'tensorflow' has no attribute 'Variable'
[114/133] 7603921933381455125_7604079730609982741 | acc=0.000 (correct=0/0) | 10.47 samp/s
ERROR on 7603932047878442257_7603978976616336661: module 'tensorflow' has no attribute 'Variable'
[115/133] 7603932047878442257_7603978976616336661 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7603947476332186901_7604063261130034433: module 'tensorflow' has no attribute 'Variable'
[116/133] 7603947476332186901_7604063261130034433 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7603977624448175368_7604464746045230354: module 'tensorflow' has no attribute 'Variable'
[117/133] 7603977624448175368_7604464746045230354 | acc=0.000 (correct=0/0) | 10.54 samp/s
ERROR on 7603979300127214866_7604577411136621844: module 'tensorflow' has no attribute 'Variable'
[118/133] 7603979300127214866_7604577411136621844 | acc=0.000 (correct=0/0) | 10.54 samp/s
ERROR on 7603993350802394389_7604087376469642517: module 'tensorflow' has no attribute 'Variable'
[119/133] 7603993350802394389_7604087376469642517 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7604019342124043540_7604368885785070868: module 'tensorflow' has no attribute 'Variable'
[120/133] 7604019342124043540_7604368885785070868 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7604023995578453256_7604406022966463752: module 'tensorflow' has no attribute 'Variable'
[121/133] 7604023995578453256_7604406022966463752 | acc=0.000 (correct=0/0) | 10.52 samp/s
ERROR on 7604071937224199445_7604486246018075922: module 'tensorflow' has no attribute 'Variable'
[122/133] 7604071937224199445_7604486246018075922 | acc=0.000 (correct=0/0) | 10.52 samp/s
ERROR on 7604117742802701576_7604523788599938321: module 'tensorflow' has no attribute 'Variable'
[123/133] 7604117742802701576_7604523788599938321 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7604119657179630856_7604130070600437010: module 'tensorflow' has no attribute 'Variable'
[124/133] 7604119657179630856_7604130070600437010 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7604120387240234260_7604264832187108629: module 'tensorflow' has no attribute 'Variable'
[125/133] 7604120387240234260_7604264832187108629 | acc=0.000 (correct=0/0) | 10.50 samp/s
ERROR on 7604133644516494613_7604325341783493906: module 'tensorflow' has no attribute 'Variable'
[126/133] 7604133644516494613_7604325341783493906 | acc=0.000 (correct=0/0) | 10.50 samp/s
ERROR on 7604138193516055815_7604239035036437780: module 'tensorflow' has no attribute 'Variable'
[127/133] 7604138193516055815_7604239035036437780 | acc=0.000 (correct=0/0) | 10.49 samp/s
ERROR on 7604161389954862337_7604241413802380564: module 'tensorflow' has no attribute 'Variable'
[128/133] 7604161389954862337_7604241413802380564 | acc=0.000 (correct=0/0) | 10.49 samp/s
ERROR on 7604192834694040850_7604553253086383381: module 'tensorflow' has no attribute 'Variable'
[129/133] 7604192834694040850_7604553253086383381 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7604198893898763541_7604200050855775508: module 'tensorflow' has no attribute 'Variable'
[130/133] 7604198893898763541_7604200050855775508 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7604221872682634503_7604297076985351432: module 'tensorflow' has no attribute 'Variable'
[131/133] 7604221872682634503_7604297076985351432 | acc=0.000 (correct=0/0) | 10.48 samp/s
ERROR on 7604250553891310869_7604452867709127956: module 'tensorflow' has no attribute 'Variable'
[132/133] 7604250553891310869_7604452867709127956 | acc=0.000 (correct=0/0) | 10.47 samp/s
ERROR on 7604250992779087122_7604343009810926869: module 'tensorflow' has no attribute 'Variable'
[133/133] 7604250992779087122_7604343009810926869 | acc=0.000 (correct=0/0) | 10.49 samp/s
============================================================
DONE model=molmo_7b
accuracy: 0.0000 (0/0)
per-class: {}
parse_failures: 0
time: 12.7s (10.49 samp/s)
saved -> /mnt/bn/bohanzhainas1/jiashuo/exp/active_cases_eval/molmo_7b.json
Model: molmo_7b
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Model type: molmo
Fine-tuned: False
[SKIP] 7582677198746750229_7602429433449893127 (no frames / failed extraction)
[SKIP] 7583417083719847190_7602908531787910422 (no frames / failed extraction)
[SKIP] 7584037444983459092_7593315053781241106 (no frames / failed extraction)
[SKIP] 7584733886580591880_7592782759857245447 (no frames / failed extraction)
[SKIP] 7585273467772194070_7593446635338763542 (no frames / failed extraction)
[SKIP] 7585621460966788374_7603473500816297238 (no frames / failed extraction)
[SKIP] 7586150189941935382_7593384463275461910 (no frames / failed extraction)
[SKIP] 7586597062821793046_7602700394216688918 (no frames / failed extraction)
[SKIP] 7587882760279231777_7593074162743217430 (no frames / failed extraction)
[SKIP] 7588180930066386198_7603412848949218582 (no frames / failed extraction)
[SKIP] 7588207905518767382_7602720790659992855 (no frames / failed extraction)
[SKIP] 7588859776717671702_7593296535866117378 (no frames / failed extraction)
[SKIP] 7589385196827462934_7603104546189036822 (no frames / failed extraction)
[SKIP] 7589913665097174294_7593039101570354454 (no frames / failed extraction)
[SKIP] 7589960687187725591_7593085871843314966 (no frames / failed extraction)
[SKIP] 7590468019252432150_7593407027062263062 (no frames / failed extraction)
[SKIP] 7591630202673974550_7593064619959405846 (no frames / failed extraction)
[SKIP] 7591836115888246038_7593080065173359894 (no frames / failed extraction)
[SKIP] 7591847133309930773_7593094663347768598 (no frames / failed extraction)
[SKIP] 7591874135001763094_7593341652392070432 (no frames / failed extraction)
[SKIP] 7591889069026659606_7593402590713416983 (no frames / failed extraction)
[SKIP] 7592192610349993224_7603422246249483542 (no frames / failed extraction)
[SKIP] 7592249912092298516_7592692430290423048 (no frames / failed extraction)
[SKIP] 7592292119172156694_7593344515516255510 (no frames / failed extraction)
[SKIP] 7592407303433850134_7593089551699086614 (no frames / failed extraction)
[SKIP] 7592438557940190472_7593320220027112712 (no frames / failed extraction)
[SKIP] 7592447930083118358_7593389460251888918 (no frames / failed extraction)
[SKIP] 7592579018231123222_7593140560538504470 (no frames / failed extraction)
[SKIP] 7592587710313827606_7593083922620189974 (no frames / failed extraction)
[SKIP] 7592606436027338006_7593094886673501462 (no frames / failed extraction)
[SKIP] 7592608349129018646_7593268938440576278 (no frames / failed extraction)
[SKIP] 7592638072890641686_7593021195084172566 (no frames / failed extraction)
[SKIP] 7592665489650846999_7593089848739646742 (no frames / failed extraction)
[SKIP] 7592684356397698336_7593071353121492246 (no frames / failed extraction)
[SKIP] 7592689445384490262_7593027488104795414 (no frames / failed extraction)
[SKIP] 7592706387596135702_7593112206011649302 (no frames / failed extraction)
[SKIP] 7592730883266858262_7593062110196681987 (no frames / failed extraction)
[SKIP] 7592949961030094102_7603492671742545174 (no frames / failed extraction)
[SKIP] 7592962410810461462_7593308664602135830 (no frames / failed extraction)
[SKIP] 7592969692319386902_7593341592568712470 (no frames / failed extraction)
[SKIP] 7592997884329512214_7593429334455618838 (no frames / failed extraction)
[SKIP] 7593023927065038102_7593407584388795670 (no frames / failed extraction)
[SKIP] 7593025085439560982_7593349087630691607 (no frames / failed extraction)
[SKIP] 7593042030754925846_7593114198452882720 (no frames / failed extraction)
[SKIP] 7593061563909606658_7593077514952510742 (no frames / failed extraction)
[SKIP] 7593070251244375318_7593078378312387862 (no frames / failed extraction)
[SKIP] 7593753670903270678_7602706264363142432 (no frames / failed extraction)
[SKIP] 7596084847773420823_7602772755599117590 (no frames / failed extraction)
[SKIP] 7596228877127634198_7602841595464994070 (no frames / failed extraction)
[SKIP] 7597475892209650975_7604100479915805972 (no frames / failed extraction)
[SKIP] 7597495313544400150_7603023470439484694 (no frames / failed extraction)
[SKIP] 7597873882174868758_7603005109261405462 (no frames / failed extraction)
[SKIP] 7598175222746877206_7603007093393624342 (no frames / failed extraction)
[SKIP] 7598472951473704214_7602725579322002710 (no frames / failed extraction)
[SKIP] 7598516119405726996_7603973426964925716 (no frames / failed extraction)
[SKIP] 7599677244956593430_7602460334779108630 (no frames / failed extraction)
[SKIP] 7599719725207145750_7602933646244285718 (no frames / failed extraction)
[SKIP] 7600336749038144788_7602748123613629718 (no frames / failed extraction)
[SKIP] 7600496386005536022_7603075447164914966 (no frames / failed extraction)
[SKIP] 7600813734570773782_7602429316919479574 (no frames / failed extraction)
[SKIP] 7600848290413825302_7602779112352025878 (no frames / failed extraction)
[SKIP] 7601220761646402838_7603018067106499863 (no frames / failed extraction)
[SKIP] 7601510305893534998_7602678212866477335 (no frames / failed extraction)
[SKIP] 7601613870863518994_7603563256304700688 (no frames / failed extraction)
[SKIP] 7601848515752398102_7602678382060571906 (no frames / failed extraction)
[SKIP] 7601913432597712150_7603131540138200342 (no frames / failed extraction)
[SKIP] 7601928286750379286_7602577786364120342 (no frames / failed extraction)
[SKIP] 7601933322196946198_7602754876120042774 (no frames / failed extraction)
[SKIP] 7601998610477190422_7602715371820338454 (no frames / failed extraction)
[SKIP] 7602130594893417735_7604578017720962311 (no frames / failed extraction)
[SKIP] 7602177500176796950_7602678869098827030 (no frames / failed extraction)
[SKIP] 7602247963691289878_7602952772085943574 (no frames / failed extraction)
[SKIP] 7602249398457847062_7602706438569381142 (no frames / failed extraction)
[SKIP] 7602252479589322006_7602710905004018966 (no frames / failed extraction)
[SKIP] 7602260906663300374_7603059444066389270 (no frames / failed extraction)
[SKIP] 7602271814382849302_7602882172822834454 (no frames / failed extraction)
[SKIP] 7602310864481357078_7602647922227907862 (no frames / failed extraction)
[SKIP] 7602312802610531592_7604593851096976660 (no frames / failed extraction)
[SKIP] 7602376297129561366_7602579472767847702 (no frames / failed extraction)
[SKIP] 7602380228945644822_7602998633562197270 (no frames / failed extraction)
[SKIP] 7602389798820564227_7602719197398912278 (no frames / failed extraction)
[SKIP] 7602393643793648918_7602510910665624854 (no frames / failed extraction)
[SKIP] 7602395422874717462_7602982547936611606 (no frames / failed extraction)
[SKIP] 7602402488028876054_7602916875302898976 (no frames / failed extraction)
[SKIP] 7602405874400759047_7602473421427019026 (no frames / failed extraction)
[SKIP] 7602411358860102934_7602747902141664534 (no frames / failed extraction)
[SKIP] 7602418496676498711_7603388889381735712 (no frames / failed extraction)
[SKIP] 7602423244649483542_7603035091178097942 (no frames / failed extraction)
[SKIP] 7602580322869366038_7602742455183707414 (no frames / failed extraction)
[SKIP] 7602594689996410134_7603071616582503702 (no frames / failed extraction)
[SKIP] 7602614247180356885_7602647330415709462 (no frames / failed extraction)
[SKIP] 7602629799265488131_7602679961081761046 (no frames / failed extraction)
[SKIP] 7602663072544722198_7602769847151250710 (no frames / failed extraction)
[SKIP] 7602698902118157590_7603048226572274966 (no frames / failed extraction)
[SKIP] 7602712165912513814_7602756998052039958 (no frames / failed extraction)
[SKIP] 7602716194466073858_7602731198116498711 (no frames / failed extraction)
[SKIP] 7602756717650251030_7603150900827491586 (no frames / failed extraction)
[SKIP] 7602761656724196630_7603069792135826710 (no frames / failed extraction)
[SKIP] 7602776772869983510_7602780713779334422 (no frames / failed extraction)
[SKIP] 7603023017689566486_7603400137217543446 (no frames / failed extraction)
[SKIP] 7603726508284185876_7604510815655300372 (no frames / failed extraction)
[SKIP] 7603982549580385544_7604135707203964181 (no frames / failed extraction)
[SKIP] 7604033909038304532_7604549104487861512 (no frames / failed extraction)
[SKIP] 7604197852574665992_7604504344976755988 (no frames / failed extraction)
[SKIP] 7604249600865701142_7604624761112644882 (no frames / failed extraction)
Loaded 133 samples from /mlx/users/jiashuo.fan/playground/inference/active_cases/frames_cache
Pending: 133
Loading Molmo from /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.52, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
`torch_dtype` is deprecated! Use `dtype` instead!
Loading checkpoint shards: 0%| | 0/7 [00:00<?, ?it/s]
Loading checkpoint shards: 14%|█▍ | 1/7 [00:00<00:05, 1.16it/s]
Loading checkpoint shards: 29%|██▊ | 2/7 [00:01<00:04, 1.16it/s]
Loading checkpoint shards: 43%|████▎ | 3/7 [00:02<00:03, 1.11it/s]
Loading checkpoint shards: 57%|█████▋ | 4/7 [00:03<00:02, 1.08it/s]
Loading checkpoint shards: 71%|███████▏ | 5/7 [00:04<00:01, 1.11it/s]
Loading checkpoint shards: 86%|████████▌ | 6/7 [00:05<00:00, 1.13it/s]
Loading checkpoint shards: 100%|██████████| 7/7 [00:06<00:00, 1.05it/s]
Loading checkpoint shards: 100%|██████████| 7/7 [00:06<00:00, 1.09it/s]
ERROR on 7582864625457384725_7592503137240386834: module 'tensorflow.keras' has no attribute 'backend'
[1/133] 7582864625457384725_7592503137240386834 | acc=0.000 (correct=0/0) | 7.87 samp/s
ERROR on 7583298662386650389_7603817886603300103: module 'tensorflow.keras' has no attribute 'backend'
[2/133] 7583298662386650389_7603817886603300103 | acc=0.000 (correct=0/0) | 8.54 samp/s
ERROR on 7583769463078800643_7603057302106656022: module 'tensorflow.keras' has no attribute 'backend'
[3/133] 7583769463078800643_7603057302106656022 | acc=0.000 (correct=0/0) | 9.53 samp/s
ERROR on 7584143881545977110_7593173975707028758: module 'tensorflow.keras' has no attribute 'backend'
[4/133] 7584143881545977110_7593173975707028758 | acc=0.000 (correct=0/0) | 10.08 samp/s
ERROR on 7584459358449405202_7604337545559674132: module 'tensorflow.keras' has no attribute 'backend'
[5/133] 7584459358449405202_7604337545559674132 | acc=0.000 (correct=0/0) | 10.20 samp/s
ERROR on 7584515446049656086_7592960395527146774: module 'tensorflow.keras' has no attribute 'backend'
[6/133] 7584515446049656086_7592960395527146774 | acc=0.000 (correct=0/0) | 10.07 samp/s
ERROR on 7585337388545723681_7593386207040507169: module 'tensorflow.keras' has no attribute 'backend'
[7/133] 7585337388545723681_7593386207040507169 | acc=0.000 (correct=0/0) | 10.07 samp/s
ERROR on 7586774649753718038_7593408077811207427: module 'tensorflow.keras' has no attribute 'backend'
[8/133] 7586774649753718038_7593408077811207427 | acc=0.000 (correct=0/0) | 10.05 samp/s
ERROR on 7588310732303879432_7595998237404761362: module 'tensorflow.keras' has no attribute 'backend'
[9/133] 7588310732303879432_7595998237404761362 | acc=0.000 (correct=0/0) | 10.07 samp/s
ERROR on 7589478401866616084_7592464439727623445: module 'tensorflow.keras' has no attribute 'backend'
[10/133] 7589478401866616084_7592464439727623445 | acc=0.000 (correct=0/0) | 10.06 samp/s
ERROR on 7589598278531009813_7604139924731809045: module 'tensorflow.keras' has no attribute 'backend'
[11/133] 7589598278531009813_7604139924731809045 | acc=0.000 (correct=0/0) | 10.24 samp/s
ERROR on 7590080459309124886_7602942433009159446: module 'tensorflow.keras' has no attribute 'backend'
[12/133] 7590080459309124886_7602942433009159446 | acc=0.000 (correct=0/0) | 10.16 samp/s
ERROR on 7590122947935735062_7602760876478745878: module 'tensorflow.keras' has no attribute 'backend'
[13/133] 7590122947935735062_7602760876478745878 | acc=0.000 (correct=0/0) | 10.20 samp/s
ERROR on 7590736059038698760_7604236963700329736: module 'tensorflow.keras' has no attribute 'backend'
[14/133] 7590736059038698760_7604236963700329736 | acc=0.000 (correct=0/0) | 10.06 samp/s
ERROR on 7591396054570896660_7602174366645865736: module 'tensorflow.keras' has no attribute 'backend'
[15/133] 7591396054570896660_7602174366645865736 | acc=0.000 (correct=0/0) | 10.08 samp/s
ERROR on 7591603142207474952_7592657430761295124: module 'tensorflow.keras' has no attribute 'backend'
[16/133] 7591603142207474952_7592657430761295124 | acc=0.000 (correct=0/0) | 10.10 samp/s
ERROR on 7591633885876833543_7592914268626930952: module 'tensorflow.keras' has no attribute 'backend'
[17/133] 7591633885876833543_7592914268626930952 | acc=0.000 (correct=0/0) | 10.10 samp/s
ERROR on 7592127916369022215_7592811493075225877: module 'tensorflow.keras' has no attribute 'backend'
[18/133] 7592127916369022215_7592811493075225877 | acc=0.000 (correct=0/0) | 10.03 samp/s
ERROR on 7592292714314566934_7603000520394968342: module 'tensorflow.keras' has no attribute 'backend'
[19/133] 7592292714314566934_7603000520394968342 | acc=0.000 (correct=0/0) | 10.00 samp/s
ERROR on 7592363769301388575_7592557472821382420: module 'tensorflow.keras' has no attribute 'backend'
[20/133] 7592363769301388575_7592557472821382420 | acc=0.000 (correct=0/0) | 10.02 samp/s
ERROR on 7592379393456999688_7592812522206514452: module 'tensorflow.keras' has no attribute 'backend'
[21/133] 7592379393456999688_7592812522206514452 | acc=0.000 (correct=0/0) | 10.01 samp/s
ERROR on 7592395525857627448_7592424707811446034: module 'tensorflow.keras' has no attribute 'backend'
[22/133] 7592395525857627448_7592424707811446034 | acc=0.000 (correct=0/0) | 10.01 samp/s
ERROR on 7592396786472455445_7592776503407037716: module 'tensorflow.keras' has no attribute 'backend'
[23/133] 7592396786472455445_7592776503407037716 | acc=0.000 (correct=0/0) | 10.02 samp/s
ERROR on 7592406759860423943_7592469167501102344: module 'tensorflow.keras' has no attribute 'backend'
[24/133] 7592406759860423943_7592469167501102344 | acc=0.000 (correct=0/0) | 10.01 samp/s
ERROR on 7592439822283705607_7592708834959904001: module 'tensorflow.keras' has no attribute 'backend'
[25/133] 7592439822283705607_7592708834959904001 | acc=0.000 (correct=0/0) | 10.02 samp/s
ERROR on 7592441861743136007_7592686503755582727: module 'tensorflow.keras' has no attribute 'backend'
[26/133] 7592441861743136007_7592686503755582727 | acc=0.000 (correct=0/0) | 10.02 samp/s
ERROR on 7592612029127494934_7593372133087022358: module 'tensorflow.keras' has no attribute 'backend'
[27/133] 7592612029127494934_7593372133087022358 | acc=0.000 (correct=0/0) | 10.03 samp/s
ERROR on 7592621669458480417_7593325946653003030: module 'tensorflow.keras' has no attribute 'backend'
[28/133] 7592621669458480417_7593325946653003030 | acc=0.000 (correct=0/0) | 10.08 samp/s
ERROR on 7592630277092936980_7592934574200605974: module 'tensorflow.keras' has no attribute 'backend'
[29/133] 7592630277092936980_7592934574200605974 | acc=0.000 (correct=0/0) | 10.10 samp/s
ERROR on 7592662940269006113_7593135968987696406: module 'tensorflow.keras' has no attribute 'backend'
[30/133] 7592662940269006113_7593135968987696406 | acc=0.000 (correct=0/0) | 10.11 samp/s
ERROR on 7592695844491644178_7593247873295289622: module 'tensorflow.keras' has no attribute 'backend'
[31/133] 7592695844491644178_7593247873295289622 | acc=0.000 (correct=0/0) | 10.15 samp/s
ERROR on 7592734749563653384_7593673083739802898: module 'tensorflow.keras' has no attribute 'backend'
[32/133] 7592734749563653384_7593673083739802898 | acc=0.000 (correct=0/0) | 10.14 samp/s
ERROR on 7592983455659543830_7593423283710610710: module 'tensorflow.keras' has no attribute 'backend'
[33/133] 7592983455659543830_7593423283710610710 | acc=0.000 (correct=0/0) | 10.15 samp/s
ERROR on 7593033792315575574_7593099150867172630: module 'tensorflow.keras' has no attribute 'backend'
[34/133] 7593033792315575574_7593099150867172630 | acc=0.000 (correct=0/0) | 10.15 samp/s
ERROR on 7593219919349566741_7595664852438338823: module 'tensorflow.keras' has no attribute 'backend'
[35/133] 7593219919349566741_7595664852438338823 | acc=0.000 (correct=0/0) | 10.19 samp/s
ERROR on 7593374120054656276_7604306674219863303: module 'tensorflow.keras' has no attribute 'backend'
[36/133] 7593374120054656276_7604306674219863303 | acc=0.000 (correct=0/0) | 10.21 samp/s
ERROR on 7593727005841968391_7595431144884129035: module 'tensorflow.keras' has no attribute 'backend'
[37/133] 7593727005841968391_7595431144884129035 | acc=0.000 (correct=0/0) | 10.29 samp/s
ERROR on 7593819989833026834_7604240520432520466: module 'tensorflow.keras' has no attribute 'backend'
[38/133] 7593819989833026834_7604240520432520466 | acc=0.000 (correct=0/0) | 10.29 samp/s
ERROR on 7594557794372652309_7604204623724809479: module 'tensorflow.keras' has no attribute 'backend'
[39/133] 7594557794372652309_7604204623724809479 | acc=0.000 (correct=0/0) | 10.29 samp/s
ERROR on 7594990951328746808_7595755849885289748: module 'tensorflow.keras' has no attribute 'backend'
[40/133] 7594990951328746808_7595755849885289748 | acc=0.000 (correct=0/0) | 10.36 samp/s
ERROR on 7595380926247341332_7602338775099837714: module 'tensorflow.keras' has no attribute 'backend'
[41/133] 7595380926247341332_7602338775099837714 | acc=0.000 (correct=0/0) | 10.43 samp/s
ERROR on 7595395129591024904_7595962701738741000: module 'tensorflow.keras' has no attribute 'backend'
[42/133] 7595395129591024904_7595962701738741000 | acc=0.000 (correct=0/0) | 10.50 samp/s
ERROR on 7595407496525663506_7595842450577575179: module 'tensorflow.keras' has no attribute 'backend'
[43/133] 7595407496525663506_7595842450577575179 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7595414619993246983_7595648604866350354: module 'tensorflow.keras' has no attribute 'backend'
[44/133] 7595414619993246983_7595648604866350354 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7595460052346096914_7595599161152605447: module 'tensorflow.keras' has no attribute 'backend'
[45/133] 7595460052346096914_7595599161152605447 | acc=0.000 (correct=0/0) | 10.50 samp/s
ERROR on 7595474031126646034_7595640420671982904: module 'tensorflow.keras' has no attribute 'backend'
[46/133] 7595474031126646034_7595640420671982904 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7595812699439648007_7604520050434854152: module 'tensorflow.keras' has no attribute 'backend'
[47/133] 7595812699439648007_7604520050434854152 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7597044647780764948_7604054478521748757: module 'tensorflow.keras' has no attribute 'backend'
[48/133] 7597044647780764948_7604054478521748757 | acc=0.000 (correct=0/0) | 10.52 samp/s
ERROR on 7597788963738324232_7603763715422407957: module 'tensorflow.keras' has no attribute 'backend'
[49/133] 7597788963738324232_7603763715422407957 | acc=0.000 (correct=0/0) | 10.56 samp/s
ERROR on 7598938266598952210_7604394570947890440: module 'tensorflow.keras' has no attribute 'backend'
[50/133] 7598938266598952210_7604394570947890440 | acc=0.000 (correct=0/0) | 10.55 samp/s
ERROR on 7598981214132849942_7603041768992460054: module 'tensorflow.keras' has no attribute 'backend'
[51/133] 7598981214132849942_7603041768992460054 | acc=0.000 (correct=0/0) | 10.56 samp/s
ERROR on 7599419411836964117_7602328110696090901: module 'tensorflow.keras' has no attribute 'backend'
[52/133] 7599419411836964117_7602328110696090901 | acc=0.000 (correct=0/0) | 10.55 samp/s
ERROR on 7600049951300685076_7602626609417604370: module 'tensorflow.keras' has no attribute 'backend'
[53/133] 7600049951300685076_7602626609417604370 | acc=0.000 (correct=0/0) | 10.56 samp/s
ERROR on 7600071116324900116_7602337842538368276: module 'tensorflow.keras' has no attribute 'backend'
[54/133] 7600071116324900116_7602337842538368276 | acc=0.000 (correct=0/0) | 10.56 samp/s
ERROR on 7600138772541394198_7602907593710767382: module 'tensorflow.keras' has no attribute 'backend'
[55/133] 7600138772541394198_7602907593710767382 | acc=0.000 (correct=0/0) | 10.57 samp/s
ERROR on 7600184266231745810_7603856182331051284: module 'tensorflow.keras' has no attribute 'backend'
[56/133] 7600184266231745810_7603856182331051284 | acc=0.000 (correct=0/0) | 10.58 samp/s
ERROR on 7600267409701833992_7604407914765290759: module 'tensorflow.keras' has no attribute 'backend'
[57/133] 7600267409701833992_7604407914765290759 | acc=0.000 (correct=0/0) | 10.59 samp/s
ERROR on 7600717184851053846_7603923738865782037: module 'tensorflow.keras' has no attribute 'backend'
[58/133] 7600717184851053846_7603923738865782037 | acc=0.000 (correct=0/0) | 10.59 samp/s
ERROR on 7600822923275799828_7604562398480977159: module 'tensorflow.keras' has no attribute 'backend'
[59/133] 7600822923275799828_7604562398480977159 | acc=0.000 (correct=0/0) | 10.60 samp/s
ERROR on 7600850853821418772_7604066449119857941: module 'tensorflow.keras' has no attribute 'backend'
[60/133] 7600850853821418772_7604066449119857941 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7601115694347947294_7604552935992724744: module 'tensorflow.keras' has no attribute 'backend'
[61/133] 7601115694347947294_7604552935992724744 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7601134749763030294_7602752793023204630: module 'tensorflow.keras' has no attribute 'backend'
[62/133] 7601134749763030294_7602752793023204630 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7601312798609591574_7603019182405373206: module 'tensorflow.keras' has no attribute 'backend'
[63/133] 7601312798609591574_7603019182405373206 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7601325066151890196_7602212400758000916: module 'tensorflow.keras' has no attribute 'backend'
[64/133] 7601325066151890196_7602212400758000916 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7601574274960231702_7602694663203523862: module 'tensorflow.keras' has no attribute 'backend'
[65/133] 7601574274960231702_7602694663203523862 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7601579424177343762_7602468045705006356: module 'tensorflow.keras' has no attribute 'backend'
[66/133] 7601579424177343762_7602468045705006356 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7601586470712954115_7603338240136908054: module 'tensorflow.keras' has no attribute 'backend'
[67/133] 7601586470712954115_7603338240136908054 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7601669855993007382_7603430768756477206: module 'tensorflow.keras' has no attribute 'backend'
[68/133] 7601669855993007382_7603430768756477206 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7601674006034402582_7602604985834048790: module 'tensorflow.keras' has no attribute 'backend'
[69/133] 7601674006034402582_7602604985834048790 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7601713212869856533_7602376124693351688: module 'tensorflow.keras' has no attribute 'backend'
[70/133] 7601713212869856533_7602376124693351688 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7601765261200461078_7602681205758102806: module 'tensorflow.keras' has no attribute 'backend'
[71/133] 7601765261200461078_7602681205758102806 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7601949430056602900_7602434611599265044: module 'tensorflow.keras' has no attribute 'backend'
[72/133] 7601949430056602900_7602434611599265044 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7601970606141148438_7603078990038895894: module 'tensorflow.keras' has no attribute 'backend'
[73/133] 7601970606141148438_7603078990038895894 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7602006928537046280_7602420413976546567: module 'tensorflow.keras' has no attribute 'backend'
[74/133] 7602006928537046280_7602420413976546567 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7602009271491988743_7604143486912171271: module 'tensorflow.keras' has no attribute 'backend'
[75/133] 7602009271491988743_7604143486912171271 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7602060282625674517_7602477809264495880: module 'tensorflow.keras' has no attribute 'backend'
[76/133] 7602060282625674517_7602477809264495880 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7602082846525754631_7604271197852929287: module 'tensorflow.keras' has no attribute 'backend'
[77/133] 7602082846525754631_7604271197852929287 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7602143673546984725_7604193599068146951: module 'tensorflow.keras' has no attribute 'backend'
[78/133] 7602143673546984725_7604193599068146951 | acc=0.000 (correct=0/0) | 10.72 samp/s
ERROR on 7602256064427330839_7603098072029138198: module 'tensorflow.keras' has no attribute 'backend'
[79/133] 7602256064427330839_7603098072029138198 | acc=0.000 (correct=0/0) | 10.70 samp/s
ERROR on 7602270984690748694_7603038892320705814: module 'tensorflow.keras' has no attribute 'backend'
[80/133] 7602270984690748694_7603038892320705814 | acc=0.000 (correct=0/0) | 10.70 samp/s
ERROR on 7602366022103878929_7602669638551391496: module 'tensorflow.keras' has no attribute 'backend'
[81/133] 7602366022103878929_7602669638551391496 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7602382902457863445_7604191296412159252: module 'tensorflow.keras' has no attribute 'backend'
[82/133] 7602382902457863445_7604191296412159252 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7602700620830625046_7602866165395803414: module 'tensorflow.keras' has no attribute 'backend'
[83/133] 7602700620830625046_7602866165395803414 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7602708595221875986_7604355289906826504: module 'tensorflow.keras' has no attribute 'backend'
[84/133] 7602708595221875986_7604355289906826504 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7602725486715817219_7603481735279512854: module 'tensorflow.keras' has no attribute 'backend'
[85/133] 7602725486715817219_7603481735279512854 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7602729554339253526_7603093834116943126: module 'tensorflow.keras' has no attribute 'backend'
[86/133] 7602729554339253526_7603093834116943126 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7602843396088106262_7602995295437278486: module 'tensorflow.keras' has no attribute 'backend'
[87/133] 7602843396088106262_7602995295437278486 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7602910354212932884_7603540991643061512: module 'tensorflow.keras' has no attribute 'backend'
[88/133] 7602910354212932884_7603540991643061512 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7602915847211977992_7604398958395559186: module 'tensorflow.keras' has no attribute 'backend'
[89/133] 7602915847211977992_7604398958395559186 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7602946751540071701_7604027006077963528: module 'tensorflow.keras' has no attribute 'backend'
[90/133] 7602946751540071701_7604027006077963528 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7602984837502307606_7603479345079815446: module 'tensorflow.keras' has no attribute 'backend'
[91/133] 7602984837502307606_7603479345079815446 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603022279718538516_7604021216944360712: module 'tensorflow.keras' has no attribute 'backend'
[92/133] 7603022279718538516_7604021216944360712 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603057662082731286_7603508048769993987: module 'tensorflow.keras' has no attribute 'backend'
[93/133] 7603057662082731286_7603508048769993987 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603072200341507329_7604142589331115280: module 'tensorflow.keras' has no attribute 'backend'
[94/133] 7603072200341507329_7604142589331115280 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7603075574315158806_7603118367762910486: module 'tensorflow.keras' has no attribute 'backend'
[95/133] 7603075574315158806_7603118367762910486 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7603079625559887125_7603753412768910612: module 'tensorflow.keras' has no attribute 'backend'
[96/133] 7603079625559887125_7603753412768910612 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603090622093757718_7603453990323457303: module 'tensorflow.keras' has no attribute 'backend'
[97/133] 7603090622093757718_7603453990323457303 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603114436525870358_7603434420065848598: module 'tensorflow.keras' has no attribute 'backend'
[98/133] 7603114436525870358_7603434420065848598 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603118709992967446_7603141944167976214: module 'tensorflow.keras' has no attribute 'backend'
[99/133] 7603118709992967446_7603141944167976214 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7603138308822076692_7603806260097453332: module 'tensorflow.keras' has no attribute 'backend'
[100/133] 7603138308822076692_7603806260097453332 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7603146769148513566_7604566499847687445: module 'tensorflow.keras' has no attribute 'backend'
[101/133] 7603146769148513566_7604566499847687445 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7603165062764711186_7603407222311292181: module 'tensorflow.keras' has no attribute 'backend'
[102/133] 7603165062764711186_7603407222311292181 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7603185260158881045_7603447262575906068: module 'tensorflow.keras' has no attribute 'backend'
[103/133] 7603185260158881045_7603447262575906068 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7603389036920704264_7604264676964207892: module 'tensorflow.keras' has no attribute 'backend'
[104/133] 7603389036920704264_7604264676964207892 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7603529071628225800_7604036865682951445: module 'tensorflow.keras' has no attribute 'backend'
[105/133] 7603529071628225800_7604036865682951445 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7603529734223383828_7604261847734275335: module 'tensorflow.keras' has no attribute 'backend'
[106/133] 7603529734223383828_7604261847734275335 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603597531121011986_7604027676130594055: module 'tensorflow.keras' has no attribute 'backend'
[107/133] 7603597531121011986_7604027676130594055 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7603814056583023893_7603967990312307975: module 'tensorflow.keras' has no attribute 'backend'
[108/133] 7603814056583023893_7603967990312307975 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7603818369183190303_7604234434702806280: module 'tensorflow.keras' has no attribute 'backend'
[109/133] 7603818369183190303_7604234434702806280 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7603852215660465416_7604220286849813781: module 'tensorflow.keras' has no attribute 'backend'
[110/133] 7603852215660465416_7604220286849813781 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7603876731857931540_7604241667603893524: module 'tensorflow.keras' has no attribute 'backend'
[111/133] 7603876731857931540_7604241667603893524 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603884493329550609_7604041815758490901: module 'tensorflow.keras' has no attribute 'backend'
[112/133] 7603884493329550609_7604041815758490901 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7603902943246503175_7604332451615247623: module 'tensorflow.keras' has no attribute 'backend'
[113/133] 7603902943246503175_7604332451615247623 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7603921933381455125_7604079730609982741: module 'tensorflow.keras' has no attribute 'backend'
[114/133] 7603921933381455125_7604079730609982741 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7603932047878442257_7603978976616336661: module 'tensorflow.keras' has no attribute 'backend'
[115/133] 7603932047878442257_7603978976616336661 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7603947476332186901_7604063261130034433: module 'tensorflow.keras' has no attribute 'backend'
[116/133] 7603947476332186901_7604063261130034433 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7603977624448175368_7604464746045230354: module 'tensorflow.keras' has no attribute 'backend'
[117/133] 7603977624448175368_7604464746045230354 | acc=0.000 (correct=0/0) | 10.73 samp/s
ERROR on 7603979300127214866_7604577411136621844: module 'tensorflow.keras' has no attribute 'backend'
[118/133] 7603979300127214866_7604577411136621844 | acc=0.000 (correct=0/0) | 10.73 samp/s
ERROR on 7603993350802394389_7604087376469642517: module 'tensorflow.keras' has no attribute 'backend'
[119/133] 7603993350802394389_7604087376469642517 | acc=0.000 (correct=0/0) | 10.72 samp/s
ERROR on 7604019342124043540_7604368885785070868: module 'tensorflow.keras' has no attribute 'backend'
[120/133] 7604019342124043540_7604368885785070868 | acc=0.000 (correct=0/0) | 10.72 samp/s
ERROR on 7604023995578453256_7604406022966463752: module 'tensorflow.keras' has no attribute 'backend'
[121/133] 7604023995578453256_7604406022966463752 | acc=0.000 (correct=0/0) | 10.71 samp/s
ERROR on 7604071937224199445_7604486246018075922: module 'tensorflow.keras' has no attribute 'backend'
[122/133] 7604071937224199445_7604486246018075922 | acc=0.000 (correct=0/0) | 10.71 samp/s
ERROR on 7604117742802701576_7604523788599938321: module 'tensorflow.keras' has no attribute 'backend'
[123/133] 7604117742802701576_7604523788599938321 | acc=0.000 (correct=0/0) | 10.71 samp/s
ERROR on 7604119657179630856_7604130070600437010: module 'tensorflow.keras' has no attribute 'backend'
[124/133] 7604119657179630856_7604130070600437010 | acc=0.000 (correct=0/0) | 10.71 samp/s
ERROR on 7604120387240234260_7604264832187108629: module 'tensorflow.keras' has no attribute 'backend'
[125/133] 7604120387240234260_7604264832187108629 | acc=0.000 (correct=0/0) | 10.70 samp/s
ERROR on 7604133644516494613_7604325341783493906: module 'tensorflow.keras' has no attribute 'backend'
[126/133] 7604133644516494613_7604325341783493906 | acc=0.000 (correct=0/0) | 10.70 samp/s
ERROR on 7604138193516055815_7604239035036437780: module 'tensorflow.keras' has no attribute 'backend'
[127/133] 7604138193516055815_7604239035036437780 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604161389954862337_7604241413802380564: module 'tensorflow.keras' has no attribute 'backend'
[128/133] 7604161389954862337_7604241413802380564 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604192834694040850_7604553253086383381: module 'tensorflow.keras' has no attribute 'backend'
[129/133] 7604192834694040850_7604553253086383381 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604198893898763541_7604200050855775508: module 'tensorflow.keras' has no attribute 'backend'
[130/133] 7604198893898763541_7604200050855775508 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604221872682634503_7604297076985351432: module 'tensorflow.keras' has no attribute 'backend'
[131/133] 7604221872682634503_7604297076985351432 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604250553891310869_7604452867709127956: module 'tensorflow.keras' has no attribute 'backend'
[132/133] 7604250553891310869_7604452867709127956 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7604250992779087122_7604343009810926869: module 'tensorflow.keras' has no attribute 'backend'
[133/133] 7604250992779087122_7604343009810926869 | acc=0.000 (correct=0/0) | 10.71 samp/s
============================================================
DONE model=molmo_7b
accuracy: 0.0000 (0/0)
per-class: {}
parse_failures: 0
time: 12.4s (10.70 samp/s)
saved -> /mnt/bn/bohanzhainas1/jiashuo/exp/active_cases_eval/molmo_7b.json
Model: molmo_7b
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Model type: molmo
Fine-tuned: False
[SKIP] 7582677198746750229_7602429433449893127 (no frames / failed extraction)
[SKIP] 7583417083719847190_7602908531787910422 (no frames / failed extraction)
[SKIP] 7584037444983459092_7593315053781241106 (no frames / failed extraction)
[SKIP] 7584733886580591880_7592782759857245447 (no frames / failed extraction)
[SKIP] 7585273467772194070_7593446635338763542 (no frames / failed extraction)
[SKIP] 7585621460966788374_7603473500816297238 (no frames / failed extraction)
[SKIP] 7586150189941935382_7593384463275461910 (no frames / failed extraction)
[SKIP] 7586597062821793046_7602700394216688918 (no frames / failed extraction)
[SKIP] 7587882760279231777_7593074162743217430 (no frames / failed extraction)
[SKIP] 7588180930066386198_7603412848949218582 (no frames / failed extraction)
[SKIP] 7588207905518767382_7602720790659992855 (no frames / failed extraction)
[SKIP] 7588859776717671702_7593296535866117378 (no frames / failed extraction)
[SKIP] 7589385196827462934_7603104546189036822 (no frames / failed extraction)
[SKIP] 7589913665097174294_7593039101570354454 (no frames / failed extraction)
[SKIP] 7589960687187725591_7593085871843314966 (no frames / failed extraction)
[SKIP] 7590468019252432150_7593407027062263062 (no frames / failed extraction)
[SKIP] 7591630202673974550_7593064619959405846 (no frames / failed extraction)
[SKIP] 7591836115888246038_7593080065173359894 (no frames / failed extraction)
[SKIP] 7591847133309930773_7593094663347768598 (no frames / failed extraction)
[SKIP] 7591874135001763094_7593341652392070432 (no frames / failed extraction)
[SKIP] 7591889069026659606_7593402590713416983 (no frames / failed extraction)
[SKIP] 7592192610349993224_7603422246249483542 (no frames / failed extraction)
[SKIP] 7592249912092298516_7592692430290423048 (no frames / failed extraction)
[SKIP] 7592292119172156694_7593344515516255510 (no frames / failed extraction)
[SKIP] 7592407303433850134_7593089551699086614 (no frames / failed extraction)
[SKIP] 7592438557940190472_7593320220027112712 (no frames / failed extraction)
[SKIP] 7592447930083118358_7593389460251888918 (no frames / failed extraction)
[SKIP] 7592579018231123222_7593140560538504470 (no frames / failed extraction)
[SKIP] 7592587710313827606_7593083922620189974 (no frames / failed extraction)
[SKIP] 7592606436027338006_7593094886673501462 (no frames / failed extraction)
[SKIP] 7592608349129018646_7593268938440576278 (no frames / failed extraction)
[SKIP] 7592638072890641686_7593021195084172566 (no frames / failed extraction)
[SKIP] 7592665489650846999_7593089848739646742 (no frames / failed extraction)
[SKIP] 7592684356397698336_7593071353121492246 (no frames / failed extraction)
[SKIP] 7592689445384490262_7593027488104795414 (no frames / failed extraction)
[SKIP] 7592706387596135702_7593112206011649302 (no frames / failed extraction)
[SKIP] 7592730883266858262_7593062110196681987 (no frames / failed extraction)
[SKIP] 7592949961030094102_7603492671742545174 (no frames / failed extraction)
[SKIP] 7592962410810461462_7593308664602135830 (no frames / failed extraction)
[SKIP] 7592969692319386902_7593341592568712470 (no frames / failed extraction)
[SKIP] 7592997884329512214_7593429334455618838 (no frames / failed extraction)
[SKIP] 7593023927065038102_7593407584388795670 (no frames / failed extraction)
[SKIP] 7593025085439560982_7593349087630691607 (no frames / failed extraction)
[SKIP] 7593042030754925846_7593114198452882720 (no frames / failed extraction)
[SKIP] 7593061563909606658_7593077514952510742 (no frames / failed extraction)
[SKIP] 7593070251244375318_7593078378312387862 (no frames / failed extraction)
[SKIP] 7593753670903270678_7602706264363142432 (no frames / failed extraction)
[SKIP] 7596084847773420823_7602772755599117590 (no frames / failed extraction)
[SKIP] 7596228877127634198_7602841595464994070 (no frames / failed extraction)
[SKIP] 7597475892209650975_7604100479915805972 (no frames / failed extraction)
[SKIP] 7597495313544400150_7603023470439484694 (no frames / failed extraction)
[SKIP] 7597873882174868758_7603005109261405462 (no frames / failed extraction)
[SKIP] 7598175222746877206_7603007093393624342 (no frames / failed extraction)
[SKIP] 7598472951473704214_7602725579322002710 (no frames / failed extraction)
[SKIP] 7598516119405726996_7603973426964925716 (no frames / failed extraction)
[SKIP] 7599677244956593430_7602460334779108630 (no frames / failed extraction)
[SKIP] 7599719725207145750_7602933646244285718 (no frames / failed extraction)
[SKIP] 7600336749038144788_7602748123613629718 (no frames / failed extraction)
[SKIP] 7600496386005536022_7603075447164914966 (no frames / failed extraction)
[SKIP] 7600813734570773782_7602429316919479574 (no frames / failed extraction)
[SKIP] 7600848290413825302_7602779112352025878 (no frames / failed extraction)
[SKIP] 7601220761646402838_7603018067106499863 (no frames / failed extraction)
[SKIP] 7601510305893534998_7602678212866477335 (no frames / failed extraction)
[SKIP] 7601613870863518994_7603563256304700688 (no frames / failed extraction)
[SKIP] 7601848515752398102_7602678382060571906 (no frames / failed extraction)
[SKIP] 7601913432597712150_7603131540138200342 (no frames / failed extraction)
[SKIP] 7601928286750379286_7602577786364120342 (no frames / failed extraction)
[SKIP] 7601933322196946198_7602754876120042774 (no frames / failed extraction)
[SKIP] 7601998610477190422_7602715371820338454 (no frames / failed extraction)
[SKIP] 7602130594893417735_7604578017720962311 (no frames / failed extraction)
[SKIP] 7602177500176796950_7602678869098827030 (no frames / failed extraction)
[SKIP] 7602247963691289878_7602952772085943574 (no frames / failed extraction)
[SKIP] 7602249398457847062_7602706438569381142 (no frames / failed extraction)
[SKIP] 7602252479589322006_7602710905004018966 (no frames / failed extraction)
[SKIP] 7602260906663300374_7603059444066389270 (no frames / failed extraction)
[SKIP] 7602271814382849302_7602882172822834454 (no frames / failed extraction)
[SKIP] 7602310864481357078_7602647922227907862 (no frames / failed extraction)
[SKIP] 7602312802610531592_7604593851096976660 (no frames / failed extraction)
[SKIP] 7602376297129561366_7602579472767847702 (no frames / failed extraction)
[SKIP] 7602380228945644822_7602998633562197270 (no frames / failed extraction)
[SKIP] 7602389798820564227_7602719197398912278 (no frames / failed extraction)
[SKIP] 7602393643793648918_7602510910665624854 (no frames / failed extraction)
[SKIP] 7602395422874717462_7602982547936611606 (no frames / failed extraction)
[SKIP] 7602402488028876054_7602916875302898976 (no frames / failed extraction)
[SKIP] 7602405874400759047_7602473421427019026 (no frames / failed extraction)
[SKIP] 7602411358860102934_7602747902141664534 (no frames / failed extraction)
[SKIP] 7602418496676498711_7603388889381735712 (no frames / failed extraction)
[SKIP] 7602423244649483542_7603035091178097942 (no frames / failed extraction)
[SKIP] 7602580322869366038_7602742455183707414 (no frames / failed extraction)
[SKIP] 7602594689996410134_7603071616582503702 (no frames / failed extraction)
[SKIP] 7602614247180356885_7602647330415709462 (no frames / failed extraction)
[SKIP] 7602629799265488131_7602679961081761046 (no frames / failed extraction)
[SKIP] 7602663072544722198_7602769847151250710 (no frames / failed extraction)
[SKIP] 7602698902118157590_7603048226572274966 (no frames / failed extraction)
[SKIP] 7602712165912513814_7602756998052039958 (no frames / failed extraction)
[SKIP] 7602716194466073858_7602731198116498711 (no frames / failed extraction)
[SKIP] 7602756717650251030_7603150900827491586 (no frames / failed extraction)
[SKIP] 7602761656724196630_7603069792135826710 (no frames / failed extraction)
[SKIP] 7602776772869983510_7602780713779334422 (no frames / failed extraction)
[SKIP] 7603023017689566486_7603400137217543446 (no frames / failed extraction)
[SKIP] 7603726508284185876_7604510815655300372 (no frames / failed extraction)
[SKIP] 7603982549580385544_7604135707203964181 (no frames / failed extraction)
[SKIP] 7604033909038304532_7604549104487861512 (no frames / failed extraction)
[SKIP] 7604197852574665992_7604504344976755988 (no frames / failed extraction)
[SKIP] 7604249600865701142_7604624761112644882 (no frames / failed extraction)
Loaded 133 samples from /mlx/users/jiashuo.fan/playground/inference/active_cases/frames_cache
Pending: 133
Loading Molmo from /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.52, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
`torch_dtype` is deprecated! Use `dtype` instead!
Loading checkpoint shards: 0%| | 0/7 [00:00<?, ?it/s]
Loading checkpoint shards: 14%|█▍ | 1/7 [00:00<00:05, 1.17it/s]
Loading checkpoint shards: 29%|██▊ | 2/7 [00:01<00:04, 1.16it/s]
Loading checkpoint shards: 43%|████▎ | 3/7 [00:02<00:03, 1.11it/s]
Loading checkpoint shards: 57%|█████▋ | 4/7 [00:03<00:02, 1.10it/s]
Loading checkpoint shards: 71%|███████▏ | 5/7 [00:04<00:01, 1.13it/s]
Loading checkpoint shards: 86%|████████▌ | 6/7 [00:05<00:00, 1.15it/s]
Loading checkpoint shards: 100%|██████████| 7/7 [00:06<00:00, 1.08it/s]
Loading checkpoint shards: 100%|██████████| 7/7 [00:06<00:00, 1.11it/s]
ERROR on 7582864625457384725_7592503137240386834: module 'tensorflow' has no attribute 'is_tensor'
[1/133] 7582864625457384725_7592503137240386834 | acc=0.000 (correct=0/0) | 7.55 samp/s
ERROR on 7583298662386650389_7603817886603300103: module 'tensorflow' has no attribute 'is_tensor'
[2/133] 7583298662386650389_7603817886603300103 | acc=0.000 (correct=0/0) | 8.39 samp/s
ERROR on 7583769463078800643_7603057302106656022: module 'tensorflow' has no attribute 'is_tensor'
[3/133] 7583769463078800643_7603057302106656022 | acc=0.000 (correct=0/0) | 9.45 samp/s
ERROR on 7584143881545977110_7593173975707028758: module 'tensorflow' has no attribute 'is_tensor'
[4/133] 7584143881545977110_7593173975707028758 | acc=0.000 (correct=0/0) | 10.18 samp/s
ERROR on 7584459358449405202_7604337545559674132: module 'tensorflow' has no attribute 'is_tensor'
[5/133] 7584459358449405202_7604337545559674132 | acc=0.000 (correct=0/0) | 10.35 samp/s
ERROR on 7584515446049656086_7592960395527146774: module 'tensorflow' has no attribute 'is_tensor'
[6/133] 7584515446049656086_7592960395527146774 | acc=0.000 (correct=0/0) | 10.22 samp/s
ERROR on 7585337388545723681_7593386207040507169: module 'tensorflow' has no attribute 'is_tensor'
[7/133] 7585337388545723681_7593386207040507169 | acc=0.000 (correct=0/0) | 10.22 samp/s
ERROR on 7586774649753718038_7593408077811207427: module 'tensorflow' has no attribute 'is_tensor'
[8/133] 7586774649753718038_7593408077811207427 | acc=0.000 (correct=0/0) | 10.21 samp/s
ERROR on 7588310732303879432_7595998237404761362: module 'tensorflow' has no attribute 'is_tensor'
[9/133] 7588310732303879432_7595998237404761362 | acc=0.000 (correct=0/0) | 10.21 samp/s
ERROR on 7589478401866616084_7592464439727623445: module 'tensorflow' has no attribute 'is_tensor'
[10/133] 7589478401866616084_7592464439727623445 | acc=0.000 (correct=0/0) | 10.23 samp/s
ERROR on 7589598278531009813_7604139924731809045: module 'tensorflow' has no attribute 'is_tensor'
[11/133] 7589598278531009813_7604139924731809045 | acc=0.000 (correct=0/0) | 10.40 samp/s
ERROR on 7590080459309124886_7602942433009159446: module 'tensorflow' has no attribute 'is_tensor'
[12/133] 7590080459309124886_7602942433009159446 | acc=0.000 (correct=0/0) | 10.30 samp/s
ERROR on 7590122947935735062_7602760876478745878: module 'tensorflow' has no attribute 'is_tensor'
[13/133] 7590122947935735062_7602760876478745878 | acc=0.000 (correct=0/0) | 10.32 samp/s
ERROR on 7590736059038698760_7604236963700329736: module 'tensorflow' has no attribute 'is_tensor'
[14/133] 7590736059038698760_7604236963700329736 | acc=0.000 (correct=0/0) | 10.18 samp/s
ERROR on 7591396054570896660_7602174366645865736: module 'tensorflow' has no attribute 'is_tensor'
[15/133] 7591396054570896660_7602174366645865736 | acc=0.000 (correct=0/0) | 10.18 samp/s
ERROR on 7591603142207474952_7592657430761295124: module 'tensorflow' has no attribute 'is_tensor'
[16/133] 7591603142207474952_7592657430761295124 | acc=0.000 (correct=0/0) | 10.20 samp/s
ERROR on 7591633885876833543_7592914268626930952: module 'tensorflow' has no attribute 'is_tensor'
[17/133] 7591633885876833543_7592914268626930952 | acc=0.000 (correct=0/0) | 10.19 samp/s
ERROR on 7592127916369022215_7592811493075225877: module 'tensorflow' has no attribute 'is_tensor'
[18/133] 7592127916369022215_7592811493075225877 | acc=0.000 (correct=0/0) | 10.12 samp/s
ERROR on 7592292714314566934_7603000520394968342: module 'tensorflow' has no attribute 'is_tensor'
[19/133] 7592292714314566934_7603000520394968342 | acc=0.000 (correct=0/0) | 10.09 samp/s
ERROR on 7592363769301388575_7592557472821382420: module 'tensorflow' has no attribute 'is_tensor'
[20/133] 7592363769301388575_7592557472821382420 | acc=0.000 (correct=0/0) | 10.11 samp/s
ERROR on 7592379393456999688_7592812522206514452: module 'tensorflow' has no attribute 'is_tensor'
[21/133] 7592379393456999688_7592812522206514452 | acc=0.000 (correct=0/0) | 10.09 samp/s
ERROR on 7592395525857627448_7592424707811446034: module 'tensorflow' has no attribute 'is_tensor'
[22/133] 7592395525857627448_7592424707811446034 | acc=0.000 (correct=0/0) | 10.09 samp/s
ERROR on 7592396786472455445_7592776503407037716: module 'tensorflow' has no attribute 'is_tensor'
[23/133] 7592396786472455445_7592776503407037716 | acc=0.000 (correct=0/0) | 10.09 samp/s
ERROR on 7592406759860423943_7592469167501102344: module 'tensorflow' has no attribute 'is_tensor'
[24/133] 7592406759860423943_7592469167501102344 | acc=0.000 (correct=0/0) | 10.09 samp/s
ERROR on 7592439822283705607_7592708834959904001: module 'tensorflow' has no attribute 'is_tensor'
[25/133] 7592439822283705607_7592708834959904001 | acc=0.000 (correct=0/0) | 10.10 samp/s
ERROR on 7592441861743136007_7592686503755582727: module 'tensorflow' has no attribute 'is_tensor'
[26/133] 7592441861743136007_7592686503755582727 | acc=0.000 (correct=0/0) | 10.08 samp/s
ERROR on 7592612029127494934_7593372133087022358: module 'tensorflow' has no attribute 'is_tensor'
[27/133] 7592612029127494934_7593372133087022358 | acc=0.000 (correct=0/0) | 10.08 samp/s
ERROR on 7592621669458480417_7593325946653003030: module 'tensorflow' has no attribute 'is_tensor'
[28/133] 7592621669458480417_7593325946653003030 | acc=0.000 (correct=0/0) | 10.12 samp/s
ERROR on 7592630277092936980_7592934574200605974: module 'tensorflow' has no attribute 'is_tensor'
[29/133] 7592630277092936980_7592934574200605974 | acc=0.000 (correct=0/0) | 10.14 samp/s
ERROR on 7592662940269006113_7593135968987696406: module 'tensorflow' has no attribute 'is_tensor'
[30/133] 7592662940269006113_7593135968987696406 | acc=0.000 (correct=0/0) | 10.16 samp/s
ERROR on 7592695844491644178_7593247873295289622: module 'tensorflow' has no attribute 'is_tensor'
[31/133] 7592695844491644178_7593247873295289622 | acc=0.000 (correct=0/0) | 10.20 samp/s
ERROR on 7592734749563653384_7593673083739802898: module 'tensorflow' has no attribute 'is_tensor'
[32/133] 7592734749563653384_7593673083739802898 | acc=0.000 (correct=0/0) | 10.18 samp/s
ERROR on 7592983455659543830_7593423283710610710: module 'tensorflow' has no attribute 'is_tensor'
[33/133] 7592983455659543830_7593423283710610710 | acc=0.000 (correct=0/0) | 10.20 samp/s
ERROR on 7593033792315575574_7593099150867172630: module 'tensorflow' has no attribute 'is_tensor'
[34/133] 7593033792315575574_7593099150867172630 | acc=0.000 (correct=0/0) | 10.21 samp/s
ERROR on 7593219919349566741_7595664852438338823: module 'tensorflow' has no attribute 'is_tensor'
[35/133] 7593219919349566741_7595664852438338823 | acc=0.000 (correct=0/0) | 10.23 samp/s
ERROR on 7593374120054656276_7604306674219863303: module 'tensorflow' has no attribute 'is_tensor'
[36/133] 7593374120054656276_7604306674219863303 | acc=0.000 (correct=0/0) | 10.25 samp/s
ERROR on 7593727005841968391_7595431144884129035: module 'tensorflow' has no attribute 'is_tensor'
[37/133] 7593727005841968391_7595431144884129035 | acc=0.000 (correct=0/0) | 10.32 samp/s
ERROR on 7593819989833026834_7604240520432520466: module 'tensorflow' has no attribute 'is_tensor'
[38/133] 7593819989833026834_7604240520432520466 | acc=0.000 (correct=0/0) | 10.32 samp/s
ERROR on 7594557794372652309_7604204623724809479: module 'tensorflow' has no attribute 'is_tensor'
[39/133] 7594557794372652309_7604204623724809479 | acc=0.000 (correct=0/0) | 10.32 samp/s
ERROR on 7594990951328746808_7595755849885289748: module 'tensorflow' has no attribute 'is_tensor'
[40/133] 7594990951328746808_7595755849885289748 | acc=0.000 (correct=0/0) | 10.38 samp/s
ERROR on 7595380926247341332_7602338775099837714: module 'tensorflow' has no attribute 'is_tensor'
[41/133] 7595380926247341332_7602338775099837714 | acc=0.000 (correct=0/0) | 10.44 samp/s
ERROR on 7595395129591024904_7595962701738741000: module 'tensorflow' has no attribute 'is_tensor'
[42/133] 7595395129591024904_7595962701738741000 | acc=0.000 (correct=0/0) | 10.49 samp/s
ERROR on 7595407496525663506_7595842450577575179: module 'tensorflow' has no attribute 'is_tensor'
[43/133] 7595407496525663506_7595842450577575179 | acc=0.000 (correct=0/0) | 10.50 samp/s
ERROR on 7595414619993246983_7595648604866350354: module 'tensorflow' has no attribute 'is_tensor'
[44/133] 7595414619993246983_7595648604866350354 | acc=0.000 (correct=0/0) | 10.50 samp/s
ERROR on 7595460052346096914_7595599161152605447: module 'tensorflow' has no attribute 'is_tensor'
[45/133] 7595460052346096914_7595599161152605447 | acc=0.000 (correct=0/0) | 10.51 samp/s
ERROR on 7595474031126646034_7595640420671982904: module 'tensorflow' has no attribute 'is_tensor'
[46/133] 7595474031126646034_7595640420671982904 | acc=0.000 (correct=0/0) | 10.46 samp/s
ERROR on 7595812699439648007_7604520050434854152: module 'tensorflow' has no attribute 'is_tensor'
[47/133] 7595812699439648007_7604520050434854152 | acc=0.000 (correct=0/0) | 10.45 samp/s
ERROR on 7597044647780764948_7604054478521748757: module 'tensorflow' has no attribute 'is_tensor'
[48/133] 7597044647780764948_7604054478521748757 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7597788963738324232_7603763715422407957: module 'tensorflow' has no attribute 'is_tensor'
[49/133] 7597788963738324232_7603763715422407957 | acc=0.000 (correct=0/0) | 10.56 samp/s
ERROR on 7598938266598952210_7604394570947890440: module 'tensorflow' has no attribute 'is_tensor'
[50/133] 7598938266598952210_7604394570947890440 | acc=0.000 (correct=0/0) | 10.56 samp/s
ERROR on 7598981214132849942_7603041768992460054: module 'tensorflow' has no attribute 'is_tensor'
[51/133] 7598981214132849942_7603041768992460054 | acc=0.000 (correct=0/0) | 10.56 samp/s
ERROR on 7599419411836964117_7602328110696090901: module 'tensorflow' has no attribute 'is_tensor'
[52/133] 7599419411836964117_7602328110696090901 | acc=0.000 (correct=0/0) | 10.54 samp/s
ERROR on 7600049951300685076_7602626609417604370: module 'tensorflow' has no attribute 'is_tensor'
[53/133] 7600049951300685076_7602626609417604370 | acc=0.000 (correct=0/0) | 10.54 samp/s
ERROR on 7600071116324900116_7602337842538368276: module 'tensorflow' has no attribute 'is_tensor'
[54/133] 7600071116324900116_7602337842538368276 | acc=0.000 (correct=0/0) | 10.54 samp/s
ERROR on 7600138772541394198_7602907593710767382: module 'tensorflow' has no attribute 'is_tensor'
[55/133] 7600138772541394198_7602907593710767382 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7600184266231745810_7603856182331051284: module 'tensorflow' has no attribute 'is_tensor'
[56/133] 7600184266231745810_7603856182331051284 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7600267409701833992_7604407914765290759: module 'tensorflow' has no attribute 'is_tensor'
[57/133] 7600267409701833992_7604407914765290759 | acc=0.000 (correct=0/0) | 10.54 samp/s
ERROR on 7600717184851053846_7603923738865782037: module 'tensorflow' has no attribute 'is_tensor'
[58/133] 7600717184851053846_7603923738865782037 | acc=0.000 (correct=0/0) | 10.53 samp/s
ERROR on 7600822923275799828_7604562398480977159: module 'tensorflow' has no attribute 'is_tensor'
[59/133] 7600822923275799828_7604562398480977159 | acc=0.000 (correct=0/0) | 10.55 samp/s
ERROR on 7600850853821418772_7604066449119857941: module 'tensorflow' has no attribute 'is_tensor'
[60/133] 7600850853821418772_7604066449119857941 | acc=0.000 (correct=0/0) | 10.58 samp/s
ERROR on 7601115694347947294_7604552935992724744: module 'tensorflow' has no attribute 'is_tensor'
[61/133] 7601115694347947294_7604552935992724744 | acc=0.000 (correct=0/0) | 10.59 samp/s
ERROR on 7601134749763030294_7602752793023204630: module 'tensorflow' has no attribute 'is_tensor'
[62/133] 7601134749763030294_7602752793023204630 | acc=0.000 (correct=0/0) | 10.58 samp/s
ERROR on 7601312798609591574_7603019182405373206: module 'tensorflow' has no attribute 'is_tensor'
[63/133] 7601312798609591574_7603019182405373206 | acc=0.000 (correct=0/0) | 10.57 samp/s
ERROR on 7601325066151890196_7602212400758000916: module 'tensorflow' has no attribute 'is_tensor'
[64/133] 7601325066151890196_7602212400758000916 | acc=0.000 (correct=0/0) | 10.59 samp/s
ERROR on 7601574274960231702_7602694663203523862: module 'tensorflow' has no attribute 'is_tensor'
[65/133] 7601574274960231702_7602694663203523862 | acc=0.000 (correct=0/0) | 10.59 samp/s
ERROR on 7601579424177343762_7602468045705006356: module 'tensorflow' has no attribute 'is_tensor'
[66/133] 7601579424177343762_7602468045705006356 | acc=0.000 (correct=0/0) | 10.58 samp/s
ERROR on 7601586470712954115_7603338240136908054: module 'tensorflow' has no attribute 'is_tensor'
[67/133] 7601586470712954115_7603338240136908054 | acc=0.000 (correct=0/0) | 10.58 samp/s
ERROR on 7601669855993007382_7603430768756477206: module 'tensorflow' has no attribute 'is_tensor'
[68/133] 7601669855993007382_7603430768756477206 | acc=0.000 (correct=0/0) | 10.56 samp/s
ERROR on 7601674006034402582_7602604985834048790: module 'tensorflow' has no attribute 'is_tensor'
[69/133] 7601674006034402582_7602604985834048790 | acc=0.000 (correct=0/0) | 10.60 samp/s
ERROR on 7601713212869856533_7602376124693351688: module 'tensorflow' has no attribute 'is_tensor'
[70/133] 7601713212869856533_7602376124693351688 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7601765261200461078_7602681205758102806: module 'tensorflow' has no attribute 'is_tensor'
[71/133] 7601765261200461078_7602681205758102806 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7601949430056602900_7602434611599265044: module 'tensorflow' has no attribute 'is_tensor'
[72/133] 7601949430056602900_7602434611599265044 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7601970606141148438_7603078990038895894: module 'tensorflow' has no attribute 'is_tensor'
[73/133] 7601970606141148438_7603078990038895894 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7602006928537046280_7602420413976546567: module 'tensorflow' has no attribute 'is_tensor'
[74/133] 7602006928537046280_7602420413976546567 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7602009271491988743_7604143486912171271: module 'tensorflow' has no attribute 'is_tensor'
[75/133] 7602009271491988743_7604143486912171271 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7602060282625674517_7602477809264495880: module 'tensorflow' has no attribute 'is_tensor'
[76/133] 7602060282625674517_7602477809264495880 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7602082846525754631_7604271197852929287: module 'tensorflow' has no attribute 'is_tensor'
[77/133] 7602082846525754631_7604271197852929287 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7602143673546984725_7604193599068146951: module 'tensorflow' has no attribute 'is_tensor'
[78/133] 7602143673546984725_7604193599068146951 | acc=0.000 (correct=0/0) | 10.66 samp/s
ERROR on 7602256064427330839_7603098072029138198: module 'tensorflow' has no attribute 'is_tensor'
[79/133] 7602256064427330839_7603098072029138198 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7602270984690748694_7603038892320705814: module 'tensorflow' has no attribute 'is_tensor'
[80/133] 7602270984690748694_7603038892320705814 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7602366022103878929_7602669638551391496: module 'tensorflow' has no attribute 'is_tensor'
[81/133] 7602366022103878929_7602669638551391496 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7602382902457863445_7604191296412159252: module 'tensorflow' has no attribute 'is_tensor'
[82/133] 7602382902457863445_7604191296412159252 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7602700620830625046_7602866165395803414: module 'tensorflow' has no attribute 'is_tensor'
[83/133] 7602700620830625046_7602866165395803414 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7602708595221875986_7604355289906826504: module 'tensorflow' has no attribute 'is_tensor'
[84/133] 7602708595221875986_7604355289906826504 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7602725486715817219_7603481735279512854: module 'tensorflow' has no attribute 'is_tensor'
[85/133] 7602725486715817219_7603481735279512854 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7602729554339253526_7603093834116943126: module 'tensorflow' has no attribute 'is_tensor'
[86/133] 7602729554339253526_7603093834116943126 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7602843396088106262_7602995295437278486: module 'tensorflow' has no attribute 'is_tensor'
[87/133] 7602843396088106262_7602995295437278486 | acc=0.000 (correct=0/0) | 10.60 samp/s
ERROR on 7602910354212932884_7603540991643061512: module 'tensorflow' has no attribute 'is_tensor'
[88/133] 7602910354212932884_7603540991643061512 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7602915847211977992_7604398958395559186: module 'tensorflow' has no attribute 'is_tensor'
[89/133] 7602915847211977992_7604398958395559186 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7602946751540071701_7604027006077963528: module 'tensorflow' has no attribute 'is_tensor'
[90/133] 7602946751540071701_7604027006077963528 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7602984837502307606_7603479345079815446: module 'tensorflow' has no attribute 'is_tensor'
[91/133] 7602984837502307606_7603479345079815446 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7603022279718538516_7604021216944360712: module 'tensorflow' has no attribute 'is_tensor'
[92/133] 7603022279718538516_7604021216944360712 | acc=0.000 (correct=0/0) | 10.60 samp/s
ERROR on 7603057662082731286_7603508048769993987: module 'tensorflow' has no attribute 'is_tensor'
[93/133] 7603057662082731286_7603508048769993987 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7603072200341507329_7604142589331115280: module 'tensorflow' has no attribute 'is_tensor'
[94/133] 7603072200341507329_7604142589331115280 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7603075574315158806_7603118367762910486: module 'tensorflow' has no attribute 'is_tensor'
[95/133] 7603075574315158806_7603118367762910486 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7603079625559887125_7603753412768910612: module 'tensorflow' has no attribute 'is_tensor'
[96/133] 7603079625559887125_7603753412768910612 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7603090622093757718_7603453990323457303: module 'tensorflow' has no attribute 'is_tensor'
[97/133] 7603090622093757718_7603453990323457303 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7603114436525870358_7603434420065848598: module 'tensorflow' has no attribute 'is_tensor'
[98/133] 7603114436525870358_7603434420065848598 | acc=0.000 (correct=0/0) | 10.60 samp/s
ERROR on 7603118709992967446_7603141944167976214: module 'tensorflow' has no attribute 'is_tensor'
[99/133] 7603118709992967446_7603141944167976214 | acc=0.000 (correct=0/0) | 10.59 samp/s
ERROR on 7603138308822076692_7603806260097453332: module 'tensorflow' has no attribute 'is_tensor'
[100/133] 7603138308822076692_7603806260097453332 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7603146769148513566_7604566499847687445: module 'tensorflow' has no attribute 'is_tensor'
[101/133] 7603146769148513566_7604566499847687445 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7603165062764711186_7603407222311292181: module 'tensorflow' has no attribute 'is_tensor'
[102/133] 7603165062764711186_7603407222311292181 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7603185260158881045_7603447262575906068: module 'tensorflow' has no attribute 'is_tensor'
[103/133] 7603185260158881045_7603447262575906068 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7603389036920704264_7604264676964207892: module 'tensorflow' has no attribute 'is_tensor'
[104/133] 7603389036920704264_7604264676964207892 | acc=0.000 (correct=0/0) | 10.63 samp/s
ERROR on 7603529071628225800_7604036865682951445: module 'tensorflow' has no attribute 'is_tensor'
[105/133] 7603529071628225800_7604036865682951445 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7603529734223383828_7604261847734275335: module 'tensorflow' has no attribute 'is_tensor'
[106/133] 7603529734223383828_7604261847734275335 | acc=0.000 (correct=0/0) | 10.61 samp/s
ERROR on 7603597531121011986_7604027676130594055: module 'tensorflow' has no attribute 'is_tensor'
[107/133] 7603597531121011986_7604027676130594055 | acc=0.000 (correct=0/0) | 10.60 samp/s
ERROR on 7603814056583023893_7603967990312307975: module 'tensorflow' has no attribute 'is_tensor'
[108/133] 7603814056583023893_7603967990312307975 | acc=0.000 (correct=0/0) | 10.59 samp/s
ERROR on 7603818369183190303_7604234434702806280: module 'tensorflow' has no attribute 'is_tensor'
[109/133] 7603818369183190303_7604234434702806280 | acc=0.000 (correct=0/0) | 10.60 samp/s
ERROR on 7603852215660465416_7604220286849813781: module 'tensorflow' has no attribute 'is_tensor'
[110/133] 7603852215660465416_7604220286849813781 | acc=0.000 (correct=0/0) | 10.60 samp/s
ERROR on 7603876731857931540_7604241667603893524: module 'tensorflow' has no attribute 'is_tensor'
[111/133] 7603876731857931540_7604241667603893524 | acc=0.000 (correct=0/0) | 10.62 samp/s
ERROR on 7603884493329550609_7604041815758490901: module 'tensorflow' has no attribute 'is_tensor'
[112/133] 7603884493329550609_7604041815758490901 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7603902943246503175_7604332451615247623: module 'tensorflow' has no attribute 'is_tensor'
[113/133] 7603902943246503175_7604332451615247623 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7603921933381455125_7604079730609982741: module 'tensorflow' has no attribute 'is_tensor'
[114/133] 7603921933381455125_7604079730609982741 | acc=0.000 (correct=0/0) | 10.64 samp/s
ERROR on 7603932047878442257_7603978976616336661: module 'tensorflow' has no attribute 'is_tensor'
[115/133] 7603932047878442257_7603978976616336661 | acc=0.000 (correct=0/0) | 10.65 samp/s
ERROR on 7603947476332186901_7604063261130034433: module 'tensorflow' has no attribute 'is_tensor'
[116/133] 7603947476332186901_7604063261130034433 | acc=0.000 (correct=0/0) | 10.67 samp/s
ERROR on 7603977624448175368_7604464746045230354: module 'tensorflow' has no attribute 'is_tensor'
[117/133] 7603977624448175368_7604464746045230354 | acc=0.000 (correct=0/0) | 10.71 samp/s
ERROR on 7603979300127214866_7604577411136621844: module 'tensorflow' has no attribute 'is_tensor'
[118/133] 7603979300127214866_7604577411136621844 | acc=0.000 (correct=0/0) | 10.70 samp/s
ERROR on 7603993350802394389_7604087376469642517: module 'tensorflow' has no attribute 'is_tensor'
[119/133] 7603993350802394389_7604087376469642517 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604019342124043540_7604368885785070868: module 'tensorflow' has no attribute 'is_tensor'
[120/133] 7604019342124043540_7604368885785070868 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604023995578453256_7604406022966463752: module 'tensorflow' has no attribute 'is_tensor'
[121/133] 7604023995578453256_7604406022966463752 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604071937224199445_7604486246018075922: module 'tensorflow' has no attribute 'is_tensor'
[122/133] 7604071937224199445_7604486246018075922 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7604117742802701576_7604523788599938321: module 'tensorflow' has no attribute 'is_tensor'
[123/133] 7604117742802701576_7604523788599938321 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604119657179630856_7604130070600437010: module 'tensorflow' has no attribute 'is_tensor'
[124/133] 7604119657179630856_7604130070600437010 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604120387240234260_7604264832187108629: module 'tensorflow' has no attribute 'is_tensor'
[125/133] 7604120387240234260_7604264832187108629 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604133644516494613_7604325341783493906: module 'tensorflow' has no attribute 'is_tensor'
[126/133] 7604133644516494613_7604325341783493906 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604138193516055815_7604239035036437780: module 'tensorflow' has no attribute 'is_tensor'
[127/133] 7604138193516055815_7604239035036437780 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7604161389954862337_7604241413802380564: module 'tensorflow' has no attribute 'is_tensor'
[128/133] 7604161389954862337_7604241413802380564 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7604192834694040850_7604553253086383381: module 'tensorflow' has no attribute 'is_tensor'
[129/133] 7604192834694040850_7604553253086383381 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7604198893898763541_7604200050855775508: module 'tensorflow' has no attribute 'is_tensor'
[130/133] 7604198893898763541_7604200050855775508 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7604221872682634503_7604297076985351432: module 'tensorflow' has no attribute 'is_tensor'
[131/133] 7604221872682634503_7604297076985351432 | acc=0.000 (correct=0/0) | 10.69 samp/s
ERROR on 7604250553891310869_7604452867709127956: module 'tensorflow' has no attribute 'is_tensor'
[132/133] 7604250553891310869_7604452867709127956 | acc=0.000 (correct=0/0) | 10.68 samp/s
ERROR on 7604250992779087122_7604343009810926869: module 'tensorflow' has no attribute 'is_tensor'
[133/133] 7604250992779087122_7604343009810926869 | acc=0.000 (correct=0/0) | 10.71 samp/s
============================================================
DONE model=molmo_7b
accuracy: 0.0000 (0/0)
per-class: {}
parse_failures: 0
time: 12.4s (10.70 samp/s)
saved -> /mnt/bn/bohanzhainas1/jiashuo/exp/active_cases_eval/molmo_7b.json
Model: molmo_7b
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Model type: molmo
Fine-tuned: False
[SKIP] 7582677198746750229_7602429433449893127 (no frames / failed extraction)
[SKIP] 7583417083719847190_7602908531787910422 (no frames / failed extraction)
[SKIP] 7584037444983459092_7593315053781241106 (no frames / failed extraction)
[SKIP] 7584733886580591880_7592782759857245447 (no frames / failed extraction)
[SKIP] 7585273467772194070_7593446635338763542 (no frames / failed extraction)
[SKIP] 7585621460966788374_7603473500816297238 (no frames / failed extraction)
[SKIP] 7586150189941935382_7593384463275461910 (no frames / failed extraction)
[SKIP] 7586597062821793046_7602700394216688918 (no frames / failed extraction)
[SKIP] 7587882760279231777_7593074162743217430 (no frames / failed extraction)
[SKIP] 7588180930066386198_7603412848949218582 (no frames / failed extraction)
[SKIP] 7588207905518767382_7602720790659992855 (no frames / failed extraction)
[SKIP] 7588859776717671702_7593296535866117378 (no frames / failed extraction)
[SKIP] 7589385196827462934_7603104546189036822 (no frames / failed extraction)
[SKIP] 7589913665097174294_7593039101570354454 (no frames / failed extraction)
[SKIP] 7589960687187725591_7593085871843314966 (no frames / failed extraction)
[SKIP] 7590468019252432150_7593407027062263062 (no frames / failed extraction)
[SKIP] 7591630202673974550_7593064619959405846 (no frames / failed extraction)
[SKIP] 7591836115888246038_7593080065173359894 (no frames / failed extraction)
[SKIP] 7591847133309930773_7593094663347768598 (no frames / failed extraction)
[SKIP] 7591874135001763094_7593341652392070432 (no frames / failed extraction)
[SKIP] 7591889069026659606_7593402590713416983 (no frames / failed extraction)
[SKIP] 7592192610349993224_7603422246249483542 (no frames / failed extraction)
[SKIP] 7592249912092298516_7592692430290423048 (no frames / failed extraction)
[SKIP] 7592292119172156694_7593344515516255510 (no frames / failed extraction)
[SKIP] 7592407303433850134_7593089551699086614 (no frames / failed extraction)
[SKIP] 7592438557940190472_7593320220027112712 (no frames / failed extraction)
[SKIP] 7592447930083118358_7593389460251888918 (no frames / failed extraction)
[SKIP] 7592579018231123222_7593140560538504470 (no frames / failed extraction)
[SKIP] 7592587710313827606_7593083922620189974 (no frames / failed extraction)
[SKIP] 7592606436027338006_7593094886673501462 (no frames / failed extraction)
[SKIP] 7592608349129018646_7593268938440576278 (no frames / failed extraction)
[SKIP] 7592638072890641686_7593021195084172566 (no frames / failed extraction)
[SKIP] 7592665489650846999_7593089848739646742 (no frames / failed extraction)
[SKIP] 7592684356397698336_7593071353121492246 (no frames / failed extraction)
[SKIP] 7592689445384490262_7593027488104795414 (no frames / failed extraction)
[SKIP] 7592706387596135702_7593112206011649302 (no frames / failed extraction)
[SKIP] 7592730883266858262_7593062110196681987 (no frames / failed extraction)
[SKIP] 7592949961030094102_7603492671742545174 (no frames / failed extraction)
[SKIP] 7592962410810461462_7593308664602135830 (no frames / failed extraction)
[SKIP] 7592969692319386902_7593341592568712470 (no frames / failed extraction)
[SKIP] 7592997884329512214_7593429334455618838 (no frames / failed extraction)
[SKIP] 7593023927065038102_7593407584388795670 (no frames / failed extraction)
[SKIP] 7593025085439560982_7593349087630691607 (no frames / failed extraction)
[SKIP] 7593042030754925846_7593114198452882720 (no frames / failed extraction)
[SKIP] 7593061563909606658_7593077514952510742 (no frames / failed extraction)
[SKIP] 7593070251244375318_7593078378312387862 (no frames / failed extraction)
[SKIP] 7593753670903270678_7602706264363142432 (no frames / failed extraction)
[SKIP] 7596084847773420823_7602772755599117590 (no frames / failed extraction)
[SKIP] 7596228877127634198_7602841595464994070 (no frames / failed extraction)
[SKIP] 7597475892209650975_7604100479915805972 (no frames / failed extraction)
[SKIP] 7597495313544400150_7603023470439484694 (no frames / failed extraction)
[SKIP] 7597873882174868758_7603005109261405462 (no frames / failed extraction)
[SKIP] 7598175222746877206_7603007093393624342 (no frames / failed extraction)
[SKIP] 7598472951473704214_7602725579322002710 (no frames / failed extraction)
[SKIP] 7598516119405726996_7603973426964925716 (no frames / failed extraction)
[SKIP] 7599677244956593430_7602460334779108630 (no frames / failed extraction)
[SKIP] 7599719725207145750_7602933646244285718 (no frames / failed extraction)
[SKIP] 7600336749038144788_7602748123613629718 (no frames / failed extraction)
[SKIP] 7600496386005536022_7603075447164914966 (no frames / failed extraction)
[SKIP] 7600813734570773782_7602429316919479574 (no frames / failed extraction)
[SKIP] 7600848290413825302_7602779112352025878 (no frames / failed extraction)
[SKIP] 7601220761646402838_7603018067106499863 (no frames / failed extraction)
[SKIP] 7601510305893534998_7602678212866477335 (no frames / failed extraction)
[SKIP] 7601613870863518994_7603563256304700688 (no frames / failed extraction)
[SKIP] 7601848515752398102_7602678382060571906 (no frames / failed extraction)
[SKIP] 7601913432597712150_7603131540138200342 (no frames / failed extraction)
[SKIP] 7601928286750379286_7602577786364120342 (no frames / failed extraction)
[SKIP] 7601933322196946198_7602754876120042774 (no frames / failed extraction)
[SKIP] 7601998610477190422_7602715371820338454 (no frames / failed extraction)
[SKIP] 7602130594893417735_7604578017720962311 (no frames / failed extraction)
[SKIP] 7602177500176796950_7602678869098827030 (no frames / failed extraction)
[SKIP] 7602247963691289878_7602952772085943574 (no frames / failed extraction)
[SKIP] 7602249398457847062_7602706438569381142 (no frames / failed extraction)
[SKIP] 7602252479589322006_7602710905004018966 (no frames / failed extraction)
[SKIP] 7602260906663300374_7603059444066389270 (no frames / failed extraction)
[SKIP] 7602271814382849302_7602882172822834454 (no frames / failed extraction)
[SKIP] 7602310864481357078_7602647922227907862 (no frames / failed extraction)
[SKIP] 7602312802610531592_7604593851096976660 (no frames / failed extraction)
[SKIP] 7602376297129561366_7602579472767847702 (no frames / failed extraction)
[SKIP] 7602380228945644822_7602998633562197270 (no frames / failed extraction)
[SKIP] 7602389798820564227_7602719197398912278 (no frames / failed extraction)
[SKIP] 7602393643793648918_7602510910665624854 (no frames / failed extraction)
[SKIP] 7602395422874717462_7602982547936611606 (no frames / failed extraction)
[SKIP] 7602402488028876054_7602916875302898976 (no frames / failed extraction)
[SKIP] 7602405874400759047_7602473421427019026 (no frames / failed extraction)
[SKIP] 7602411358860102934_7602747902141664534 (no frames / failed extraction)
[SKIP] 7602418496676498711_7603388889381735712 (no frames / failed extraction)
[SKIP] 7602423244649483542_7603035091178097942 (no frames / failed extraction)
[SKIP] 7602580322869366038_7602742455183707414 (no frames / failed extraction)
[SKIP] 7602594689996410134_7603071616582503702 (no frames / failed extraction)
[SKIP] 7602614247180356885_7602647330415709462 (no frames / failed extraction)
[SKIP] 7602629799265488131_7602679961081761046 (no frames / failed extraction)
[SKIP] 7602663072544722198_7602769847151250710 (no frames / failed extraction)
[SKIP] 7602698902118157590_7603048226572274966 (no frames / failed extraction)
[SKIP] 7602712165912513814_7602756998052039958 (no frames / failed extraction)
[SKIP] 7602716194466073858_7602731198116498711 (no frames / failed extraction)
[SKIP] 7602756717650251030_7603150900827491586 (no frames / failed extraction)
[SKIP] 7602761656724196630_7603069792135826710 (no frames / failed extraction)
[SKIP] 7602776772869983510_7602780713779334422 (no frames / failed extraction)
[SKIP] 7603023017689566486_7603400137217543446 (no frames / failed extraction)
[SKIP] 7603726508284185876_7604510815655300372 (no frames / failed extraction)
[SKIP] 7603982549580385544_7604135707203964181 (no frames / failed extraction)
[SKIP] 7604033909038304532_7604549104487861512 (no frames / failed extraction)
[SKIP] 7604197852574665992_7604504344976755988 (no frames / failed extraction)
[SKIP] 7604249600865701142_7604624761112644882 (no frames / failed extraction)
Loaded 133 samples from /mlx/users/jiashuo.fan/playground/inference/active_cases/frames_cache
Pending: 133
Loading Molmo from /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.52, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
`torch_dtype` is deprecated! Use `dtype` instead!
Loading checkpoint shards: 0%| | 0/7 [00:00<?, ?it/s]
Loading checkpoint shards: 14%|█▍ | 1/7 [00:00<00:05, 1.20it/s]
Loading checkpoint shards: 29%|██▊ | 2/7 [00:01<00:04, 1.20it/s]
Loading checkpoint shards: 43%|████▎ | 3/7 [00:02<00:03, 1.15it/s]
Loading checkpoint shards: 57%|█████▋ | 4/7 [00:03<00:02, 1.14it/s]
Loading checkpoint shards: 71%|███████▏ | 5/7 [00:04<00:01, 1.17it/s]
Loading checkpoint shards: 86%|████████▌ | 6/7 [00:05<00:00, 1.19it/s]
Loading checkpoint shards: 100%|██████████| 7/7 [00:06<00:00, 1.11it/s]
Loading checkpoint shards: 100%|██████████| 7/7 [00:06<00:00, 1.14it/s]
ERROR on 7582864625457384725_7592503137240386834: 'MolmoConfig' object has no attribute 'generation_config'
[1/133] 7582864625457384725_7592503137240386834 | acc=0.000 (correct=0/0) | 2.78 samp/s
ERROR on 7583298662386650389_7603817886603300103: 'MolmoConfig' object has no attribute 'generation_config'
[2/133] 7583298662386650389_7603817886603300103 | acc=0.000 (correct=0/0) | 2.95 samp/s
ERROR on 7583769463078800643_7603057302106656022: 'MolmoConfig' object has no attribute 'generation_config'
[3/133] 7583769463078800643_7603057302106656022 | acc=0.000 (correct=0/0) | 3.25 samp/s
ERROR on 7584143881545977110_7593173975707028758: 'MolmoConfig' object has no attribute 'generation_config'
[4/133] 7584143881545977110_7593173975707028758 | acc=0.000 (correct=0/0) | 3.16 samp/s
ERROR on 7584459358449405202_7604337545559674132: 'MolmoConfig' object has no attribute 'generation_config'
[5/133] 7584459358449405202_7604337545559674132 | acc=0.000 (correct=0/0) | 3.17 samp/s
ERROR on 7584515446049656086_7592960395527146774: 'MolmoConfig' object has no attribute 'generation_config'
[6/133] 7584515446049656086_7592960395527146774 | acc=0.000 (correct=0/0) | 3.15 samp/s
ERROR on 7585337388545723681_7593386207040507169: 'MolmoConfig' object has no attribute 'generation_config'
[7/133] 7585337388545723681_7593386207040507169 | acc=0.000 (correct=0/0) | 3.14 samp/s
ERROR on 7586774649753718038_7593408077811207427: 'MolmoConfig' object has no attribute 'generation_config'
[8/133] 7586774649753718038_7593408077811207427 | acc=0.000 (correct=0/0) | 3.14 samp/s
ERROR on 7588310732303879432_7595998237404761362: 'MolmoConfig' object has no attribute 'generation_config'
[9/133] 7588310732303879432_7595998237404761362 | acc=0.000 (correct=0/0) | 3.13 samp/s
ERROR on 7589478401866616084_7592464439727623445: 'MolmoConfig' object has no attribute 'generation_config'
[10/133] 7589478401866616084_7592464439727623445 | acc=0.000 (correct=0/0) | 3.13 samp/s
ERROR on 7589598278531009813_7604139924731809045: 'MolmoConfig' object has no attribute 'generation_config'
[11/133] 7589598278531009813_7604139924731809045 | acc=0.000 (correct=0/0) | 3.14 samp/s
ERROR on 7590080459309124886_7602942433009159446: 'MolmoConfig' object has no attribute 'generation_config'
[12/133] 7590080459309124886_7602942433009159446 | acc=0.000 (correct=0/0) | 3.17 samp/s
ERROR on 7590122947935735062_7602760876478745878: 'MolmoConfig' object has no attribute 'generation_config'
[13/133] 7590122947935735062_7602760876478745878 | acc=0.000 (correct=0/0) | 3.20 samp/s
ERROR on 7590736059038698760_7604236963700329736: 'MolmoConfig' object has no attribute 'generation_config'
[14/133] 7590736059038698760_7604236963700329736 | acc=0.000 (correct=0/0) | 3.21 samp/s
ERROR on 7591396054570896660_7602174366645865736: 'MolmoConfig' object has no attribute 'generation_config'
[15/133] 7591396054570896660_7602174366645865736 | acc=0.000 (correct=0/0) | 3.20 samp/s
ERROR on 7591603142207474952_7592657430761295124: 'MolmoConfig' object has no attribute 'generation_config'
[16/133] 7591603142207474952_7592657430761295124 | acc=0.000 (correct=0/0) | 3.20 samp/s
ERROR on 7591633885876833543_7592914268626930952: 'MolmoConfig' object has no attribute 'generation_config'
[17/133] 7591633885876833543_7592914268626930952 | acc=0.000 (correct=0/0) | 3.19 samp/s
ERROR on 7592127916369022215_7592811493075225877: 'MolmoConfig' object has no attribute 'generation_config'
[18/133] 7592127916369022215_7592811493075225877 | acc=0.000 (correct=0/0) | 3.18 samp/s
ERROR on 7592292714314566934_7603000520394968342: 'MolmoConfig' object has no attribute 'generation_config'
[19/133] 7592292714314566934_7603000520394968342 | acc=0.000 (correct=0/0) | 3.17 samp/s
ERROR on 7592363769301388575_7592557472821382420: 'MolmoConfig' object has no attribute 'generation_config'
[20/133] 7592363769301388575_7592557472821382420 | acc=0.000 (correct=0/0) | 3.17 samp/s
ERROR on 7592379393456999688_7592812522206514452: 'MolmoConfig' object has no attribute 'generation_config'
[21/133] 7592379393456999688_7592812522206514452 | acc=0.000 (correct=0/0) | 3.17 samp/s
ERROR on 7592395525857627448_7592424707811446034: 'MolmoConfig' object has no attribute 'generation_config'
[22/133] 7592395525857627448_7592424707811446034 | acc=0.000 (correct=0/0) | 3.14 samp/s
ERROR on 7592396786472455445_7592776503407037716: 'MolmoConfig' object has no attribute 'generation_config'
[23/133] 7592396786472455445_7592776503407037716 | acc=0.000 (correct=0/0) | 3.14 samp/s
ERROR on 7592406759860423943_7592469167501102344: 'MolmoConfig' object has no attribute 'generation_config'
[24/133] 7592406759860423943_7592469167501102344 | acc=0.000 (correct=0/0) | 3.14 samp/s
ERROR on 7592439822283705607_7592708834959904001: 'MolmoConfig' object has no attribute 'generation_config'
[25/133] 7592439822283705607_7592708834959904001 | acc=0.000 (correct=0/0) | 3.14 samp/s
ERROR on 7592441861743136007_7592686503755582727: 'MolmoConfig' object has no attribute 'generation_config'
[26/133] 7592441861743136007_7592686503755582727 | acc=0.000 (correct=0/0) | 3.16 samp/s
ERROR on 7592612029127494934_7593372133087022358: 'MolmoConfig' object has no attribute 'generation_config'
[27/133] 7592612029127494934_7593372133087022358 | acc=0.000 (correct=0/0) | 3.16 samp/s
ERROR on 7592621669458480417_7593325946653003030: 'MolmoConfig' object has no attribute 'generation_config'
[28/133] 7592621669458480417_7593325946653003030 | acc=0.000 (correct=0/0) | 3.15 samp/s
ERROR on 7592630277092936980_7592934574200605974: 'MolmoConfig' object has no attribute 'generation_config'
[29/133] 7592630277092936980_7592934574200605974 | acc=0.000 (correct=0/0) | 3.15 samp/s
ERROR on 7592662940269006113_7593135968987696406: 'MolmoConfig' object has no attribute 'generation_config'
[30/133] 7592662940269006113_7593135968987696406 | acc=0.000 (correct=0/0) | 3.15 samp/s
ERROR on 7592695844491644178_7593247873295289622: 'MolmoConfig' object has no attribute 'generation_config'
[31/133] 7592695844491644178_7593247873295289622 | acc=0.000 (correct=0/0) | 3.14 samp/s
ERROR on 7592734749563653384_7593673083739802898: 'MolmoConfig' object has no attribute 'generation_config'
[32/133] 7592734749563653384_7593673083739802898 | acc=0.000 (correct=0/0) | 3.14 samp/s
ERROR on 7592983455659543830_7593423283710610710: 'MolmoConfig' object has no attribute 'generation_config'
[33/133] 7592983455659543830_7593423283710610710 | acc=0.000 (correct=0/0) | 3.15 samp/s
ERROR on 7593033792315575574_7593099150867172630: 'MolmoConfig' object has no attribute 'generation_config'
[34/133] 7593033792315575574_7593099150867172630 | acc=0.000 (correct=0/0) | 3.17 samp/s
ERROR on 7593219919349566741_7595664852438338823: 'MolmoConfig' object has no attribute 'generation_config'
[35/133] 7593219919349566741_7595664852438338823 | acc=0.000 (correct=0/0) | 3.18 samp/s
ERROR on 7593374120054656276_7604306674219863303: 'MolmoConfig' object has no attribute 'generation_config'
[36/133] 7593374120054656276_7604306674219863303 | acc=0.000 (correct=0/0) | 3.19 samp/s
ERROR on 7593727005841968391_7595431144884129035: 'MolmoConfig' object has no attribute 'generation_config'
[37/133] 7593727005841968391_7595431144884129035 | acc=0.000 (correct=0/0) | 3.21 samp/s
ERROR on 7593819989833026834_7604240520432520466: 'MolmoConfig' object has no attribute 'generation_config'
[38/133] 7593819989833026834_7604240520432520466 | acc=0.000 (correct=0/0) | 3.22 samp/s
ERROR on 7594557794372652309_7604204623724809479: 'MolmoConfig' object has no attribute 'generation_config'
[39/133] 7594557794372652309_7604204623724809479 | acc=0.000 (correct=0/0) | 3.23 samp/s
ERROR on 7594990951328746808_7595755849885289748: 'MolmoConfig' object has no attribute 'generation_config'
[40/133] 7594990951328746808_7595755849885289748 | acc=0.000 (correct=0/0) | 3.24 samp/s
ERROR on 7595380926247341332_7602338775099837714: 'MolmoConfig' object has no attribute 'generation_config'
[41/133] 7595380926247341332_7602338775099837714 | acc=0.000 (correct=0/0) | 3.27 samp/s
ERROR on 7595395129591024904_7595962701738741000: 'MolmoConfig' object has no attribute 'generation_config'
[42/133] 7595395129591024904_7595962701738741000 | acc=0.000 (correct=0/0) | 3.28 samp/s
ERROR on 7595407496525663506_7595842450577575179: 'MolmoConfig' object has no attribute 'generation_config'
[43/133] 7595407496525663506_7595842450577575179 | acc=0.000 (correct=0/0) | 3.29 samp/s
ERROR on 7595414619993246983_7595648604866350354: 'MolmoConfig' object has no attribute 'generation_config'
[44/133] 7595414619993246983_7595648604866350354 | acc=0.000 (correct=0/0) | 3.30 samp/s
ERROR on 7595460052346096914_7595599161152605447: 'MolmoConfig' object has no attribute 'generation_config'
[45/133] 7595460052346096914_7595599161152605447 | acc=0.000 (correct=0/0) | 3.29 samp/s
ERROR on 7595474031126646034_7595640420671982904: 'MolmoConfig' object has no attribute 'generation_config'
[46/133] 7595474031126646034_7595640420671982904 | acc=0.000 (correct=0/0) | 3.29 samp/s
ERROR on 7595812699439648007_7604520050434854152: 'MolmoConfig' object has no attribute 'generation_config'
[47/133] 7595812699439648007_7604520050434854152 | acc=0.000 (correct=0/0) | 3.30 samp/s
ERROR on 7597044647780764948_7604054478521748757: 'MolmoConfig' object has no attribute 'generation_config'
[48/133] 7597044647780764948_7604054478521748757 | acc=0.000 (correct=0/0) | 3.33 samp/s
ERROR on 7597788963738324232_7603763715422407957: 'MolmoConfig' object has no attribute 'generation_config'
[49/133] 7597788963738324232_7603763715422407957 | acc=0.000 (correct=0/0) | 3.34 samp/s
ERROR on 7598938266598952210_7604394570947890440: 'MolmoConfig' object has no attribute 'generation_config'
[50/133] 7598938266598952210_7604394570947890440 | acc=0.000 (correct=0/0) | 3.33 samp/s
ERROR on 7598981214132849942_7603041768992460054: 'MolmoConfig' object has no attribute 'generation_config'
[51/133] 7598981214132849942_7603041768992460054 | acc=0.000 (correct=0/0) | 3.33 samp/s
ERROR on 7599419411836964117_7602328110696090901: 'MolmoConfig' object has no attribute 'generation_config'
[52/133] 7599419411836964117_7602328110696090901 | acc=0.000 (correct=0/0) | 3.34 samp/s
ERROR on 7600049951300685076_7602626609417604370: 'MolmoConfig' object has no attribute 'generation_config'
[53/133] 7600049951300685076_7602626609417604370 | acc=0.000 (correct=0/0) | 3.34 samp/s
ERROR on 7600071116324900116_7602337842538368276: 'MolmoConfig' object has no attribute 'generation_config'
[54/133] 7600071116324900116_7602337842538368276 | acc=0.000 (correct=0/0) | 3.35 samp/s
ERROR on 7600138772541394198_7602907593710767382: 'MolmoConfig' object has no attribute 'generation_config'
[55/133] 7600138772541394198_7602907593710767382 | acc=0.000 (correct=0/0) | 3.35 samp/s
ERROR on 7600184266231745810_7603856182331051284: 'MolmoConfig' object has no attribute 'generation_config'
[56/133] 7600184266231745810_7603856182331051284 | acc=0.000 (correct=0/0) | 3.36 samp/s
ERROR on 7600267409701833992_7604407914765290759: 'MolmoConfig' object has no attribute 'generation_config'
[57/133] 7600267409701833992_7604407914765290759 | acc=0.000 (correct=0/0) | 3.37 samp/s
ERROR on 7600717184851053846_7603923738865782037: 'MolmoConfig' object has no attribute 'generation_config'
[58/133] 7600717184851053846_7603923738865782037 | acc=0.000 (correct=0/0) | 3.37 samp/s
ERROR on 7600822923275799828_7604562398480977159: 'MolmoConfig' object has no attribute 'generation_config'
[59/133] 7600822923275799828_7604562398480977159 | acc=0.000 (correct=0/0) | 3.38 samp/s
ERROR on 7600850853821418772_7604066449119857941: 'MolmoConfig' object has no attribute 'generation_config'
[60/133] 7600850853821418772_7604066449119857941 | acc=0.000 (correct=0/0) | 3.38 samp/s
ERROR on 7601115694347947294_7604552935992724744: 'MolmoConfig' object has no attribute 'generation_config'
[61/133] 7601115694347947294_7604552935992724744 | acc=0.000 (correct=0/0) | 3.38 samp/s
ERROR on 7601134749763030294_7602752793023204630: 'MolmoConfig' object has no attribute 'generation_config'
[62/133] 7601134749763030294_7602752793023204630 | acc=0.000 (correct=0/0) | 3.38 samp/s
ERROR on 7601312798609591574_7603019182405373206: 'MolmoConfig' object has no attribute 'generation_config'
[63/133] 7601312798609591574_7603019182405373206 | acc=0.000 (correct=0/0) | 3.38 samp/s
ERROR on 7601325066151890196_7602212400758000916: 'MolmoConfig' object has no attribute 'generation_config'
[64/133] 7601325066151890196_7602212400758000916 | acc=0.000 (correct=0/0) | 3.39 samp/s
ERROR on 7601574274960231702_7602694663203523862: 'MolmoConfig' object has no attribute 'generation_config'
[65/133] 7601574274960231702_7602694663203523862 | acc=0.000 (correct=0/0) | 3.40 samp/s
ERROR on 7601579424177343762_7602468045705006356: 'MolmoConfig' object has no attribute 'generation_config'
[66/133] 7601579424177343762_7602468045705006356 | acc=0.000 (correct=0/0) | 3.40 samp/s
ERROR on 7601586470712954115_7603338240136908054: 'MolmoConfig' object has no attribute 'generation_config'
[67/133] 7601586470712954115_7603338240136908054 | acc=0.000 (correct=0/0) | 3.40 samp/s
ERROR on 7601669855993007382_7603430768756477206: 'MolmoConfig' object has no attribute 'generation_config'
[68/133] 7601669855993007382_7603430768756477206 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7601674006034402582_7602604985834048790: 'MolmoConfig' object has no attribute 'generation_config'
[69/133] 7601674006034402582_7602604985834048790 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7601713212869856533_7602376124693351688: 'MolmoConfig' object has no attribute 'generation_config'
[70/133] 7601713212869856533_7602376124693351688 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7601765261200461078_7602681205758102806: 'MolmoConfig' object has no attribute 'generation_config'
[71/133] 7601765261200461078_7602681205758102806 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7601949430056602900_7602434611599265044: 'MolmoConfig' object has no attribute 'generation_config'
[72/133] 7601949430056602900_7602434611599265044 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7601970606141148438_7603078990038895894: 'MolmoConfig' object has no attribute 'generation_config'
[73/133] 7601970606141148438_7603078990038895894 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7602006928537046280_7602420413976546567: 'MolmoConfig' object has no attribute 'generation_config'
[74/133] 7602006928537046280_7602420413976546567 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7602009271491988743_7604143486912171271: 'MolmoConfig' object has no attribute 'generation_config'
[75/133] 7602009271491988743_7604143486912171271 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7602060282625674517_7602477809264495880: 'MolmoConfig' object has no attribute 'generation_config'
[76/133] 7602060282625674517_7602477809264495880 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7602082846525754631_7604271197852929287: 'MolmoConfig' object has no attribute 'generation_config'
[77/133] 7602082846525754631_7604271197852929287 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7602143673546984725_7604193599068146951: 'MolmoConfig' object has no attribute 'generation_config'
[78/133] 7602143673546984725_7604193599068146951 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7602256064427330839_7603098072029138198: 'MolmoConfig' object has no attribute 'generation_config'
[79/133] 7602256064427330839_7603098072029138198 | acc=0.000 (correct=0/0) | 3.46 samp/s
ERROR on 7602270984690748694_7603038892320705814: 'MolmoConfig' object has no attribute 'generation_config'
[80/133] 7602270984690748694_7603038892320705814 | acc=0.000 (correct=0/0) | 3.46 samp/s
ERROR on 7602366022103878929_7602669638551391496: 'MolmoConfig' object has no attribute 'generation_config'
[81/133] 7602366022103878929_7602669638551391496 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7602382902457863445_7604191296412159252: 'MolmoConfig' object has no attribute 'generation_config'
[82/133] 7602382902457863445_7604191296412159252 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7602700620830625046_7602866165395803414: 'MolmoConfig' object has no attribute 'generation_config'
[83/133] 7602700620830625046_7602866165395803414 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7602708595221875986_7604355289906826504: 'MolmoConfig' object has no attribute 'generation_config'
[84/133] 7602708595221875986_7604355289906826504 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7602725486715817219_7603481735279512854: 'MolmoConfig' object has no attribute 'generation_config'
[85/133] 7602725486715817219_7603481735279512854 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7602729554339253526_7603093834116943126: 'MolmoConfig' object has no attribute 'generation_config'
[86/133] 7602729554339253526_7603093834116943126 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7602843396088106262_7602995295437278486: 'MolmoConfig' object has no attribute 'generation_config'
[87/133] 7602843396088106262_7602995295437278486 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7602910354212932884_7603540991643061512: 'MolmoConfig' object has no attribute 'generation_config'
[88/133] 7602910354212932884_7603540991643061512 | acc=0.000 (correct=0/0) | 3.46 samp/s
ERROR on 7602915847211977992_7604398958395559186: 'MolmoConfig' object has no attribute 'generation_config'
[89/133] 7602915847211977992_7604398958395559186 | acc=0.000 (correct=0/0) | 3.46 samp/s
ERROR on 7602946751540071701_7604027006077963528: 'MolmoConfig' object has no attribute 'generation_config'
[90/133] 7602946751540071701_7604027006077963528 | acc=0.000 (correct=0/0) | 3.47 samp/s
ERROR on 7602984837502307606_7603479345079815446: 'MolmoConfig' object has no attribute 'generation_config'
[91/133] 7602984837502307606_7603479345079815446 | acc=0.000 (correct=0/0) | 3.47 samp/s
ERROR on 7603022279718538516_7604021216944360712: 'MolmoConfig' object has no attribute 'generation_config'
[92/133] 7603022279718538516_7604021216944360712 | acc=0.000 (correct=0/0) | 3.47 samp/s
ERROR on 7603057662082731286_7603508048769993987: 'MolmoConfig' object has no attribute 'generation_config'
[93/133] 7603057662082731286_7603508048769993987 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7603072200341507329_7604142589331115280: 'MolmoConfig' object has no attribute 'generation_config'
[94/133] 7603072200341507329_7604142589331115280 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7603075574315158806_7603118367762910486: 'MolmoConfig' object has no attribute 'generation_config'
[95/133] 7603075574315158806_7603118367762910486 | acc=0.000 (correct=0/0) | 3.47 samp/s
ERROR on 7603079625559887125_7603753412768910612: 'MolmoConfig' object has no attribute 'generation_config'
[96/133] 7603079625559887125_7603753412768910612 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7603090622093757718_7603453990323457303: 'MolmoConfig' object has no attribute 'generation_config'
[97/133] 7603090622093757718_7603453990323457303 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7603114436525870358_7603434420065848598: 'MolmoConfig' object has no attribute 'generation_config'
[98/133] 7603114436525870358_7603434420065848598 | acc=0.000 (correct=0/0) | 3.49 samp/s
ERROR on 7603118709992967446_7603141944167976214: 'MolmoConfig' object has no attribute 'generation_config'
[99/133] 7603118709992967446_7603141944167976214 | acc=0.000 (correct=0/0) | 3.49 samp/s
ERROR on 7603138308822076692_7603806260097453332: 'MolmoConfig' object has no attribute 'generation_config'
[100/133] 7603138308822076692_7603806260097453332 | acc=0.000 (correct=0/0) | 3.49 samp/s
ERROR on 7603146769148513566_7604566499847687445: 'MolmoConfig' object has no attribute 'generation_config'
[101/133] 7603146769148513566_7604566499847687445 | acc=0.000 (correct=0/0) | 3.49 samp/s
ERROR on 7603165062764711186_7603407222311292181: 'MolmoConfig' object has no attribute 'generation_config'
[102/133] 7603165062764711186_7603407222311292181 | acc=0.000 (correct=0/0) | 3.49 samp/s
ERROR on 7603185260158881045_7603447262575906068: 'MolmoConfig' object has no attribute 'generation_config'
[103/133] 7603185260158881045_7603447262575906068 | acc=0.000 (correct=0/0) | 3.49 samp/s
ERROR on 7603389036920704264_7604264676964207892: 'MolmoConfig' object has no attribute 'generation_config'
[104/133] 7603389036920704264_7604264676964207892 | acc=0.000 (correct=0/0) | 3.49 samp/s
ERROR on 7603529071628225800_7604036865682951445: 'MolmoConfig' object has no attribute 'generation_config'
[105/133] 7603529071628225800_7604036865682951445 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7603529734223383828_7604261847734275335: 'MolmoConfig' object has no attribute 'generation_config'
[106/133] 7603529734223383828_7604261847734275335 | acc=0.000 (correct=0/0) | 3.46 samp/s
ERROR on 7603597531121011986_7604027676130594055: 'MolmoConfig' object has no attribute 'generation_config'
[107/133] 7603597531121011986_7604027676130594055 | acc=0.000 (correct=0/0) | 3.46 samp/s
ERROR on 7603814056583023893_7603967990312307975: 'MolmoConfig' object has no attribute 'generation_config'
[108/133] 7603814056583023893_7603967990312307975 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7603818369183190303_7604234434702806280: 'MolmoConfig' object has no attribute 'generation_config'
[109/133] 7603818369183190303_7604234434702806280 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7603852215660465416_7604220286849813781: 'MolmoConfig' object has no attribute 'generation_config'
[110/133] 7603852215660465416_7604220286849813781 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7603876731857931540_7604241667603893524: 'MolmoConfig' object has no attribute 'generation_config'
[111/133] 7603876731857931540_7604241667603893524 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7603884493329550609_7604041815758490901: 'MolmoConfig' object has no attribute 'generation_config'
[112/133] 7603884493329550609_7604041815758490901 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7603902943246503175_7604332451615247623: 'MolmoConfig' object has no attribute 'generation_config'
[113/133] 7603902943246503175_7604332451615247623 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7603921933381455125_7604079730609982741: 'MolmoConfig' object has no attribute 'generation_config'
[114/133] 7603921933381455125_7604079730609982741 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7603932047878442257_7603978976616336661: 'MolmoConfig' object has no attribute 'generation_config'
[115/133] 7603932047878442257_7603978976616336661 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7603947476332186901_7604063261130034433: 'MolmoConfig' object has no attribute 'generation_config'
[116/133] 7603947476332186901_7604063261130034433 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7603977624448175368_7604464746045230354: 'MolmoConfig' object has no attribute 'generation_config'
[117/133] 7603977624448175368_7604464746045230354 | acc=0.000 (correct=0/0) | 3.46 samp/s
ERROR on 7603979300127214866_7604577411136621844: 'MolmoConfig' object has no attribute 'generation_config'
[118/133] 7603979300127214866_7604577411136621844 | acc=0.000 (correct=0/0) | 3.46 samp/s
ERROR on 7603993350802394389_7604087376469642517: 'MolmoConfig' object has no attribute 'generation_config'
[119/133] 7603993350802394389_7604087376469642517 | acc=0.000 (correct=0/0) | 3.46 samp/s
ERROR on 7604019342124043540_7604368885785070868: 'MolmoConfig' object has no attribute 'generation_config'
[120/133] 7604019342124043540_7604368885785070868 | acc=0.000 (correct=0/0) | 3.46 samp/s
ERROR on 7604023995578453256_7604406022966463752: 'MolmoConfig' object has no attribute 'generation_config'
[121/133] 7604023995578453256_7604406022966463752 | acc=0.000 (correct=0/0) | 3.46 samp/s
ERROR on 7604071937224199445_7604486246018075922: 'MolmoConfig' object has no attribute 'generation_config'
[122/133] 7604071937224199445_7604486246018075922 | acc=0.000 (correct=0/0) | 3.47 samp/s
ERROR on 7604117742802701576_7604523788599938321: 'MolmoConfig' object has no attribute 'generation_config'
[123/133] 7604117742802701576_7604523788599938321 | acc=0.000 (correct=0/0) | 3.47 samp/s
ERROR on 7604119657179630856_7604130070600437010: 'MolmoConfig' object has no attribute 'generation_config'
[124/133] 7604119657179630856_7604130070600437010 | acc=0.000 (correct=0/0) | 3.47 samp/s
ERROR on 7604120387240234260_7604264832187108629: 'MolmoConfig' object has no attribute 'generation_config'
[125/133] 7604120387240234260_7604264832187108629 | acc=0.000 (correct=0/0) | 3.47 samp/s
ERROR on 7604133644516494613_7604325341783493906: 'MolmoConfig' object has no attribute 'generation_config'
[126/133] 7604133644516494613_7604325341783493906 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7604138193516055815_7604239035036437780: 'MolmoConfig' object has no attribute 'generation_config'
[127/133] 7604138193516055815_7604239035036437780 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7604161389954862337_7604241413802380564: 'MolmoConfig' object has no attribute 'generation_config'
[128/133] 7604161389954862337_7604241413802380564 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7604192834694040850_7604553253086383381: 'MolmoConfig' object has no attribute 'generation_config'
[129/133] 7604192834694040850_7604553253086383381 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7604198893898763541_7604200050855775508: 'MolmoConfig' object has no attribute 'generation_config'
[130/133] 7604198893898763541_7604200050855775508 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7604221872682634503_7604297076985351432: 'MolmoConfig' object has no attribute 'generation_config'
[131/133] 7604221872682634503_7604297076985351432 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7604250553891310869_7604452867709127956: 'MolmoConfig' object has no attribute 'generation_config'
[132/133] 7604250553891310869_7604452867709127956 | acc=0.000 (correct=0/0) | 3.48 samp/s
ERROR on 7604250992779087122_7604343009810926869: 'MolmoConfig' object has no attribute 'generation_config'
[133/133] 7604250992779087122_7604343009810926869 | acc=0.000 (correct=0/0) | 3.49 samp/s
============================================================
DONE model=molmo_7b
accuracy: 0.0000 (0/0)
per-class: {}
parse_failures: 0
time: 38.2s (3.49 samp/s)
saved -> /mnt/bn/bohanzhainas1/jiashuo/exp/active_cases_eval/molmo_7b.json
Model: molmo_7b
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Model type: molmo
Fine-tuned: False
[SKIP] 7582677198746750229_7602429433449893127 (no frames / failed extraction)
[SKIP] 7583417083719847190_7602908531787910422 (no frames / failed extraction)
[SKIP] 7584037444983459092_7593315053781241106 (no frames / failed extraction)
[SKIP] 7584733886580591880_7592782759857245447 (no frames / failed extraction)
[SKIP] 7585273467772194070_7593446635338763542 (no frames / failed extraction)
[SKIP] 7585621460966788374_7603473500816297238 (no frames / failed extraction)
[SKIP] 7586150189941935382_7593384463275461910 (no frames / failed extraction)
[SKIP] 7586597062821793046_7602700394216688918 (no frames / failed extraction)
[SKIP] 7587882760279231777_7593074162743217430 (no frames / failed extraction)
[SKIP] 7588180930066386198_7603412848949218582 (no frames / failed extraction)
[SKIP] 7588207905518767382_7602720790659992855 (no frames / failed extraction)
[SKIP] 7588859776717671702_7593296535866117378 (no frames / failed extraction)
[SKIP] 7589385196827462934_7603104546189036822 (no frames / failed extraction)
[SKIP] 7589913665097174294_7593039101570354454 (no frames / failed extraction)
[SKIP] 7589960687187725591_7593085871843314966 (no frames / failed extraction)
[SKIP] 7590468019252432150_7593407027062263062 (no frames / failed extraction)
[SKIP] 7591630202673974550_7593064619959405846 (no frames / failed extraction)
[SKIP] 7591836115888246038_7593080065173359894 (no frames / failed extraction)
[SKIP] 7591847133309930773_7593094663347768598 (no frames / failed extraction)
[SKIP] 7591874135001763094_7593341652392070432 (no frames / failed extraction)
[SKIP] 7591889069026659606_7593402590713416983 (no frames / failed extraction)
[SKIP] 7592192610349993224_7603422246249483542 (no frames / failed extraction)
[SKIP] 7592249912092298516_7592692430290423048 (no frames / failed extraction)
[SKIP] 7592292119172156694_7593344515516255510 (no frames / failed extraction)
[SKIP] 7592407303433850134_7593089551699086614 (no frames / failed extraction)
[SKIP] 7592438557940190472_7593320220027112712 (no frames / failed extraction)
[SKIP] 7592447930083118358_7593389460251888918 (no frames / failed extraction)
[SKIP] 7592579018231123222_7593140560538504470 (no frames / failed extraction)
[SKIP] 7592587710313827606_7593083922620189974 (no frames / failed extraction)
[SKIP] 7592606436027338006_7593094886673501462 (no frames / failed extraction)
[SKIP] 7592608349129018646_7593268938440576278 (no frames / failed extraction)
[SKIP] 7592638072890641686_7593021195084172566 (no frames / failed extraction)
[SKIP] 7592665489650846999_7593089848739646742 (no frames / failed extraction)
[SKIP] 7592684356397698336_7593071353121492246 (no frames / failed extraction)
[SKIP] 7592689445384490262_7593027488104795414 (no frames / failed extraction)
[SKIP] 7592706387596135702_7593112206011649302 (no frames / failed extraction)
[SKIP] 7592730883266858262_7593062110196681987 (no frames / failed extraction)
[SKIP] 7592949961030094102_7603492671742545174 (no frames / failed extraction)
[SKIP] 7592962410810461462_7593308664602135830 (no frames / failed extraction)
[SKIP] 7592969692319386902_7593341592568712470 (no frames / failed extraction)
[SKIP] 7592997884329512214_7593429334455618838 (no frames / failed extraction)
[SKIP] 7593023927065038102_7593407584388795670 (no frames / failed extraction)
[SKIP] 7593025085439560982_7593349087630691607 (no frames / failed extraction)
[SKIP] 7593042030754925846_7593114198452882720 (no frames / failed extraction)
[SKIP] 7593061563909606658_7593077514952510742 (no frames / failed extraction)
[SKIP] 7593070251244375318_7593078378312387862 (no frames / failed extraction)
[SKIP] 7593753670903270678_7602706264363142432 (no frames / failed extraction)
[SKIP] 7596084847773420823_7602772755599117590 (no frames / failed extraction)
[SKIP] 7596228877127634198_7602841595464994070 (no frames / failed extraction)
[SKIP] 7597475892209650975_7604100479915805972 (no frames / failed extraction)
[SKIP] 7597495313544400150_7603023470439484694 (no frames / failed extraction)
[SKIP] 7597873882174868758_7603005109261405462 (no frames / failed extraction)
[SKIP] 7598175222746877206_7603007093393624342 (no frames / failed extraction)
[SKIP] 7598472951473704214_7602725579322002710 (no frames / failed extraction)
[SKIP] 7598516119405726996_7603973426964925716 (no frames / failed extraction)
[SKIP] 7599677244956593430_7602460334779108630 (no frames / failed extraction)
[SKIP] 7599719725207145750_7602933646244285718 (no frames / failed extraction)
[SKIP] 7600336749038144788_7602748123613629718 (no frames / failed extraction)
[SKIP] 7600496386005536022_7603075447164914966 (no frames / failed extraction)
[SKIP] 7600813734570773782_7602429316919479574 (no frames / failed extraction)
[SKIP] 7600848290413825302_7602779112352025878 (no frames / failed extraction)
[SKIP] 7601220761646402838_7603018067106499863 (no frames / failed extraction)
[SKIP] 7601510305893534998_7602678212866477335 (no frames / failed extraction)
[SKIP] 7601613870863518994_7603563256304700688 (no frames / failed extraction)
[SKIP] 7601848515752398102_7602678382060571906 (no frames / failed extraction)
[SKIP] 7601913432597712150_7603131540138200342 (no frames / failed extraction)
[SKIP] 7601928286750379286_7602577786364120342 (no frames / failed extraction)
[SKIP] 7601933322196946198_7602754876120042774 (no frames / failed extraction)
[SKIP] 7601998610477190422_7602715371820338454 (no frames / failed extraction)
[SKIP] 7602130594893417735_7604578017720962311 (no frames / failed extraction)
[SKIP] 7602177500176796950_7602678869098827030 (no frames / failed extraction)
[SKIP] 7602247963691289878_7602952772085943574 (no frames / failed extraction)
[SKIP] 7602249398457847062_7602706438569381142 (no frames / failed extraction)
[SKIP] 7602252479589322006_7602710905004018966 (no frames / failed extraction)
[SKIP] 7602260906663300374_7603059444066389270 (no frames / failed extraction)
[SKIP] 7602271814382849302_7602882172822834454 (no frames / failed extraction)
[SKIP] 7602310864481357078_7602647922227907862 (no frames / failed extraction)
[SKIP] 7602312802610531592_7604593851096976660 (no frames / failed extraction)
[SKIP] 7602376297129561366_7602579472767847702 (no frames / failed extraction)
[SKIP] 7602380228945644822_7602998633562197270 (no frames / failed extraction)
[SKIP] 7602389798820564227_7602719197398912278 (no frames / failed extraction)
[SKIP] 7602393643793648918_7602510910665624854 (no frames / failed extraction)
[SKIP] 7602395422874717462_7602982547936611606 (no frames / failed extraction)
[SKIP] 7602402488028876054_7602916875302898976 (no frames / failed extraction)
[SKIP] 7602405874400759047_7602473421427019026 (no frames / failed extraction)
[SKIP] 7602411358860102934_7602747902141664534 (no frames / failed extraction)
[SKIP] 7602418496676498711_7603388889381735712 (no frames / failed extraction)
[SKIP] 7602423244649483542_7603035091178097942 (no frames / failed extraction)
[SKIP] 7602580322869366038_7602742455183707414 (no frames / failed extraction)
[SKIP] 7602594689996410134_7603071616582503702 (no frames / failed extraction)
[SKIP] 7602614247180356885_7602647330415709462 (no frames / failed extraction)
[SKIP] 7602629799265488131_7602679961081761046 (no frames / failed extraction)
[SKIP] 7602663072544722198_7602769847151250710 (no frames / failed extraction)
[SKIP] 7602698902118157590_7603048226572274966 (no frames / failed extraction)
[SKIP] 7602712165912513814_7602756998052039958 (no frames / failed extraction)
[SKIP] 7602716194466073858_7602731198116498711 (no frames / failed extraction)
[SKIP] 7602756717650251030_7603150900827491586 (no frames / failed extraction)
[SKIP] 7602761656724196630_7603069792135826710 (no frames / failed extraction)
[SKIP] 7602776772869983510_7602780713779334422 (no frames / failed extraction)
[SKIP] 7603023017689566486_7603400137217543446 (no frames / failed extraction)
[SKIP] 7603726508284185876_7604510815655300372 (no frames / failed extraction)
[SKIP] 7603982549580385544_7604135707203964181 (no frames / failed extraction)
[SKIP] 7604033909038304532_7604549104487861512 (no frames / failed extraction)
[SKIP] 7604197852574665992_7604504344976755988 (no frames / failed extraction)
[SKIP] 7604249600865701142_7604624761112644882 (no frames / failed extraction)
Loaded 133 samples from /mlx/users/jiashuo.fan/playground/inference/active_cases/frames_cache
Pending: 133
Loading Molmo from /mnt/bn/bohanzhainas1/jiashuo/models/Molmo-7B-D-0924
Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.52, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
`torch_dtype` is deprecated! Use `dtype` instead!
Loading checkpoint shards: 0%| | 0/7 [00:00<?, ?it/s]
Loading checkpoint shards: 14%|█▍ | 1/7 [00:00<00:05, 1.09it/s]
Loading checkpoint shards: 29%|██▊ | 2/7 [00:01<00:05, 1.00s/it]
Loading checkpoint shards: 43%|████▎ | 3/7 [00:02<00:03, 1.07it/s]
Loading checkpoint shards: 57%|█████▋ | 4/7 [00:03<00:02, 1.12it/s]
Loading checkpoint shards: 71%|███████▏ | 5/7 [00:04<00:01, 1.10it/s]
Loading checkpoint shards: 86%|████████▌ | 6/7 [00:05<00:00, 1.17it/s]
Loading checkpoint shards: 100%|██████████| 7/7 [00:06<00:00, 1.11it/s]
Loading checkpoint shards: 100%|██████████| 7/7 [00:06<00:00, 1.10it/s]
ERROR on 7582864625457384725_7592503137240386834: 'NoneType' object has no attribute 'size'
[1/133] 7582864625457384725_7592503137240386834 | acc=0.000 (correct=0/0) | 2.49 samp/s
ERROR on 7583298662386650389_7603817886603300103: 'NoneType' object has no attribute 'size'
[2/133] 7583298662386650389_7603817886603300103 | acc=0.000 (correct=0/0) | 2.83 samp/s
ERROR on 7583769463078800643_7603057302106656022: 'NoneType' object has no attribute 'size'
[3/133] 7583769463078800643_7603057302106656022 | acc=0.000 (correct=0/0) | 3.02 samp/s
ERROR on 7584143881545977110_7593173975707028758: 'NoneType' object has no attribute 'size'
[4/133] 7584143881545977110_7593173975707028758 | acc=0.000 (correct=0/0) | 3.11 samp/s
ERROR on 7584459358449405202_7604337545559674132: 'NoneType' object has no attribute 'size'
[5/133] 7584459358449405202_7604337545559674132 | acc=0.000 (correct=0/0) | 3.14 samp/s
ERROR on 7584515446049656086_7592960395527146774: 'NoneType' object has no attribute 'size'
[6/133] 7584515446049656086_7592960395527146774 | acc=0.000 (correct=0/0) | 3.13 samp/s
ERROR on 7585337388545723681_7593386207040507169: 'NoneType' object has no attribute 'size'
[7/133] 7585337388545723681_7593386207040507169 | acc=0.000 (correct=0/0) | 3.13 samp/s
ERROR on 7586774649753718038_7593408077811207427: 'NoneType' object has no attribute 'size'
[8/133] 7586774649753718038_7593408077811207427 | acc=0.000 (correct=0/0) | 3.09 samp/s
ERROR on 7588310732303879432_7595998237404761362: 'NoneType' object has no attribute 'size'
[9/133] 7588310732303879432_7595998237404761362 | acc=0.000 (correct=0/0) | 3.10 samp/s
ERROR on 7589478401866616084_7592464439727623445: 'NoneType' object has no attribute 'size'
[10/133] 7589478401866616084_7592464439727623445 | acc=0.000 (correct=0/0) | 3.12 samp/s
ERROR on 7589598278531009813_7604139924731809045: 'NoneType' object has no attribute 'size'
[11/133] 7589598278531009813_7604139924731809045 | acc=0.000 (correct=0/0) | 3.15 samp/s
ERROR on 7590080459309124886_7602942433009159446: 'NoneType' object has no attribute 'size'
[12/133] 7590080459309124886_7602942433009159446 | acc=0.000 (correct=0/0) | 3.15 samp/s
ERROR on 7590122947935735062_7602760876478745878: 'NoneType' object has no attribute 'size'
[13/133] 7590122947935735062_7602760876478745878 | acc=0.000 (correct=0/0) | 3.16 samp/s
ERROR on 7590736059038698760_7604236963700329736: 'NoneType' object has no attribute 'size'
[14/133] 7590736059038698760_7604236963700329736 | acc=0.000 (correct=0/0) | 3.13 samp/s
ERROR on 7591396054570896660_7602174366645865736: 'NoneType' object has no attribute 'size'
[15/133] 7591396054570896660_7602174366645865736 | acc=0.000 (correct=0/0) | 3.17 samp/s
ERROR on 7591603142207474952_7592657430761295124: 'NoneType' object has no attribute 'size'
[16/133] 7591603142207474952_7592657430761295124 | acc=0.000 (correct=0/0) | 3.20 samp/s
ERROR on 7591633885876833543_7592914268626930952: 'NoneType' object has no attribute 'size'
[17/133] 7591633885876833543_7592914268626930952 | acc=0.000 (correct=0/0) | 3.23 samp/s
ERROR on 7592127916369022215_7592811493075225877: 'NoneType' object has no attribute 'size'
[18/133] 7592127916369022215_7592811493075225877 | acc=0.000 (correct=0/0) | 3.25 samp/s
ERROR on 7592292714314566934_7603000520394968342: 'NoneType' object has no attribute 'size'
[19/133] 7592292714314566934_7603000520394968342 | acc=0.000 (correct=0/0) | 3.27 samp/s
ERROR on 7592363769301388575_7592557472821382420: 'NoneType' object has no attribute 'size'
[20/133] 7592363769301388575_7592557472821382420 | acc=0.000 (correct=0/0) | 3.26 samp/s
ERROR on 7592379393456999688_7592812522206514452: 'NoneType' object has no attribute 'size'
[21/133] 7592379393456999688_7592812522206514452 | acc=0.000 (correct=0/0) | 3.25 samp/s
ERROR on 7592395525857627448_7592424707811446034: 'NoneType' object has no attribute 'size'
[22/133] 7592395525857627448_7592424707811446034 | acc=0.000 (correct=0/0) | 3.25 samp/s
ERROR on 7592396786472455445_7592776503407037716: 'NoneType' object has no attribute 'size'
[23/133] 7592396786472455445_7592776503407037716 | acc=0.000 (correct=0/0) | 3.25 samp/s
ERROR on 7592406759860423943_7592469167501102344: 'NoneType' object has no attribute 'size'
[24/133] 7592406759860423943_7592469167501102344 | acc=0.000 (correct=0/0) | 3.24 samp/s
ERROR on 7592439822283705607_7592708834959904001: 'NoneType' object has no attribute 'size'
[25/133] 7592439822283705607_7592708834959904001 | acc=0.000 (correct=0/0) | 3.24 samp/s
ERROR on 7592441861743136007_7592686503755582727: 'NoneType' object has no attribute 'size'
[26/133] 7592441861743136007_7592686503755582727 | acc=0.000 (correct=0/0) | 3.24 samp/s
ERROR on 7592612029127494934_7593372133087022358: 'NoneType' object has no attribute 'size'
[27/133] 7592612029127494934_7593372133087022358 | acc=0.000 (correct=0/0) | 3.24 samp/s
ERROR on 7592621669458480417_7593325946653003030: 'NoneType' object has no attribute 'size'
[28/133] 7592621669458480417_7593325946653003030 | acc=0.000 (correct=0/0) | 3.24 samp/s
ERROR on 7592630277092936980_7592934574200605974: 'NoneType' object has no attribute 'size'
[29/133] 7592630277092936980_7592934574200605974 | acc=0.000 (correct=0/0) | 3.24 samp/s
ERROR on 7592662940269006113_7593135968987696406: 'NoneType' object has no attribute 'size'
[30/133] 7592662940269006113_7593135968987696406 | acc=0.000 (correct=0/0) | 3.23 samp/s
ERROR on 7592695844491644178_7593247873295289622: 'NoneType' object has no attribute 'size'
[31/133] 7592695844491644178_7593247873295289622 | acc=0.000 (correct=0/0) | 3.23 samp/s
ERROR on 7592734749563653384_7593673083739802898: 'NoneType' object has no attribute 'size'
[32/133] 7592734749563653384_7593673083739802898 | acc=0.000 (correct=0/0) | 3.20 samp/s
ERROR on 7592983455659543830_7593423283710610710: 'NoneType' object has no attribute 'size'
[33/133] 7592983455659543830_7593423283710610710 | acc=0.000 (correct=0/0) | 3.20 samp/s
ERROR on 7593033792315575574_7593099150867172630: 'NoneType' object has no attribute 'size'
[34/133] 7593033792315575574_7593099150867172630 | acc=0.000 (correct=0/0) | 3.20 samp/s
ERROR on 7593219919349566741_7595664852438338823: 'NoneType' object has no attribute 'size'
[35/133] 7593219919349566741_7595664852438338823 | acc=0.000 (correct=0/0) | 3.20 samp/s
ERROR on 7593374120054656276_7604306674219863303: 'NoneType' object has no attribute 'size'
[36/133] 7593374120054656276_7604306674219863303 | acc=0.000 (correct=0/0) | 3.20 samp/s
ERROR on 7593727005841968391_7595431144884129035: 'NoneType' object has no attribute 'size'
[37/133] 7593727005841968391_7595431144884129035 | acc=0.000 (correct=0/0) | 3.22 samp/s
ERROR on 7593819989833026834_7604240520432520466: 'NoneType' object has no attribute 'size'
[38/133] 7593819989833026834_7604240520432520466 | acc=0.000 (correct=0/0) | 3.23 samp/s
ERROR on 7594557794372652309_7604204623724809479: 'NoneType' object has no attribute 'size'
[39/133] 7594557794372652309_7604204623724809479 | acc=0.000 (correct=0/0) | 3.24 samp/s
ERROR on 7594990951328746808_7595755849885289748: 'NoneType' object has no attribute 'size'
[40/133] 7594990951328746808_7595755849885289748 | acc=0.000 (correct=0/0) | 3.26 samp/s
ERROR on 7595380926247341332_7602338775099837714: 'NoneType' object has no attribute 'size'
[41/133] 7595380926247341332_7602338775099837714 | acc=0.000 (correct=0/0) | 3.28 samp/s
ERROR on 7595395129591024904_7595962701738741000: 'NoneType' object has no attribute 'size'
[42/133] 7595395129591024904_7595962701738741000 | acc=0.000 (correct=0/0) | 3.30 samp/s
ERROR on 7595407496525663506_7595842450577575179: 'NoneType' object has no attribute 'size'
[43/133] 7595407496525663506_7595842450577575179 | acc=0.000 (correct=0/0) | 3.30 samp/s
ERROR on 7595414619993246983_7595648604866350354: 'NoneType' object has no attribute 'size'
[44/133] 7595414619993246983_7595648604866350354 | acc=0.000 (correct=0/0) | 3.32 samp/s
ERROR on 7595460052346096914_7595599161152605447: 'NoneType' object has no attribute 'size'
[45/133] 7595460052346096914_7595599161152605447 | acc=0.000 (correct=0/0) | 3.33 samp/s
ERROR on 7595474031126646034_7595640420671982904: 'NoneType' object has no attribute 'size'
[46/133] 7595474031126646034_7595640420671982904 | acc=0.000 (correct=0/0) | 3.34 samp/s
ERROR on 7595812699439648007_7604520050434854152: 'NoneType' object has no attribute 'size'
[47/133] 7595812699439648007_7604520050434854152 | acc=0.000 (correct=0/0) | 3.34 samp/s
ERROR on 7597044647780764948_7604054478521748757: 'NoneType' object has no attribute 'size'
[48/133] 7597044647780764948_7604054478521748757 | acc=0.000 (correct=0/0) | 3.38 samp/s
ERROR on 7597788963738324232_7603763715422407957: 'NoneType' object has no attribute 'size'
[49/133] 7597788963738324232_7603763715422407957 | acc=0.000 (correct=0/0) | 3.40 samp/s
ERROR on 7598938266598952210_7604394570947890440: 'NoneType' object has no attribute 'size'
[50/133] 7598938266598952210_7604394570947890440 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7598981214132849942_7603041768992460054: 'NoneType' object has no attribute 'size'
[51/133] 7598981214132849942_7603041768992460054 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7599419411836964117_7602328110696090901: 'NoneType' object has no attribute 'size'
[52/133] 7599419411836964117_7602328110696090901 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7600049951300685076_7602626609417604370: 'NoneType' object has no attribute 'size'
[53/133] 7600049951300685076_7602626609417604370 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7600071116324900116_7602337842538368276: 'NoneType' object has no attribute 'size'
[54/133] 7600071116324900116_7602337842538368276 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7600138772541394198_7602907593710767382: 'NoneType' object has no attribute 'size'
[55/133] 7600138772541394198_7602907593710767382 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7600184266231745810_7603856182331051284: 'NoneType' object has no attribute 'size'
[56/133] 7600184266231745810_7603856182331051284 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7600267409701833992_7604407914765290759: 'NoneType' object has no attribute 'size'
[57/133] 7600267409701833992_7604407914765290759 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7600717184851053846_7603923738865782037: 'NoneType' object has no attribute 'size'
[58/133] 7600717184851053846_7603923738865782037 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7600822923275799828_7604562398480977159: 'NoneType' object has no attribute 'size'
[59/133] 7600822923275799828_7604562398480977159 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7600850853821418772_7604066449119857941: 'NoneType' object has no attribute 'size'
[60/133] 7600850853821418772_7604066449119857941 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7601115694347947294_7604552935992724744: 'NoneType' object has no attribute 'size'
[61/133] 7601115694347947294_7604552935992724744 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7601134749763030294_7602752793023204630: 'NoneType' object has no attribute 'size'
[62/133] 7601134749763030294_7602752793023204630 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7601312798609591574_7603019182405373206: 'NoneType' object has no attribute 'size'
[63/133] 7601312798609591574_7603019182405373206 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7601325066151890196_7602212400758000916: 'NoneType' object has no attribute 'size'
[64/133] 7601325066151890196_7602212400758000916 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7601574274960231702_7602694663203523862: 'NoneType' object has no attribute 'size'
[65/133] 7601574274960231702_7602694663203523862 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7601579424177343762_7602468045705006356: 'NoneType' object has no attribute 'size'
[66/133] 7601579424177343762_7602468045705006356 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7601586470712954115_7603338240136908054: 'NoneType' object has no attribute 'size'
[67/133] 7601586470712954115_7603338240136908054 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7601669855993007382_7603430768756477206: 'NoneType' object has no attribute 'size'
[68/133] 7601669855993007382_7603430768756477206 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7601674006034402582_7602604985834048790: 'NoneType' object has no attribute 'size'
[69/133] 7601674006034402582_7602604985834048790 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7601713212869856533_7602376124693351688: 'NoneType' object has no attribute 'size'
[70/133] 7601713212869856533_7602376124693351688 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7601765261200461078_7602681205758102806: 'NoneType' object has no attribute 'size'
[71/133] 7601765261200461078_7602681205758102806 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7601949430056602900_7602434611599265044: 'NoneType' object has no attribute 'size'
[72/133] 7601949430056602900_7602434611599265044 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7601970606141148438_7603078990038895894: 'NoneType' object has no attribute 'size'
[73/133] 7601970606141148438_7603078990038895894 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7602006928537046280_7602420413976546567: 'NoneType' object has no attribute 'size'
[74/133] 7602006928537046280_7602420413976546567 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7602009271491988743_7604143486912171271: 'NoneType' object has no attribute 'size'
[75/133] 7602009271491988743_7604143486912171271 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7602060282625674517_7602477809264495880: 'NoneType' object has no attribute 'size'
[76/133] 7602060282625674517_7602477809264495880 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7602082846525754631_7604271197852929287: 'NoneType' object has no attribute 'size'
[77/133] 7602082846525754631_7604271197852929287 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7602143673546984725_7604193599068146951: 'NoneType' object has no attribute 'size'
[78/133] 7602143673546984725_7604193599068146951 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7602256064427330839_7603098072029138198: 'NoneType' object has no attribute 'size'
[79/133] 7602256064427330839_7603098072029138198 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7602270984690748694_7603038892320705814: 'NoneType' object has no attribute 'size'
[80/133] 7602270984690748694_7603038892320705814 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7602366022103878929_7602669638551391496: 'NoneType' object has no attribute 'size'
[81/133] 7602366022103878929_7602669638551391496 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7602382902457863445_7604191296412159252: 'NoneType' object has no attribute 'size'
[82/133] 7602382902457863445_7604191296412159252 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7602700620830625046_7602866165395803414: 'NoneType' object has no attribute 'size'
[83/133] 7602700620830625046_7602866165395803414 | acc=0.000 (correct=0/0) | 3.45 samp/s
ERROR on 7602708595221875986_7604355289906826504: 'NoneType' object has no attribute 'size'
[84/133] 7602708595221875986_7604355289906826504 | acc=0.000 (correct=0/0) | 3.44 samp/s
ERROR on 7602725486715817219_7603481735279512854: 'NoneType' object has no attribute 'size'
[85/133] 7602725486715817219_7603481735279512854 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7602729554339253526_7603093834116943126: 'NoneType' object has no attribute 'size'
[86/133] 7602729554339253526_7603093834116943126 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7602843396088106262_7602995295437278486: 'NoneType' object has no attribute 'size'
[87/133] 7602843396088106262_7602995295437278486 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7602910354212932884_7603540991643061512: 'NoneType' object has no attribute 'size'
[88/133] 7602910354212932884_7603540991643061512 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7602915847211977992_7604398958395559186: 'NoneType' object has no attribute 'size'
[89/133] 7602915847211977992_7604398958395559186 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7602946751540071701_7604027006077963528: 'NoneType' object has no attribute 'size'
[90/133] 7602946751540071701_7604027006077963528 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7602984837502307606_7603479345079815446: 'NoneType' object has no attribute 'size'
[91/133] 7602984837502307606_7603479345079815446 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603022279718538516_7604021216944360712: 'NoneType' object has no attribute 'size'
[92/133] 7603022279718538516_7604021216944360712 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603057662082731286_7603508048769993987: 'NoneType' object has no attribute 'size'
[93/133] 7603057662082731286_7603508048769993987 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603072200341507329_7604142589331115280: 'NoneType' object has no attribute 'size'
[94/133] 7603072200341507329_7604142589331115280 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603075574315158806_7603118367762910486: 'NoneType' object has no attribute 'size'
[95/133] 7603075574315158806_7603118367762910486 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603079625559887125_7603753412768910612: 'NoneType' object has no attribute 'size'
[96/133] 7603079625559887125_7603753412768910612 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603090622093757718_7603453990323457303: 'NoneType' object has no attribute 'size'
[97/133] 7603090622093757718_7603453990323457303 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7603114436525870358_7603434420065848598: 'NoneType' object has no attribute 'size'
[98/133] 7603114436525870358_7603434420065848598 | acc=0.000 (correct=0/0) | 3.43 samp/s
ERROR on 7603118709992967446_7603141944167976214: 'NoneType' object has no attribute 'size'
[99/133] 7603118709992967446_7603141944167976214 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603138308822076692_7603806260097453332: 'NoneType' object has no attribute 'size'
[100/133] 7603138308822076692_7603806260097453332 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603146769148513566_7604566499847687445: 'NoneType' object has no attribute 'size'
[101/133] 7603146769148513566_7604566499847687445 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603165062764711186_7603407222311292181: 'NoneType' object has no attribute 'size'
[102/133] 7603165062764711186_7603407222311292181 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603185260158881045_7603447262575906068: 'NoneType' object has no attribute 'size'
[103/133] 7603185260158881045_7603447262575906068 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603389036920704264_7604264676964207892: 'NoneType' object has no attribute 'size'
[104/133] 7603389036920704264_7604264676964207892 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603529071628225800_7604036865682951445: 'NoneType' object has no attribute 'size'
[105/133] 7603529071628225800_7604036865682951445 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603529734223383828_7604261847734275335: 'NoneType' object has no attribute 'size'
[106/133] 7603529734223383828_7604261847734275335 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603597531121011986_7604027676130594055: 'NoneType' object has no attribute 'size'
[107/133] 7603597531121011986_7604027676130594055 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603814056583023893_7603967990312307975: 'NoneType' object has no attribute 'size'
[108/133] 7603814056583023893_7603967990312307975 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603818369183190303_7604234434702806280: 'NoneType' object has no attribute 'size'
[109/133] 7603818369183190303_7604234434702806280 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603852215660465416_7604220286849813781: 'NoneType' object has no attribute 'size'
[110/133] 7603852215660465416_7604220286849813781 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603876731857931540_7604241667603893524: 'NoneType' object has no attribute 'size'
[111/133] 7603876731857931540_7604241667603893524 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603884493329550609_7604041815758490901: 'NoneType' object has no attribute 'size'
[112/133] 7603884493329550609_7604041815758490901 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603902943246503175_7604332451615247623: 'NoneType' object has no attribute 'size'
[113/133] 7603902943246503175_7604332451615247623 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603921933381455125_7604079730609982741: 'NoneType' object has no attribute 'size'
[114/133] 7603921933381455125_7604079730609982741 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603932047878442257_7603978976616336661: 'NoneType' object has no attribute 'size'
[115/133] 7603932047878442257_7603978976616336661 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603947476332186901_7604063261130034433: 'NoneType' object has no attribute 'size'
[116/133] 7603947476332186901_7604063261130034433 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7603977624448175368_7604464746045230354: 'NoneType' object has no attribute 'size'
[117/133] 7603977624448175368_7604464746045230354 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603979300127214866_7604577411136621844: 'NoneType' object has no attribute 'size'
[118/133] 7603979300127214866_7604577411136621844 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7603993350802394389_7604087376469642517: 'NoneType' object has no attribute 'size'
[119/133] 7603993350802394389_7604087376469642517 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7604019342124043540_7604368885785070868: 'NoneType' object has no attribute 'size'
[120/133] 7604019342124043540_7604368885785070868 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7604023995578453256_7604406022966463752: 'NoneType' object has no attribute 'size'
[121/133] 7604023995578453256_7604406022966463752 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7604071937224199445_7604486246018075922: 'NoneType' object has no attribute 'size'
[122/133] 7604071937224199445_7604486246018075922 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7604117742802701576_7604523788599938321: 'NoneType' object has no attribute 'size'
[123/133] 7604117742802701576_7604523788599938321 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7604119657179630856_7604130070600437010: 'NoneType' object has no attribute 'size'
[124/133] 7604119657179630856_7604130070600437010 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7604120387240234260_7604264832187108629: 'NoneType' object has no attribute 'size'
[125/133] 7604120387240234260_7604264832187108629 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7604133644516494613_7604325341783493906: 'NoneType' object has no attribute 'size'
[126/133] 7604133644516494613_7604325341783493906 | acc=0.000 (correct=0/0) | 3.42 samp/s
ERROR on 7604138193516055815_7604239035036437780: 'NoneType' object has no attribute 'size'
[127/133] 7604138193516055815_7604239035036437780 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7604161389954862337_7604241413802380564: 'NoneType' object has no attribute 'size'
[128/133] 7604161389954862337_7604241413802380564 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7604192834694040850_7604553253086383381: 'NoneType' object has no attribute 'size'
[129/133] 7604192834694040850_7604553253086383381 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7604198893898763541_7604200050855775508: 'NoneType' object has no attribute 'size'
[130/133] 7604198893898763541_7604200050855775508 | acc=0.000 (correct=0/0) | 3.41 samp/s
ERROR on 7604221872682634503_7604297076985351432: 'NoneType' object has no attribute 'size'
[131/133] 7604221872682634503_7604297076985351432 | acc=0.000 (correct=0/0) | 3.40 samp/s
ERROR on 7604250553891310869_7604452867709127956: 'NoneType' object has no attribute 'size'
[132/133] 7604250553891310869_7604452867709127956 | acc=0.000 (correct=0/0) | 3.40 samp/s
ERROR on 7604250992779087122_7604343009810926869: 'NoneType' object has no attribute 'size'
[133/133] 7604250992779087122_7604343009810926869 | acc=0.000 (correct=0/0) | 3.40 samp/s
============================================================
DONE model=molmo_7b
accuracy: 0.0000 (0/0)
per-class: {}
parse_failures: 0
time: 39.1s (3.40 samp/s)
saved -> /mnt/bn/bohanzhainas1/jiashuo/exp/active_cases_eval/molmo_7b.json
|