File size: 104,916 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 | Model: phi35_vision
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Phi-3.5-vision-instruct
Model type: phi3_vision
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 Phi-3.5-vision from /mnt/bn/bohanzhainas1/jiashuo/models/Phi-3.5-vision-instruct
`torch_dtype` is deprecated! Use `dtype` instead!
Loading checkpoint shards: 0%| | 0/2 [00:00<?, ?it/s]
Loading checkpoint shards: 50%|βββββ | 1/2 [00:01<00:01, 1.11s/it]
Loading checkpoint shards: 100%|ββββββββββ| 2/2 [00:01<00:00, 1.14it/s]
Loading checkpoint shards: 100%|ββββββββββ| 2/2 [00:01<00:00, 1.10it/s]
/home/tiger/.local/lib/python3.11/site-packages/transformers/models/auto/image_processing_auto.py:647: FutureWarning: The image_processor_class argument is deprecated and will be removed in v4.42. Please use `slow_image_processor_class`, or `fast_image_processor_class` instead
warnings.warn(
ERROR on 7582864625457384725_7592503137240386834: 'DynamicCache' object has no attribute 'seen_tokens'
[1/133] 7582864625457384725_7592503137240386834 | acc=0.000 (correct=0/0) | 3.05 samp/s
ERROR on 7583298662386650389_7603817886603300103: 'DynamicCache' object has no attribute 'seen_tokens'
[2/133] 7583298662386650389_7603817886603300103 | acc=0.000 (correct=0/0) | 3.71 samp/s
ERROR on 7583769463078800643_7603057302106656022: 'DynamicCache' object has no attribute 'seen_tokens'
[3/133] 7583769463078800643_7603057302106656022 | acc=0.000 (correct=0/0) | 4.08 samp/s
ERROR on 7584143881545977110_7593173975707028758: 'DynamicCache' object has no attribute 'seen_tokens'
[4/133] 7584143881545977110_7593173975707028758 | acc=0.000 (correct=0/0) | 4.39 samp/s
ERROR on 7584459358449405202_7604337545559674132: 'DynamicCache' object has no attribute 'seen_tokens'
[5/133] 7584459358449405202_7604337545559674132 | acc=0.000 (correct=0/0) | 4.48 samp/s
ERROR on 7584515446049656086_7592960395527146774: 'DynamicCache' object has no attribute 'seen_tokens'
[6/133] 7584515446049656086_7592960395527146774 | acc=0.000 (correct=0/0) | 4.53 samp/s
ERROR on 7585337388545723681_7593386207040507169: 'DynamicCache' object has no attribute 'seen_tokens'
[7/133] 7585337388545723681_7593386207040507169 | acc=0.000 (correct=0/0) | 4.56 samp/s
ERROR on 7586774649753718038_7593408077811207427: 'DynamicCache' object has no attribute 'seen_tokens'
[8/133] 7586774649753718038_7593408077811207427 | acc=0.000 (correct=0/0) | 4.59 samp/s
ERROR on 7588310732303879432_7595998237404761362: 'DynamicCache' object has no attribute 'seen_tokens'
[9/133] 7588310732303879432_7595998237404761362 | acc=0.000 (correct=0/0) | 4.61 samp/s
ERROR on 7589478401866616084_7592464439727623445: 'DynamicCache' object has no attribute 'seen_tokens'
[10/133] 7589478401866616084_7592464439727623445 | acc=0.000 (correct=0/0) | 4.64 samp/s
ERROR on 7589598278531009813_7604139924731809045: 'DynamicCache' object has no attribute 'seen_tokens'
[11/133] 7589598278531009813_7604139924731809045 | acc=0.000 (correct=0/0) | 4.69 samp/s
ERROR on 7590080459309124886_7602942433009159446: 'DynamicCache' object has no attribute 'seen_tokens'
[12/133] 7590080459309124886_7602942433009159446 | acc=0.000 (correct=0/0) | 4.69 samp/s
ERROR on 7590122947935735062_7602760876478745878: 'DynamicCache' object has no attribute 'seen_tokens'
[13/133] 7590122947935735062_7602760876478745878 | acc=0.000 (correct=0/0) | 4.72 samp/s
ERROR on 7590736059038698760_7604236963700329736: 'DynamicCache' object has no attribute 'seen_tokens'
[14/133] 7590736059038698760_7604236963700329736 | acc=0.000 (correct=0/0) | 4.70 samp/s
ERROR on 7591396054570896660_7602174366645865736: 'DynamicCache' object has no attribute 'seen_tokens'
[15/133] 7591396054570896660_7602174366645865736 | acc=0.000 (correct=0/0) | 4.71 samp/s
ERROR on 7591603142207474952_7592657430761295124: 'DynamicCache' object has no attribute 'seen_tokens'
[16/133] 7591603142207474952_7592657430761295124 | acc=0.000 (correct=0/0) | 4.72 samp/s
ERROR on 7591633885876833543_7592914268626930952: 'DynamicCache' object has no attribute 'seen_tokens'
[17/133] 7591633885876833543_7592914268626930952 | acc=0.000 (correct=0/0) | 4.72 samp/s
ERROR on 7592127916369022215_7592811493075225877: 'DynamicCache' object has no attribute 'seen_tokens'
[18/133] 7592127916369022215_7592811493075225877 | acc=0.000 (correct=0/0) | 4.70 samp/s
ERROR on 7592292714314566934_7603000520394968342: 'DynamicCache' object has no attribute 'seen_tokens'
[19/133] 7592292714314566934_7603000520394968342 | acc=0.000 (correct=0/0) | 4.70 samp/s
ERROR on 7592363769301388575_7592557472821382420: 'DynamicCache' object has no attribute 'seen_tokens'
[20/133] 7592363769301388575_7592557472821382420 | acc=0.000 (correct=0/0) | 4.71 samp/s
ERROR on 7592379393456999688_7592812522206514452: 'DynamicCache' object has no attribute 'seen_tokens'
[21/133] 7592379393456999688_7592812522206514452 | acc=0.000 (correct=0/0) | 4.71 samp/s
ERROR on 7592395525857627448_7592424707811446034: 'DynamicCache' object has no attribute 'seen_tokens'
[22/133] 7592395525857627448_7592424707811446034 | acc=0.000 (correct=0/0) | 4.71 samp/s
ERROR on 7592396786472455445_7592776503407037716: 'DynamicCache' object has no attribute 'seen_tokens'
[23/133] 7592396786472455445_7592776503407037716 | acc=0.000 (correct=0/0) | 4.72 samp/s
ERROR on 7592406759860423943_7592469167501102344: 'DynamicCache' object has no attribute 'seen_tokens'
[24/133] 7592406759860423943_7592469167501102344 | acc=0.000 (correct=0/0) | 4.72 samp/s
ERROR on 7592439822283705607_7592708834959904001: 'DynamicCache' object has no attribute 'seen_tokens'
[25/133] 7592439822283705607_7592708834959904001 | acc=0.000 (correct=0/0) | 4.72 samp/s
ERROR on 7592441861743136007_7592686503755582727: 'DynamicCache' object has no attribute 'seen_tokens'
[26/133] 7592441861743136007_7592686503755582727 | acc=0.000 (correct=0/0) | 4.72 samp/s
ERROR on 7592612029127494934_7593372133087022358: 'DynamicCache' object has no attribute 'seen_tokens'
[27/133] 7592612029127494934_7593372133087022358 | acc=0.000 (correct=0/0) | 4.73 samp/s
ERROR on 7592621669458480417_7593325946653003030: 'DynamicCache' object has no attribute 'seen_tokens'
[28/133] 7592621669458480417_7593325946653003030 | acc=0.000 (correct=0/0) | 4.74 samp/s
ERROR on 7592630277092936980_7592934574200605974: 'DynamicCache' object has no attribute 'seen_tokens'
[29/133] 7592630277092936980_7592934574200605974 | acc=0.000 (correct=0/0) | 4.74 samp/s
ERROR on 7592662940269006113_7593135968987696406: 'DynamicCache' object has no attribute 'seen_tokens'
[30/133] 7592662940269006113_7593135968987696406 | acc=0.000 (correct=0/0) | 4.75 samp/s
ERROR on 7592695844491644178_7593247873295289622: 'DynamicCache' object has no attribute 'seen_tokens'
[31/133] 7592695844491644178_7593247873295289622 | acc=0.000 (correct=0/0) | 4.76 samp/s
ERROR on 7592734749563653384_7593673083739802898: 'DynamicCache' object has no attribute 'seen_tokens'
[32/133] 7592734749563653384_7593673083739802898 | acc=0.000 (correct=0/0) | 4.76 samp/s
ERROR on 7592983455659543830_7593423283710610710: 'DynamicCache' object has no attribute 'seen_tokens'
[33/133] 7592983455659543830_7593423283710610710 | acc=0.000 (correct=0/0) | 4.77 samp/s
ERROR on 7593033792315575574_7593099150867172630: 'DynamicCache' object has no attribute 'seen_tokens'
[34/133] 7593033792315575574_7593099150867172630 | acc=0.000 (correct=0/0) | 4.77 samp/s
ERROR on 7593219919349566741_7595664852438338823: 'DynamicCache' object has no attribute 'seen_tokens'
[35/133] 7593219919349566741_7595664852438338823 | acc=0.000 (correct=0/0) | 4.79 samp/s
ERROR on 7593374120054656276_7604306674219863303: 'DynamicCache' object has no attribute 'seen_tokens'
[36/133] 7593374120054656276_7604306674219863303 | acc=0.000 (correct=0/0) | 4.79 samp/s
ERROR on 7593727005841968391_7595431144884129035: 'DynamicCache' object has no attribute 'seen_tokens'
[37/133] 7593727005841968391_7595431144884129035 | acc=0.000 (correct=0/0) | 4.81 samp/s
ERROR on 7593819989833026834_7604240520432520466: 'DynamicCache' object has no attribute 'seen_tokens'
[38/133] 7593819989833026834_7604240520432520466 | acc=0.000 (correct=0/0) | 4.81 samp/s
ERROR on 7594557794372652309_7604204623724809479: 'DynamicCache' object has no attribute 'seen_tokens'
[39/133] 7594557794372652309_7604204623724809479 | acc=0.000 (correct=0/0) | 4.82 samp/s
ERROR on 7594990951328746808_7595755849885289748: 'DynamicCache' object has no attribute 'seen_tokens'
[40/133] 7594990951328746808_7595755849885289748 | acc=0.000 (correct=0/0) | 4.84 samp/s
ERROR on 7595380926247341332_7602338775099837714: 'DynamicCache' object has no attribute 'seen_tokens'
[41/133] 7595380926247341332_7602338775099837714 | acc=0.000 (correct=0/0) | 4.84 samp/s
ERROR on 7595395129591024904_7595962701738741000: 'DynamicCache' object has no attribute 'seen_tokens'
[42/133] 7595395129591024904_7595962701738741000 | acc=0.000 (correct=0/0) | 4.86 samp/s
ERROR on 7595407496525663506_7595842450577575179: 'DynamicCache' object has no attribute 'seen_tokens'
[43/133] 7595407496525663506_7595842450577575179 | acc=0.000 (correct=0/0) | 4.86 samp/s
ERROR on 7595414619993246983_7595648604866350354: 'DynamicCache' object has no attribute 'seen_tokens'
[44/133] 7595414619993246983_7595648604866350354 | acc=0.000 (correct=0/0) | 4.87 samp/s
ERROR on 7595460052346096914_7595599161152605447: 'DynamicCache' object has no attribute 'seen_tokens'
[45/133] 7595460052346096914_7595599161152605447 | acc=0.000 (correct=0/0) | 4.88 samp/s
ERROR on 7595474031126646034_7595640420671982904: 'DynamicCache' object has no attribute 'seen_tokens'
[46/133] 7595474031126646034_7595640420671982904 | acc=0.000 (correct=0/0) | 4.87 samp/s
ERROR on 7595812699439648007_7604520050434854152: 'DynamicCache' object has no attribute 'seen_tokens'
[47/133] 7595812699439648007_7604520050434854152 | acc=0.000 (correct=0/0) | 4.87 samp/s
ERROR on 7597044647780764948_7604054478521748757: 'DynamicCache' object has no attribute 'seen_tokens'
[48/133] 7597044647780764948_7604054478521748757 | acc=0.000 (correct=0/0) | 4.88 samp/s
ERROR on 7597788963738324232_7603763715422407957: 'DynamicCache' object has no attribute 'seen_tokens'
[49/133] 7597788963738324232_7603763715422407957 | acc=0.000 (correct=0/0) | 4.88 samp/s
ERROR on 7598938266598952210_7604394570947890440: 'DynamicCache' object has no attribute 'seen_tokens'
[50/133] 7598938266598952210_7604394570947890440 | acc=0.000 (correct=0/0) | 4.89 samp/s
ERROR on 7598981214132849942_7603041768992460054: 'DynamicCache' object has no attribute 'seen_tokens'
[51/133] 7598981214132849942_7603041768992460054 | acc=0.000 (correct=0/0) | 4.89 samp/s
ERROR on 7599419411836964117_7602328110696090901: 'DynamicCache' object has no attribute 'seen_tokens'
[52/133] 7599419411836964117_7602328110696090901 | acc=0.000 (correct=0/0) | 4.89 samp/s
ERROR on 7600049951300685076_7602626609417604370: 'DynamicCache' object has no attribute 'seen_tokens'
[53/133] 7600049951300685076_7602626609417604370 | acc=0.000 (correct=0/0) | 4.89 samp/s
ERROR on 7600071116324900116_7602337842538368276: 'DynamicCache' object has no attribute 'seen_tokens'
[54/133] 7600071116324900116_7602337842538368276 | acc=0.000 (correct=0/0) | 4.89 samp/s
ERROR on 7600138772541394198_7602907593710767382: 'DynamicCache' object has no attribute 'seen_tokens'
[55/133] 7600138772541394198_7602907593710767382 | acc=0.000 (correct=0/0) | 4.90 samp/s
ERROR on 7600184266231745810_7603856182331051284: 'DynamicCache' object has no attribute 'seen_tokens'
[56/133] 7600184266231745810_7603856182331051284 | acc=0.000 (correct=0/0) | 4.90 samp/s
ERROR on 7600267409701833992_7604407914765290759: 'DynamicCache' object has no attribute 'seen_tokens'
[57/133] 7600267409701833992_7604407914765290759 | acc=0.000 (correct=0/0) | 4.91 samp/s
ERROR on 7600717184851053846_7603923738865782037: 'DynamicCache' object has no attribute 'seen_tokens'
[58/133] 7600717184851053846_7603923738865782037 | acc=0.000 (correct=0/0) | 4.91 samp/s
ERROR on 7600822923275799828_7604562398480977159: 'DynamicCache' object has no attribute 'seen_tokens'
[59/133] 7600822923275799828_7604562398480977159 | acc=0.000 (correct=0/0) | 4.91 samp/s
ERROR on 7600850853821418772_7604066449119857941: 'DynamicCache' object has no attribute 'seen_tokens'
[60/133] 7600850853821418772_7604066449119857941 | acc=0.000 (correct=0/0) | 4.92 samp/s
ERROR on 7601115694347947294_7604552935992724744: 'DynamicCache' object has no attribute 'seen_tokens'
[61/133] 7601115694347947294_7604552935992724744 | acc=0.000 (correct=0/0) | 4.93 samp/s
ERROR on 7601134749763030294_7602752793023204630: 'DynamicCache' object has no attribute 'seen_tokens'
[62/133] 7601134749763030294_7602752793023204630 | acc=0.000 (correct=0/0) | 4.93 samp/s
ERROR on 7601312798609591574_7603019182405373206: 'DynamicCache' object has no attribute 'seen_tokens'
[63/133] 7601312798609591574_7603019182405373206 | acc=0.000 (correct=0/0) | 4.93 samp/s
ERROR on 7601325066151890196_7602212400758000916: 'DynamicCache' object has no attribute 'seen_tokens'
[64/133] 7601325066151890196_7602212400758000916 | acc=0.000 (correct=0/0) | 4.93 samp/s
ERROR on 7601574274960231702_7602694663203523862: 'DynamicCache' object has no attribute 'seen_tokens'
[65/133] 7601574274960231702_7602694663203523862 | acc=0.000 (correct=0/0) | 4.93 samp/s
ERROR on 7601579424177343762_7602468045705006356: 'DynamicCache' object has no attribute 'seen_tokens'
[66/133] 7601579424177343762_7602468045705006356 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7601586470712954115_7603338240136908054: 'DynamicCache' object has no attribute 'seen_tokens'
[67/133] 7601586470712954115_7603338240136908054 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7601669855993007382_7603430768756477206: 'DynamicCache' object has no attribute 'seen_tokens'
[68/133] 7601669855993007382_7603430768756477206 | acc=0.000 (correct=0/0) | 4.93 samp/s
ERROR on 7601674006034402582_7602604985834048790: 'DynamicCache' object has no attribute 'seen_tokens'
[69/133] 7601674006034402582_7602604985834048790 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7601713212869856533_7602376124693351688: 'DynamicCache' object has no attribute 'seen_tokens'
[70/133] 7601713212869856533_7602376124693351688 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7601765261200461078_7602681205758102806: 'DynamicCache' object has no attribute 'seen_tokens'
[71/133] 7601765261200461078_7602681205758102806 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7601949430056602900_7602434611599265044: 'DynamicCache' object has no attribute 'seen_tokens'
[72/133] 7601949430056602900_7602434611599265044 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7601970606141148438_7603078990038895894: 'DynamicCache' object has no attribute 'seen_tokens'
[73/133] 7601970606141148438_7603078990038895894 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602006928537046280_7602420413976546567: 'DynamicCache' object has no attribute 'seen_tokens'
[74/133] 7602006928537046280_7602420413976546567 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602009271491988743_7604143486912171271: 'DynamicCache' object has no attribute 'seen_tokens'
[75/133] 7602009271491988743_7604143486912171271 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602060282625674517_7602477809264495880: 'DynamicCache' object has no attribute 'seen_tokens'
[76/133] 7602060282625674517_7602477809264495880 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602082846525754631_7604271197852929287: 'DynamicCache' object has no attribute 'seen_tokens'
[77/133] 7602082846525754631_7604271197852929287 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602143673546984725_7604193599068146951: 'DynamicCache' object has no attribute 'seen_tokens'
[78/133] 7602143673546984725_7604193599068146951 | acc=0.000 (correct=0/0) | 4.96 samp/s
ERROR on 7602256064427330839_7603098072029138198: 'DynamicCache' object has no attribute 'seen_tokens'
[79/133] 7602256064427330839_7603098072029138198 | acc=0.000 (correct=0/0) | 4.96 samp/s
ERROR on 7602270984690748694_7603038892320705814: 'DynamicCache' object has no attribute 'seen_tokens'
[80/133] 7602270984690748694_7603038892320705814 | acc=0.000 (correct=0/0) | 4.96 samp/s
ERROR on 7602366022103878929_7602669638551391496: 'DynamicCache' object has no attribute 'seen_tokens'
[81/133] 7602366022103878929_7602669638551391496 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602382902457863445_7604191296412159252: 'DynamicCache' object has no attribute 'seen_tokens'
[82/133] 7602382902457863445_7604191296412159252 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602700620830625046_7602866165395803414: 'DynamicCache' object has no attribute 'seen_tokens'
[83/133] 7602700620830625046_7602866165395803414 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602708595221875986_7604355289906826504: 'DynamicCache' object has no attribute 'seen_tokens'
[84/133] 7602708595221875986_7604355289906826504 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602725486715817219_7603481735279512854: 'DynamicCache' object has no attribute 'seen_tokens'
[85/133] 7602725486715817219_7603481735279512854 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602729554339253526_7603093834116943126: 'DynamicCache' object has no attribute 'seen_tokens'
[86/133] 7602729554339253526_7603093834116943126 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602843396088106262_7602995295437278486: 'DynamicCache' object has no attribute 'seen_tokens'
[87/133] 7602843396088106262_7602995295437278486 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602910354212932884_7603540991643061512: 'DynamicCache' object has no attribute 'seen_tokens'
[88/133] 7602910354212932884_7603540991643061512 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602915847211977992_7604398958395559186: 'DynamicCache' object has no attribute 'seen_tokens'
[89/133] 7602915847211977992_7604398958395559186 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602946751540071701_7604027006077963528: 'DynamicCache' object has no attribute 'seen_tokens'
[90/133] 7602946751540071701_7604027006077963528 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7602984837502307606_7603479345079815446: 'DynamicCache' object has no attribute 'seen_tokens'
[91/133] 7602984837502307606_7603479345079815446 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603022279718538516_7604021216944360712: 'DynamicCache' object has no attribute 'seen_tokens'
[92/133] 7603022279718538516_7604021216944360712 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603057662082731286_7603508048769993987: 'DynamicCache' object has no attribute 'seen_tokens'
[93/133] 7603057662082731286_7603508048769993987 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603072200341507329_7604142589331115280: 'DynamicCache' object has no attribute 'seen_tokens'
[94/133] 7603072200341507329_7604142589331115280 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603075574315158806_7603118367762910486: 'DynamicCache' object has no attribute 'seen_tokens'
[95/133] 7603075574315158806_7603118367762910486 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603079625559887125_7603753412768910612: 'DynamicCache' object has no attribute 'seen_tokens'
[96/133] 7603079625559887125_7603753412768910612 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603090622093757718_7603453990323457303: 'DynamicCache' object has no attribute 'seen_tokens'
[97/133] 7603090622093757718_7603453990323457303 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603114436525870358_7603434420065848598: 'DynamicCache' object has no attribute 'seen_tokens'
[98/133] 7603114436525870358_7603434420065848598 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603118709992967446_7603141944167976214: 'DynamicCache' object has no attribute 'seen_tokens'
[99/133] 7603118709992967446_7603141944167976214 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603138308822076692_7603806260097453332: 'DynamicCache' object has no attribute 'seen_tokens'
[100/133] 7603138308822076692_7603806260097453332 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603146769148513566_7604566499847687445: 'DynamicCache' object has no attribute 'seen_tokens'
[101/133] 7603146769148513566_7604566499847687445 | acc=0.000 (correct=0/0) | 4.96 samp/s
ERROR on 7603165062764711186_7603407222311292181: 'DynamicCache' object has no attribute 'seen_tokens'
[102/133] 7603165062764711186_7603407222311292181 | acc=0.000 (correct=0/0) | 4.96 samp/s
ERROR on 7603185260158881045_7603447262575906068: 'DynamicCache' object has no attribute 'seen_tokens'
[103/133] 7603185260158881045_7603447262575906068 | acc=0.000 (correct=0/0) | 4.96 samp/s
ERROR on 7603389036920704264_7604264676964207892: 'DynamicCache' object has no attribute 'seen_tokens'
[104/133] 7603389036920704264_7604264676964207892 | acc=0.000 (correct=0/0) | 4.96 samp/s
ERROR on 7603529071628225800_7604036865682951445: 'DynamicCache' object has no attribute 'seen_tokens'
[105/133] 7603529071628225800_7604036865682951445 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603529734223383828_7604261847734275335: 'DynamicCache' object has no attribute 'seen_tokens'
[106/133] 7603529734223383828_7604261847734275335 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603597531121011986_7604027676130594055: 'DynamicCache' object has no attribute 'seen_tokens'
[107/133] 7603597531121011986_7604027676130594055 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603814056583023893_7603967990312307975: 'DynamicCache' object has no attribute 'seen_tokens'
[108/133] 7603814056583023893_7603967990312307975 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7603818369183190303_7604234434702806280: 'DynamicCache' object has no attribute 'seen_tokens'
[109/133] 7603818369183190303_7604234434702806280 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7603852215660465416_7604220286849813781: 'DynamicCache' object has no attribute 'seen_tokens'
[110/133] 7603852215660465416_7604220286849813781 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7603876731857931540_7604241667603893524: 'DynamicCache' object has no attribute 'seen_tokens'
[111/133] 7603876731857931540_7604241667603893524 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7603884493329550609_7604041815758490901: 'DynamicCache' object has no attribute 'seen_tokens'
[112/133] 7603884493329550609_7604041815758490901 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7603902943246503175_7604332451615247623: 'DynamicCache' object has no attribute 'seen_tokens'
[113/133] 7603902943246503175_7604332451615247623 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7603921933381455125_7604079730609982741: 'DynamicCache' object has no attribute 'seen_tokens'
[114/133] 7603921933381455125_7604079730609982741 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7603932047878442257_7603978976616336661: 'DynamicCache' object has no attribute 'seen_tokens'
[115/133] 7603932047878442257_7603978976616336661 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7603947476332186901_7604063261130034433: 'DynamicCache' object has no attribute 'seen_tokens'
[116/133] 7603947476332186901_7604063261130034433 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603977624448175368_7604464746045230354: 'DynamicCache' object has no attribute 'seen_tokens'
[117/133] 7603977624448175368_7604464746045230354 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603979300127214866_7604577411136621844: 'DynamicCache' object has no attribute 'seen_tokens'
[118/133] 7603979300127214866_7604577411136621844 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7603993350802394389_7604087376469642517: 'DynamicCache' object has no attribute 'seen_tokens'
[119/133] 7603993350802394389_7604087376469642517 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7604019342124043540_7604368885785070868: 'DynamicCache' object has no attribute 'seen_tokens'
[120/133] 7604019342124043540_7604368885785070868 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7604023995578453256_7604406022966463752: 'DynamicCache' object has no attribute 'seen_tokens'
[121/133] 7604023995578453256_7604406022966463752 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7604071937224199445_7604486246018075922: 'DynamicCache' object has no attribute 'seen_tokens'
[122/133] 7604071937224199445_7604486246018075922 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7604117742802701576_7604523788599938321: 'DynamicCache' object has no attribute 'seen_tokens'
[123/133] 7604117742802701576_7604523788599938321 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7604119657179630856_7604130070600437010: 'DynamicCache' object has no attribute 'seen_tokens'
[124/133] 7604119657179630856_7604130070600437010 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7604120387240234260_7604264832187108629: 'DynamicCache' object has no attribute 'seen_tokens'
[125/133] 7604120387240234260_7604264832187108629 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7604133644516494613_7604325341783493906: 'DynamicCache' object has no attribute 'seen_tokens'
[126/133] 7604133644516494613_7604325341783493906 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7604138193516055815_7604239035036437780: 'DynamicCache' object has no attribute 'seen_tokens'
[127/133] 7604138193516055815_7604239035036437780 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7604161389954862337_7604241413802380564: 'DynamicCache' object has no attribute 'seen_tokens'
[128/133] 7604161389954862337_7604241413802380564 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7604192834694040850_7604553253086383381: 'DynamicCache' object has no attribute 'seen_tokens'
[129/133] 7604192834694040850_7604553253086383381 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7604198893898763541_7604200050855775508: 'DynamicCache' object has no attribute 'seen_tokens'
[130/133] 7604198893898763541_7604200050855775508 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7604221872682634503_7604297076985351432: 'DynamicCache' object has no attribute 'seen_tokens'
[131/133] 7604221872682634503_7604297076985351432 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7604250553891310869_7604452867709127956: 'DynamicCache' object has no attribute 'seen_tokens'
[132/133] 7604250553891310869_7604452867709127956 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7604250992779087122_7604343009810926869: 'DynamicCache' object has no attribute 'seen_tokens'
[133/133] 7604250992779087122_7604343009810926869 | acc=0.000 (correct=0/0) | 4.95 samp/s
============================================================
DONE model=phi35_vision
accuracy: 0.0000 (0/0)
per-class: {}
parse_failures: 0
time: 26.9s (4.94 samp/s)
saved -> /mnt/bn/bohanzhainas1/jiashuo/exp/active_cases_eval/phi35_vision.json
Model: phi35_vision
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Phi-3.5-vision-instruct
Model type: phi3_vision
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 Phi-3.5-vision from /mnt/bn/bohanzhainas1/jiashuo/models/Phi-3.5-vision-instruct
`torch_dtype` is deprecated! Use `dtype` instead!
Loading checkpoint shards: 0%| | 0/2 [00:00<?, ?it/s]
Loading checkpoint shards: 50%|βββββ | 1/2 [00:01<00:01, 1.18s/it]
Loading checkpoint shards: 100%|ββββββββββ| 2/2 [00:01<00:00, 1.08it/s]
Loading checkpoint shards: 100%|ββββββββββ| 2/2 [00:01<00:00, 1.04it/s]
/home/tiger/.local/lib/python3.11/site-packages/transformers/models/auto/image_processing_auto.py:647: FutureWarning: The image_processor_class argument is deprecated and will be removed in v4.42. Please use `slow_image_processor_class`, or `fast_image_processor_class` instead
warnings.warn(
past_key_values should not be None in from_legacy_cache()
ERROR on 7582864625457384725_7592503137240386834: 'DynamicCache' object has no attribute 'get_usable_length'
[1/133] 7582864625457384725_7592503137240386834 | acc=0.000 (correct=0/0) | 2.08 samp/s
ERROR on 7583298662386650389_7603817886603300103: 'DynamicCache' object has no attribute 'get_usable_length'
[2/133] 7583298662386650389_7603817886603300103 | acc=0.000 (correct=0/0) | 2.89 samp/s
ERROR on 7583769463078800643_7603057302106656022: 'DynamicCache' object has no attribute 'get_usable_length'
[3/133] 7583769463078800643_7603057302106656022 | acc=0.000 (correct=0/0) | 3.40 samp/s
ERROR on 7584143881545977110_7593173975707028758: 'DynamicCache' object has no attribute 'get_usable_length'
[4/133] 7584143881545977110_7593173975707028758 | acc=0.000 (correct=0/0) | 3.78 samp/s
ERROR on 7584459358449405202_7604337545559674132: 'DynamicCache' object has no attribute 'get_usable_length'
[5/133] 7584459358449405202_7604337545559674132 | acc=0.000 (correct=0/0) | 4.00 samp/s
ERROR on 7584515446049656086_7592960395527146774: 'DynamicCache' object has no attribute 'get_usable_length'
[6/133] 7584515446049656086_7592960395527146774 | acc=0.000 (correct=0/0) | 4.12 samp/s
ERROR on 7585337388545723681_7593386207040507169: 'DynamicCache' object has no attribute 'get_usable_length'
[7/133] 7585337388545723681_7593386207040507169 | acc=0.000 (correct=0/0) | 4.24 samp/s
ERROR on 7586774649753718038_7593408077811207427: 'DynamicCache' object has no attribute 'get_usable_length'
[8/133] 7586774649753718038_7593408077811207427 | acc=0.000 (correct=0/0) | 4.31 samp/s
ERROR on 7588310732303879432_7595998237404761362: 'DynamicCache' object has no attribute 'get_usable_length'
[9/133] 7588310732303879432_7595998237404761362 | acc=0.000 (correct=0/0) | 4.37 samp/s
ERROR on 7589478401866616084_7592464439727623445: 'DynamicCache' object has no attribute 'get_usable_length'
[10/133] 7589478401866616084_7592464439727623445 | acc=0.000 (correct=0/0) | 4.43 samp/s
ERROR on 7589598278531009813_7604139924731809045: 'DynamicCache' object has no attribute 'get_usable_length'
[11/133] 7589598278531009813_7604139924731809045 | acc=0.000 (correct=0/0) | 4.51 samp/s
ERROR on 7590080459309124886_7602942433009159446: 'DynamicCache' object has no attribute 'get_usable_length'
[12/133] 7590080459309124886_7602942433009159446 | acc=0.000 (correct=0/0) | 4.53 samp/s
ERROR on 7590122947935735062_7602760876478745878: 'DynamicCache' object has no attribute 'get_usable_length'
[13/133] 7590122947935735062_7602760876478745878 | acc=0.000 (correct=0/0) | 4.46 samp/s
ERROR on 7590736059038698760_7604236963700329736: 'DynamicCache' object has no attribute 'get_usable_length'
[14/133] 7590736059038698760_7604236963700329736 | acc=0.000 (correct=0/0) | 4.44 samp/s
ERROR on 7591396054570896660_7602174366645865736: 'DynamicCache' object has no attribute 'get_usable_length'
[15/133] 7591396054570896660_7602174366645865736 | acc=0.000 (correct=0/0) | 4.48 samp/s
ERROR on 7591603142207474952_7592657430761295124: 'DynamicCache' object has no attribute 'get_usable_length'
[16/133] 7591603142207474952_7592657430761295124 | acc=0.000 (correct=0/0) | 4.51 samp/s
ERROR on 7591633885876833543_7592914268626930952: 'DynamicCache' object has no attribute 'get_usable_length'
[17/133] 7591633885876833543_7592914268626930952 | acc=0.000 (correct=0/0) | 4.54 samp/s
ERROR on 7592127916369022215_7592811493075225877: 'DynamicCache' object has no attribute 'get_usable_length'
[18/133] 7592127916369022215_7592811493075225877 | acc=0.000 (correct=0/0) | 4.53 samp/s
ERROR on 7592292714314566934_7603000520394968342: 'DynamicCache' object has no attribute 'get_usable_length'
[19/133] 7592292714314566934_7603000520394968342 | acc=0.000 (correct=0/0) | 4.55 samp/s
ERROR on 7592363769301388575_7592557472821382420: 'DynamicCache' object has no attribute 'get_usable_length'
[20/133] 7592363769301388575_7592557472821382420 | acc=0.000 (correct=0/0) | 4.57 samp/s
ERROR on 7592379393456999688_7592812522206514452: 'DynamicCache' object has no attribute 'get_usable_length'
[21/133] 7592379393456999688_7592812522206514452 | acc=0.000 (correct=0/0) | 4.59 samp/s
ERROR on 7592395525857627448_7592424707811446034: 'DynamicCache' object has no attribute 'get_usable_length'
[22/133] 7592395525857627448_7592424707811446034 | acc=0.000 (correct=0/0) | 4.61 samp/s
ERROR on 7592396786472455445_7592776503407037716: 'DynamicCache' object has no attribute 'get_usable_length'
[23/133] 7592396786472455445_7592776503407037716 | acc=0.000 (correct=0/0) | 4.63 samp/s
ERROR on 7592406759860423943_7592469167501102344: 'DynamicCache' object has no attribute 'get_usable_length'
[24/133] 7592406759860423943_7592469167501102344 | acc=0.000 (correct=0/0) | 4.64 samp/s
ERROR on 7592439822283705607_7592708834959904001: 'DynamicCache' object has no attribute 'get_usable_length'
[25/133] 7592439822283705607_7592708834959904001 | acc=0.000 (correct=0/0) | 4.66 samp/s
ERROR on 7592441861743136007_7592686503755582727: 'DynamicCache' object has no attribute 'get_usable_length'
[26/133] 7592441861743136007_7592686503755582727 | acc=0.000 (correct=0/0) | 4.67 samp/s
ERROR on 7592612029127494934_7593372133087022358: 'DynamicCache' object has no attribute 'get_usable_length'
[27/133] 7592612029127494934_7593372133087022358 | acc=0.000 (correct=0/0) | 4.69 samp/s
ERROR on 7592621669458480417_7593325946653003030: 'DynamicCache' object has no attribute 'get_usable_length'
[28/133] 7592621669458480417_7593325946653003030 | acc=0.000 (correct=0/0) | 4.71 samp/s
ERROR on 7592630277092936980_7592934574200605974: 'DynamicCache' object has no attribute 'get_usable_length'
[29/133] 7592630277092936980_7592934574200605974 | acc=0.000 (correct=0/0) | 4.73 samp/s
ERROR on 7592662940269006113_7593135968987696406: 'DynamicCache' object has no attribute 'get_usable_length'
[30/133] 7592662940269006113_7593135968987696406 | acc=0.000 (correct=0/0) | 4.74 samp/s
ERROR on 7592695844491644178_7593247873295289622: 'DynamicCache' object has no attribute 'get_usable_length'
[31/133] 7592695844491644178_7593247873295289622 | acc=0.000 (correct=0/0) | 4.76 samp/s
ERROR on 7592734749563653384_7593673083739802898: 'DynamicCache' object has no attribute 'get_usable_length'
[32/133] 7592734749563653384_7593673083739802898 | acc=0.000 (correct=0/0) | 4.76 samp/s
ERROR on 7592983455659543830_7593423283710610710: 'DynamicCache' object has no attribute 'get_usable_length'
[33/133] 7592983455659543830_7593423283710610710 | acc=0.000 (correct=0/0) | 4.78 samp/s
ERROR on 7593033792315575574_7593099150867172630: 'DynamicCache' object has no attribute 'get_usable_length'
[34/133] 7593033792315575574_7593099150867172630 | acc=0.000 (correct=0/0) | 4.79 samp/s
ERROR on 7593219919349566741_7595664852438338823: 'DynamicCache' object has no attribute 'get_usable_length'
[35/133] 7593219919349566741_7595664852438338823 | acc=0.000 (correct=0/0) | 4.80 samp/s
ERROR on 7593374120054656276_7604306674219863303: 'DynamicCache' object has no attribute 'get_usable_length'
[36/133] 7593374120054656276_7604306674219863303 | acc=0.000 (correct=0/0) | 4.81 samp/s
ERROR on 7593727005841968391_7595431144884129035: 'DynamicCache' object has no attribute 'get_usable_length'
[37/133] 7593727005841968391_7595431144884129035 | acc=0.000 (correct=0/0) | 4.83 samp/s
ERROR on 7593819989833026834_7604240520432520466: 'DynamicCache' object has no attribute 'get_usable_length'
[38/133] 7593819989833026834_7604240520432520466 | acc=0.000 (correct=0/0) | 4.84 samp/s
ERROR on 7594557794372652309_7604204623724809479: 'DynamicCache' object has no attribute 'get_usable_length'
[39/133] 7594557794372652309_7604204623724809479 | acc=0.000 (correct=0/0) | 4.84 samp/s
ERROR on 7594990951328746808_7595755849885289748: 'DynamicCache' object has no attribute 'get_usable_length'
[40/133] 7594990951328746808_7595755849885289748 | acc=0.000 (correct=0/0) | 4.86 samp/s
ERROR on 7595380926247341332_7602338775099837714: 'DynamicCache' object has no attribute 'get_usable_length'
[41/133] 7595380926247341332_7602338775099837714 | acc=0.000 (correct=0/0) | 4.87 samp/s
ERROR on 7595395129591024904_7595962701738741000: 'DynamicCache' object has no attribute 'get_usable_length'
[42/133] 7595395129591024904_7595962701738741000 | acc=0.000 (correct=0/0) | 4.89 samp/s
ERROR on 7595407496525663506_7595842450577575179: 'DynamicCache' object has no attribute 'get_usable_length'
[43/133] 7595407496525663506_7595842450577575179 | acc=0.000 (correct=0/0) | 4.90 samp/s
ERROR on 7595414619993246983_7595648604866350354: 'DynamicCache' object has no attribute 'get_usable_length'
[44/133] 7595414619993246983_7595648604866350354 | acc=0.000 (correct=0/0) | 4.90 samp/s
ERROR on 7595460052346096914_7595599161152605447: 'DynamicCache' object has no attribute 'get_usable_length'
[45/133] 7595460052346096914_7595599161152605447 | acc=0.000 (correct=0/0) | 4.90 samp/s
ERROR on 7595474031126646034_7595640420671982904: 'DynamicCache' object has no attribute 'get_usable_length'
[46/133] 7595474031126646034_7595640420671982904 | acc=0.000 (correct=0/0) | 4.90 samp/s
ERROR on 7595812699439648007_7604520050434854152: 'DynamicCache' object has no attribute 'get_usable_length'
[47/133] 7595812699439648007_7604520050434854152 | acc=0.000 (correct=0/0) | 4.90 samp/s
ERROR on 7597044647780764948_7604054478521748757: 'DynamicCache' object has no attribute 'get_usable_length'
[48/133] 7597044647780764948_7604054478521748757 | acc=0.000 (correct=0/0) | 4.91 samp/s
ERROR on 7597788963738324232_7603763715422407957: 'DynamicCache' object has no attribute 'get_usable_length'
[49/133] 7597788963738324232_7603763715422407957 | acc=0.000 (correct=0/0) | 4.91 samp/s
ERROR on 7598938266598952210_7604394570947890440: 'DynamicCache' object has no attribute 'get_usable_length'
[50/133] 7598938266598952210_7604394570947890440 | acc=0.000 (correct=0/0) | 4.91 samp/s
ERROR on 7598981214132849942_7603041768992460054: 'DynamicCache' object has no attribute 'get_usable_length'
[51/133] 7598981214132849942_7603041768992460054 | acc=0.000 (correct=0/0) | 4.92 samp/s
ERROR on 7599419411836964117_7602328110696090901: 'DynamicCache' object has no attribute 'get_usable_length'
[52/133] 7599419411836964117_7602328110696090901 | acc=0.000 (correct=0/0) | 4.92 samp/s
ERROR on 7600049951300685076_7602626609417604370: 'DynamicCache' object has no attribute 'get_usable_length'
[53/133] 7600049951300685076_7602626609417604370 | acc=0.000 (correct=0/0) | 4.92 samp/s
ERROR on 7600071116324900116_7602337842538368276: 'DynamicCache' object has no attribute 'get_usable_length'
[54/133] 7600071116324900116_7602337842538368276 | acc=0.000 (correct=0/0) | 4.92 samp/s
ERROR on 7600138772541394198_7602907593710767382: 'DynamicCache' object has no attribute 'get_usable_length'
[55/133] 7600138772541394198_7602907593710767382 | acc=0.000 (correct=0/0) | 4.92 samp/s
ERROR on 7600184266231745810_7603856182331051284: 'DynamicCache' object has no attribute 'get_usable_length'
[56/133] 7600184266231745810_7603856182331051284 | acc=0.000 (correct=0/0) | 4.92 samp/s
ERROR on 7600267409701833992_7604407914765290759: 'DynamicCache' object has no attribute 'get_usable_length'
[57/133] 7600267409701833992_7604407914765290759 | acc=0.000 (correct=0/0) | 4.93 samp/s
ERROR on 7600717184851053846_7603923738865782037: 'DynamicCache' object has no attribute 'get_usable_length'
[58/133] 7600717184851053846_7603923738865782037 | acc=0.000 (correct=0/0) | 4.93 samp/s
ERROR on 7600822923275799828_7604562398480977159: 'DynamicCache' object has no attribute 'get_usable_length'
[59/133] 7600822923275799828_7604562398480977159 | acc=0.000 (correct=0/0) | 4.93 samp/s
ERROR on 7600850853821418772_7604066449119857941: 'DynamicCache' object has no attribute 'get_usable_length'
[60/133] 7600850853821418772_7604066449119857941 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7601115694347947294_7604552935992724744: 'DynamicCache' object has no attribute 'get_usable_length'
[61/133] 7601115694347947294_7604552935992724744 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7601134749763030294_7602752793023204630: 'DynamicCache' object has no attribute 'get_usable_length'
[62/133] 7601134749763030294_7602752793023204630 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7601312798609591574_7603019182405373206: 'DynamicCache' object has no attribute 'get_usable_length'
[63/133] 7601312798609591574_7603019182405373206 | acc=0.000 (correct=0/0) | 4.94 samp/s
ERROR on 7601325066151890196_7602212400758000916: 'DynamicCache' object has no attribute 'get_usable_length'
[64/133] 7601325066151890196_7602212400758000916 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7601574274960231702_7602694663203523862: 'DynamicCache' object has no attribute 'get_usable_length'
[65/133] 7601574274960231702_7602694663203523862 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7601579424177343762_7602468045705006356: 'DynamicCache' object has no attribute 'get_usable_length'
[66/133] 7601579424177343762_7602468045705006356 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7601586470712954115_7603338240136908054: 'DynamicCache' object has no attribute 'get_usable_length'
[67/133] 7601586470712954115_7603338240136908054 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7601669855993007382_7603430768756477206: 'DynamicCache' object has no attribute 'get_usable_length'
[68/133] 7601669855993007382_7603430768756477206 | acc=0.000 (correct=0/0) | 4.95 samp/s
ERROR on 7601674006034402582_7602604985834048790: 'DynamicCache' object has no attribute 'get_usable_length'
[69/133] 7601674006034402582_7602604985834048790 | acc=0.000 (correct=0/0) | 4.96 samp/s
ERROR on 7601713212869856533_7602376124693351688: 'DynamicCache' object has no attribute 'get_usable_length'
[70/133] 7601713212869856533_7602376124693351688 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7601765261200461078_7602681205758102806: 'DynamicCache' object has no attribute 'get_usable_length'
[71/133] 7601765261200461078_7602681205758102806 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7601949430056602900_7602434611599265044: 'DynamicCache' object has no attribute 'get_usable_length'
[72/133] 7601949430056602900_7602434611599265044 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7601970606141148438_7603078990038895894: 'DynamicCache' object has no attribute 'get_usable_length'
[73/133] 7601970606141148438_7603078990038895894 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7602006928537046280_7602420413976546567: 'DynamicCache' object has no attribute 'get_usable_length'
[74/133] 7602006928537046280_7602420413976546567 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7602009271491988743_7604143486912171271: 'DynamicCache' object has no attribute 'get_usable_length'
[75/133] 7602009271491988743_7604143486912171271 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7602060282625674517_7602477809264495880: 'DynamicCache' object has no attribute 'get_usable_length'
[76/133] 7602060282625674517_7602477809264495880 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7602082846525754631_7604271197852929287: 'DynamicCache' object has no attribute 'get_usable_length'
[77/133] 7602082846525754631_7604271197852929287 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602143673546984725_7604193599068146951: 'DynamicCache' object has no attribute 'get_usable_length'
[78/133] 7602143673546984725_7604193599068146951 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602256064427330839_7603098072029138198: 'DynamicCache' object has no attribute 'get_usable_length'
[79/133] 7602256064427330839_7603098072029138198 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602270984690748694_7603038892320705814: 'DynamicCache' object has no attribute 'get_usable_length'
[80/133] 7602270984690748694_7603038892320705814 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602366022103878929_7602669638551391496: 'DynamicCache' object has no attribute 'get_usable_length'
[81/133] 7602366022103878929_7602669638551391496 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602382902457863445_7604191296412159252: 'DynamicCache' object has no attribute 'get_usable_length'
[82/133] 7602382902457863445_7604191296412159252 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602700620830625046_7602866165395803414: 'DynamicCache' object has no attribute 'get_usable_length'
[83/133] 7602700620830625046_7602866165395803414 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602708595221875986_7604355289906826504: 'DynamicCache' object has no attribute 'get_usable_length'
[84/133] 7602708595221875986_7604355289906826504 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602725486715817219_7603481735279512854: 'DynamicCache' object has no attribute 'get_usable_length'
[85/133] 7602725486715817219_7603481735279512854 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602729554339253526_7603093834116943126: 'DynamicCache' object has no attribute 'get_usable_length'
[86/133] 7602729554339253526_7603093834116943126 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602843396088106262_7602995295437278486: 'DynamicCache' object has no attribute 'get_usable_length'
[87/133] 7602843396088106262_7602995295437278486 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602910354212932884_7603540991643061512: 'DynamicCache' object has no attribute 'get_usable_length'
[88/133] 7602910354212932884_7603540991643061512 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602915847211977992_7604398958395559186: 'DynamicCache' object has no attribute 'get_usable_length'
[89/133] 7602915847211977992_7604398958395559186 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602946751540071701_7604027006077963528: 'DynamicCache' object has no attribute 'get_usable_length'
[90/133] 7602946751540071701_7604027006077963528 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7602984837502307606_7603479345079815446: 'DynamicCache' object has no attribute 'get_usable_length'
[91/133] 7602984837502307606_7603479345079815446 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603022279718538516_7604021216944360712: 'DynamicCache' object has no attribute 'get_usable_length'
[92/133] 7603022279718538516_7604021216944360712 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603057662082731286_7603508048769993987: 'DynamicCache' object has no attribute 'get_usable_length'
[93/133] 7603057662082731286_7603508048769993987 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603072200341507329_7604142589331115280: 'DynamicCache' object has no attribute 'get_usable_length'
[94/133] 7603072200341507329_7604142589331115280 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603075574315158806_7603118367762910486: 'DynamicCache' object has no attribute 'get_usable_length'
[95/133] 7603075574315158806_7603118367762910486 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603079625559887125_7603753412768910612: 'DynamicCache' object has no attribute 'get_usable_length'
[96/133] 7603079625559887125_7603753412768910612 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603090622093757718_7603453990323457303: 'DynamicCache' object has no attribute 'get_usable_length'
[97/133] 7603090622093757718_7603453990323457303 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603114436525870358_7603434420065848598: 'DynamicCache' object has no attribute 'get_usable_length'
[98/133] 7603114436525870358_7603434420065848598 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603118709992967446_7603141944167976214: 'DynamicCache' object has no attribute 'get_usable_length'
[99/133] 7603118709992967446_7603141944167976214 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603138308822076692_7603806260097453332: 'DynamicCache' object has no attribute 'get_usable_length'
[100/133] 7603138308822076692_7603806260097453332 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603146769148513566_7604566499847687445: 'DynamicCache' object has no attribute 'get_usable_length'
[101/133] 7603146769148513566_7604566499847687445 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603165062764711186_7603407222311292181: 'DynamicCache' object has no attribute 'get_usable_length'
[102/133] 7603165062764711186_7603407222311292181 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603185260158881045_7603447262575906068: 'DynamicCache' object has no attribute 'get_usable_length'
[103/133] 7603185260158881045_7603447262575906068 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603389036920704264_7604264676964207892: 'DynamicCache' object has no attribute 'get_usable_length'
[104/133] 7603389036920704264_7604264676964207892 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603529071628225800_7604036865682951445: 'DynamicCache' object has no attribute 'get_usable_length'
[105/133] 7603529071628225800_7604036865682951445 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603529734223383828_7604261847734275335: 'DynamicCache' object has no attribute 'get_usable_length'
[106/133] 7603529734223383828_7604261847734275335 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603597531121011986_7604027676130594055: 'DynamicCache' object has no attribute 'get_usable_length'
[107/133] 7603597531121011986_7604027676130594055 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603814056583023893_7603967990312307975: 'DynamicCache' object has no attribute 'get_usable_length'
[108/133] 7603814056583023893_7603967990312307975 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603818369183190303_7604234434702806280: 'DynamicCache' object has no attribute 'get_usable_length'
[109/133] 7603818369183190303_7604234434702806280 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603852215660465416_7604220286849813781: 'DynamicCache' object has no attribute 'get_usable_length'
[110/133] 7603852215660465416_7604220286849813781 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603876731857931540_7604241667603893524: 'DynamicCache' object has no attribute 'get_usable_length'
[111/133] 7603876731857931540_7604241667603893524 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603884493329550609_7604041815758490901: 'DynamicCache' object has no attribute 'get_usable_length'
[112/133] 7603884493329550609_7604041815758490901 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603902943246503175_7604332451615247623: 'DynamicCache' object has no attribute 'get_usable_length'
[113/133] 7603902943246503175_7604332451615247623 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603921933381455125_7604079730609982741: 'DynamicCache' object has no attribute 'get_usable_length'
[114/133] 7603921933381455125_7604079730609982741 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603932047878442257_7603978976616336661: 'DynamicCache' object has no attribute 'get_usable_length'
[115/133] 7603932047878442257_7603978976616336661 | acc=0.000 (correct=0/0) | 4.97 samp/s
ERROR on 7603947476332186901_7604063261130034433: 'DynamicCache' object has no attribute 'get_usable_length'
[116/133] 7603947476332186901_7604063261130034433 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603977624448175368_7604464746045230354: 'DynamicCache' object has no attribute 'get_usable_length'
[117/133] 7603977624448175368_7604464746045230354 | acc=0.000 (correct=0/0) | 4.99 samp/s
ERROR on 7603979300127214866_7604577411136621844: 'DynamicCache' object has no attribute 'get_usable_length'
[118/133] 7603979300127214866_7604577411136621844 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7603993350802394389_7604087376469642517: 'DynamicCache' object has no attribute 'get_usable_length'
[119/133] 7603993350802394389_7604087376469642517 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604019342124043540_7604368885785070868: 'DynamicCache' object has no attribute 'get_usable_length'
[120/133] 7604019342124043540_7604368885785070868 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604023995578453256_7604406022966463752: 'DynamicCache' object has no attribute 'get_usable_length'
[121/133] 7604023995578453256_7604406022966463752 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604071937224199445_7604486246018075922: 'DynamicCache' object has no attribute 'get_usable_length'
[122/133] 7604071937224199445_7604486246018075922 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604117742802701576_7604523788599938321: 'DynamicCache' object has no attribute 'get_usable_length'
[123/133] 7604117742802701576_7604523788599938321 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604119657179630856_7604130070600437010: 'DynamicCache' object has no attribute 'get_usable_length'
[124/133] 7604119657179630856_7604130070600437010 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604120387240234260_7604264832187108629: 'DynamicCache' object has no attribute 'get_usable_length'
[125/133] 7604120387240234260_7604264832187108629 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604133644516494613_7604325341783493906: 'DynamicCache' object has no attribute 'get_usable_length'
[126/133] 7604133644516494613_7604325341783493906 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604138193516055815_7604239035036437780: 'DynamicCache' object has no attribute 'get_usable_length'
[127/133] 7604138193516055815_7604239035036437780 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604161389954862337_7604241413802380564: 'DynamicCache' object has no attribute 'get_usable_length'
[128/133] 7604161389954862337_7604241413802380564 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604192834694040850_7604553253086383381: 'DynamicCache' object has no attribute 'get_usable_length'
[129/133] 7604192834694040850_7604553253086383381 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604198893898763541_7604200050855775508: 'DynamicCache' object has no attribute 'get_usable_length'
[130/133] 7604198893898763541_7604200050855775508 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604221872682634503_7604297076985351432: 'DynamicCache' object has no attribute 'get_usable_length'
[131/133] 7604221872682634503_7604297076985351432 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604250553891310869_7604452867709127956: 'DynamicCache' object has no attribute 'get_usable_length'
[132/133] 7604250553891310869_7604452867709127956 | acc=0.000 (correct=0/0) | 4.98 samp/s
ERROR on 7604250992779087122_7604343009810926869: 'DynamicCache' object has no attribute 'get_usable_length'
[133/133] 7604250992779087122_7604343009810926869 | acc=0.000 (correct=0/0) | 4.98 samp/s
============================================================
DONE model=phi35_vision
accuracy: 0.0000 (0/0)
per-class: {}
parse_failures: 0
time: 26.7s (4.98 samp/s)
saved -> /mnt/bn/bohanzhainas1/jiashuo/exp/active_cases_eval/phi35_vision.json
Model: phi35_vision
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Phi-3.5-vision-instruct
Model type: phi3_vision
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 Phi-3.5-vision from /mnt/bn/bohanzhainas1/jiashuo/models/Phi-3.5-vision-instruct
`torch_dtype` is deprecated! Use `dtype` instead!
Loading checkpoint shards: 0%| | 0/2 [00:00<?, ?it/s]
Loading checkpoint shards: 50%|βββββ | 1/2 [00:00<00:00, 1.01it/s]
Loading checkpoint shards: 100%|ββββββββββ| 2/2 [00:01<00:00, 1.30it/s]
Loading checkpoint shards: 100%|ββββββββββ| 2/2 [00:01<00:00, 1.24it/s]
/home/tiger/.local/lib/python3.11/site-packages/transformers/models/auto/image_processing_auto.py:647: FutureWarning: The image_processor_class argument is deprecated and will be removed in v4.42. Please use `slow_image_processor_class`, or `fast_image_processor_class` instead
warnings.warn(
past_key_values should not be None in from_legacy_cache()
[1/133] 7582864625457384725_7592503137240386834 | acc=0.000 (correct=0/1) | 0.15 samp/s
[2/133] 7583298662386650389_7603817886603300103 | acc=0.000 (correct=0/2) | 0.18 samp/s
[3/133] 7583769463078800643_7603057302106656022 | acc=0.333 (correct=1/3) | 0.17 samp/s
[4/133] 7584143881545977110_7593173975707028758 | acc=0.500 (correct=2/4) | 0.17 samp/s
[5/133] 7584459358449405202_7604337545559674132 | acc=0.400 (correct=2/5) | 0.17 samp/s
[6/133] 7584515446049656086_7592960395527146774 | acc=0.500 (correct=3/6) | 0.17 samp/s
[7/133] 7585337388545723681_7593386207040507169 | acc=0.429 (correct=3/7) | 0.19 samp/s
[8/133] 7586774649753718038_7593408077811207427 | acc=0.375 (correct=3/8) | 0.18 samp/s
[9/133] 7588310732303879432_7595998237404761362 | acc=0.444 (correct=4/9) | 0.18 samp/s
[10/133] 7589478401866616084_7592464439727623445 | acc=0.500 (correct=5/10) | 0.18 samp/s
[11/133] 7589598278531009813_7604139924731809045 | acc=0.545 (correct=6/11) | 0.19 samp/s
[12/133] 7590080459309124886_7602942433009159446 | acc=0.500 (correct=6/12) | 0.18 samp/s
Model: phi35_vision
Model path: /mnt/bn/bohanzhainas1/jiashuo/models/Phi-3.5-vision-instruct
Model type: phi3_vision
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 Phi-3.5-vision from /mnt/bn/bohanzhainas1/jiashuo/models/Phi-3.5-vision-instruct
`torch_dtype` is deprecated! Use `dtype` instead!
Loading checkpoint shards: 0%| | 0/2 [00:00<?, ?it/s]
Loading checkpoint shards: 50%|βββββ | 1/2 [00:00<00:00, 1.06it/s]
Loading checkpoint shards: 100%|ββββββββββ| 2/2 [00:01<00:00, 1.38it/s]
Loading checkpoint shards: 100%|ββββββββββ| 2/2 [00:01<00:00, 1.32it/s]
/home/tiger/.local/lib/python3.11/site-packages/transformers/models/auto/image_processing_auto.py:647: FutureWarning: The image_processor_class argument is deprecated and will be removed in v4.42. Please use `slow_image_processor_class`, or `fast_image_processor_class` instead
warnings.warn(
past_key_values should not be None in from_legacy_cache()
[1/133] 7582864625457384725_7592503137240386834 | acc=0.000 (correct=0/1) | 0.15 samp/s
[2/133] 7583298662386650389_7603817886603300103 | acc=0.000 (correct=0/2) | 0.18 samp/s
[3/133] 7583769463078800643_7603057302106656022 | acc=0.333 (correct=1/3) | 0.17 samp/s
[4/133] 7584143881545977110_7593173975707028758 | acc=0.500 (correct=2/4) | 0.17 samp/s
[5/133] 7584459358449405202_7604337545559674132 | acc=0.400 (correct=2/5) | 0.17 samp/s
[6/133] 7584515446049656086_7592960395527146774 | acc=0.500 (correct=3/6) | 0.17 samp/s
[7/133] 7585337388545723681_7593386207040507169 | acc=0.429 (correct=3/7) | 0.19 samp/s
[8/133] 7586774649753718038_7593408077811207427 | acc=0.375 (correct=3/8) | 0.18 samp/s
[9/133] 7588310732303879432_7595998237404761362 | acc=0.444 (correct=4/9) | 0.18 samp/s
[10/133] 7589478401866616084_7592464439727623445 | acc=0.500 (correct=5/10) | 0.18 samp/s
[11/133] 7589598278531009813_7604139924731809045 | acc=0.545 (correct=6/11) | 0.19 samp/s
[12/133] 7590080459309124886_7602942433009159446 | acc=0.500 (correct=6/12) | 0.18 samp/s
[13/133] 7590122947935735062_7602760876478745878 | acc=0.462 (correct=6/13) | 0.18 samp/s
[14/133] 7590736059038698760_7604236963700329736 | acc=0.500 (correct=7/14) | 0.18 samp/s
[15/133] 7591396054570896660_7602174366645865736 | acc=0.467 (correct=7/15) | 0.18 samp/s
[16/133] 7591603142207474952_7592657430761295124 | acc=0.500 (correct=8/16) | 0.18 samp/s
[17/133] 7591633885876833543_7592914268626930952 | acc=0.471 (correct=8/17) | 0.18 samp/s
[18/133] 7592127916369022215_7592811493075225877 | acc=0.444 (correct=8/18) | 0.17 samp/s
[19/133] 7592292714314566934_7603000520394968342 | acc=0.474 (correct=9/19) | 0.17 samp/s
[20/133] 7592363769301388575_7592557472821382420 | acc=0.450 (correct=9/20) | 0.17 samp/s
[21/133] 7592379393456999688_7592812522206514452 | acc=0.429 (correct=9/21) | 0.17 samp/s
[22/133] 7592395525857627448_7592424707811446034 | acc=0.455 (correct=10/22) | 0.16 samp/s
[23/133] 7592396786472455445_7592776503407037716 | acc=0.478 (correct=11/23) | 0.15 samp/s
[24/133] 7592406759860423943_7592469167501102344 | acc=0.500 (correct=12/24) | 0.15 samp/s
[25/133] 7592439822283705607_7592708834959904001 | acc=0.520 (correct=13/25) | 0.15 samp/s
[26/133] 7592441861743136007_7592686503755582727 | acc=0.538 (correct=14/26) | 0.14 samp/s
[27/133] 7592612029127494934_7593372133087022358 | acc=0.556 (correct=15/27) | 0.14 samp/s
[28/133] 7592621669458480417_7593325946653003030 | acc=0.536 (correct=15/28) | 0.14 samp/s
[29/133] 7592630277092936980_7592934574200605974 | acc=0.517 (correct=15/29) | 0.14 samp/s
[30/133] 7592662940269006113_7593135968987696406 | acc=0.533 (correct=16/30) | 0.13 samp/s
[31/133] 7592695844491644178_7593247873295289622 | acc=0.516 (correct=16/31) | 0.13 samp/s
[32/133] 7592734749563653384_7593673083739802898 | acc=0.531 (correct=17/32) | 0.13 samp/s
[33/133] 7592983455659543830_7593423283710610710 | acc=0.515 (correct=17/33) | 0.13 samp/s
[34/133] 7593033792315575574_7593099150867172630 | acc=0.529 (correct=18/34) | 0.13 samp/s
[35/133] 7593219919349566741_7595664852438338823 | acc=0.514 (correct=18/35) | 0.13 samp/s
[36/133] 7593374120054656276_7604306674219863303 | acc=0.528 (correct=19/36) | 0.13 samp/s
[37/133] 7593727005841968391_7595431144884129035 | acc=0.513 (correct=19/37) | 0.12 samp/s
[38/133] 7593819989833026834_7604240520432520466 | acc=0.526 (correct=20/38) | 0.12 samp/s
[39/133] 7594557794372652309_7604204623724809479 | acc=0.513 (correct=20/39) | 0.12 samp/s
[40/133] 7594990951328746808_7595755849885289748 | acc=0.525 (correct=21/40) | 0.12 samp/s
[41/133] 7595380926247341332_7602338775099837714 | acc=0.537 (correct=22/41) | 0.12 samp/s
[42/133] 7595395129591024904_7595962701738741000 | acc=0.524 (correct=22/42) | 0.12 samp/s
[43/133] 7595407496525663506_7595842450577575179 | acc=0.512 (correct=22/43) | 0.12 samp/s
[44/133] 7595414619993246983_7595648604866350354 | acc=0.523 (correct=23/44) | 0.12 samp/s
[45/133] 7595460052346096914_7595599161152605447 | acc=0.511 (correct=23/45) | 0.12 samp/s
[46/133] 7595474031126646034_7595640420671982904 | acc=0.500 (correct=23/46) | 0.12 samp/s
[47/133] 7595812699439648007_7604520050434854152 | acc=0.489 (correct=23/47) | 0.12 samp/s
[48/133] 7597044647780764948_7604054478521748757 | acc=0.500 (correct=24/48) | 0.12 samp/s
[49/133] 7597788963738324232_7603763715422407957 | acc=0.510 (correct=25/49) | 0.12 samp/s
[50/133] 7598938266598952210_7604394570947890440 | acc=0.520 (correct=26/50) | 0.12 samp/s
[51/133] 7598981214132849942_7603041768992460054 | acc=0.510 (correct=26/51) | 0.12 samp/s
[52/133] 7599419411836964117_7602328110696090901 | acc=0.519 (correct=27/52) | 0.12 samp/s
[53/133] 7600049951300685076_7602626609417604370 | acc=0.509 (correct=27/53) | 0.12 samp/s
[54/133] 7600071116324900116_7602337842538368276 | acc=0.500 (correct=27/54) | 0.12 samp/s
[55/133] 7600138772541394198_7602907593710767382 | acc=0.491 (correct=27/55) | 0.12 samp/s
[56/133] 7600184266231745810_7603856182331051284 | acc=0.482 (correct=27/56) | 0.12 samp/s
[57/133] 7600267409701833992_7604407914765290759 | acc=0.474 (correct=27/57) | 0.12 samp/s
[58/133] 7600717184851053846_7603923738865782037 | acc=0.483 (correct=28/58) | 0.12 samp/s
[59/133] 7600822923275799828_7604562398480977159 | acc=0.491 (correct=29/59) | 0.12 samp/s
[60/133] 7600850853821418772_7604066449119857941 | acc=0.500 (correct=30/60) | 0.12 samp/s
[61/133] 7601115694347947294_7604552935992724744 | acc=0.492 (correct=30/61) | 0.12 samp/s
[62/133] 7601134749763030294_7602752793023204630 | acc=0.500 (correct=31/62) | 0.12 samp/s
[63/133] 7601312798609591574_7603019182405373206 | acc=0.492 (correct=31/63) | 0.12 samp/s
[64/133] 7601325066151890196_7602212400758000916 | acc=0.484 (correct=31/64) | 0.12 samp/s
[65/133] 7601574274960231702_7602694663203523862 | acc=0.492 (correct=32/65) | 0.12 samp/s
[66/133] 7601579424177343762_7602468045705006356 | acc=0.485 (correct=32/66) | 0.12 samp/s
[67/133] 7601586470712954115_7603338240136908054 | acc=0.478 (correct=32/67) | 0.12 samp/s
[68/133] 7601669855993007382_7603430768756477206 | acc=0.471 (correct=32/68) | 0.12 samp/s
[69/133] 7601674006034402582_7602604985834048790 | acc=0.478 (correct=33/69) | 0.11 samp/s
[70/133] 7601713212869856533_7602376124693351688 | acc=0.486 (correct=34/70) | 0.12 samp/s
[71/133] 7601765261200461078_7602681205758102806 | acc=0.479 (correct=34/71) | 0.12 samp/s
[72/133] 7601949430056602900_7602434611599265044 | acc=0.472 (correct=34/72) | 0.12 samp/s
[73/133] 7601970606141148438_7603078990038895894 | acc=0.466 (correct=34/73) | 0.12 samp/s
[74/133] 7602006928537046280_7602420413976546567 | acc=0.460 (correct=34/74) | 0.12 samp/s
[75/133] 7602009271491988743_7604143486912171271 | acc=0.467 (correct=35/75) | 0.12 samp/s
[76/133] 7602060282625674517_7602477809264495880 | acc=0.461 (correct=35/76) | 0.12 samp/s
[77/133] 7602082846525754631_7604271197852929287 | acc=0.468 (correct=36/77) | 0.11 samp/s
[78/133] 7602143673546984725_7604193599068146951 | acc=0.474 (correct=37/78) | 0.11 samp/s
[79/133] 7602256064427330839_7603098072029138198 | acc=0.468 (correct=37/79) | 0.11 samp/s
[80/133] 7602270984690748694_7603038892320705814 | acc=0.463 (correct=37/80) | 0.11 samp/s
[81/133] 7602366022103878929_7602669638551391496 | acc=0.457 (correct=37/81) | 0.11 samp/s
[82/133] 7602382902457863445_7604191296412159252 | acc=0.451 (correct=37/82) | 0.11 samp/s
[83/133] 7602700620830625046_7602866165395803414 | acc=0.446 (correct=37/83) | 0.11 samp/s
[84/133] 7602708595221875986_7604355289906826504 | acc=0.441 (correct=37/84) | 0.11 samp/s
[85/133] 7602725486715817219_7603481735279512854 | acc=0.447 (correct=38/85) | 0.11 samp/s
[86/133] 7602729554339253526_7603093834116943126 | acc=0.442 (correct=38/86) | 0.11 samp/s
[87/133] 7602843396088106262_7602995295437278486 | acc=0.437 (correct=38/87) | 0.11 samp/s
[88/133] 7602910354212932884_7603540991643061512 | acc=0.432 (correct=38/88) | 0.11 samp/s
[89/133] 7602915847211977992_7604398958395559186 | acc=0.427 (correct=38/89) | 0.11 samp/s
[90/133] 7602946751540071701_7604027006077963528 | acc=0.422 (correct=38/90) | 0.11 samp/s
[91/133] 7602984837502307606_7603479345079815446 | acc=0.418 (correct=38/91) | 0.11 samp/s
[92/133] 7603022279718538516_7604021216944360712 | acc=0.413 (correct=38/92) | 0.11 samp/s
[93/133] 7603057662082731286_7603508048769993987 | acc=0.419 (correct=39/93) | 0.11 samp/s
[94/133] 7603072200341507329_7604142589331115280 | acc=0.415 (correct=39/94) | 0.11 samp/s
[95/133] 7603075574315158806_7603118367762910486 | acc=0.410 (correct=39/95) | 0.11 samp/s
[96/133] 7603079625559887125_7603753412768910612 | acc=0.417 (correct=40/96) | 0.11 samp/s
[97/133] 7603090622093757718_7603453990323457303 | acc=0.412 (correct=40/97) | 0.11 samp/s
[98/133] 7603114436525870358_7603434420065848598 | acc=0.408 (correct=40/98) | 0.11 samp/s
[99/133] 7603118709992967446_7603141944167976214 | acc=0.404 (correct=40/99) | 0.11 samp/s
[100/133] 7603138308822076692_7603806260097453332 | acc=0.410 (correct=41/100) | 0.11 samp/s
[101/133] 7603146769148513566_7604566499847687445 | acc=0.416 (correct=42/101) | 0.11 samp/s
[102/133] 7603165062764711186_7603407222311292181 | acc=0.412 (correct=42/102) | 0.11 samp/s
[103/133] 7603185260158881045_7603447262575906068 | acc=0.417 (correct=43/103) | 0.11 samp/s
[104/133] 7603389036920704264_7604264676964207892 | acc=0.423 (correct=44/104) | 0.11 samp/s
[105/133] 7603529071628225800_7604036865682951445 | acc=0.429 (correct=45/105) | 0.11 samp/s
[106/133] 7603529734223383828_7604261847734275335 | acc=0.424 (correct=45/106) | 0.11 samp/s
[107/133] 7603597531121011986_7604027676130594055 | acc=0.430 (correct=46/107) | 0.11 samp/s
[108/133] 7603814056583023893_7603967990312307975 | acc=0.435 (correct=47/108) | 0.11 samp/s
[109/133] 7603818369183190303_7604234434702806280 | acc=0.431 (correct=47/109) | 0.11 samp/s
[110/133] 7603852215660465416_7604220286849813781 | acc=0.427 (correct=47/110) | 0.11 samp/s
[111/133] 7603876731857931540_7604241667603893524 | acc=0.423 (correct=47/111) | 0.11 samp/s
[112/133] 7603884493329550609_7604041815758490901 | acc=0.429 (correct=48/112) | 0.11 samp/s
[113/133] 7603902943246503175_7604332451615247623 | acc=0.425 (correct=48/113) | 0.11 samp/s
[114/133] 7603921933381455125_7604079730609982741 | acc=0.421 (correct=48/114) | 0.11 samp/s
[115/133] 7603932047878442257_7603978976616336661 | acc=0.426 (correct=49/115) | 0.11 samp/s
[116/133] 7603947476332186901_7604063261130034433 | acc=0.431 (correct=50/116) | 0.11 samp/s
[117/133] 7603977624448175368_7604464746045230354 | acc=0.427 (correct=50/117) | 0.11 samp/s
[118/133] 7603979300127214866_7604577411136621844 | acc=0.424 (correct=50/118) | 0.11 samp/s
[119/133] 7603993350802394389_7604087376469642517 | acc=0.420 (correct=50/119) | 0.11 samp/s
[120/133] 7604019342124043540_7604368885785070868 | acc=0.417 (correct=50/120) | 0.11 samp/s
[121/133] 7604023995578453256_7604406022966463752 | acc=0.413 (correct=50/121) | 0.11 samp/s
[122/133] 7604071937224199445_7604486246018075922 | acc=0.418 (correct=51/122) | 0.11 samp/s
[123/133] 7604117742802701576_7604523788599938321 | acc=0.415 (correct=51/123) | 0.11 samp/s
[124/133] 7604119657179630856_7604130070600437010 | acc=0.411 (correct=51/124) | 0.11 samp/s
[125/133] 7604120387240234260_7604264832187108629 | acc=0.408 (correct=51/125) | 0.11 samp/s
[126/133] 7604133644516494613_7604325341783493906 | acc=0.405 (correct=51/126) | 0.11 samp/s
[127/133] 7604138193516055815_7604239035036437780 | acc=0.409 (correct=52/127) | 0.11 samp/s
[128/133] 7604161389954862337_7604241413802380564 | acc=0.406 (correct=52/128) | 0.11 samp/s
[129/133] 7604192834694040850_7604553253086383381 | acc=0.403 (correct=52/129) | 0.11 samp/s
[130/133] 7604198893898763541_7604200050855775508 | acc=0.400 (correct=52/130) | 0.11 samp/s
[131/133] 7604221872682634503_7604297076985351432 | acc=0.397 (correct=52/131) | 0.11 samp/s
[132/133] 7604250553891310869_7604452867709127956 | acc=0.402 (correct=53/132) | 0.11 samp/s
[133/133] 7604250992779087122_7604343009810926869 | acc=0.406 (correct=54/133) | 0.11 samp/s
============================================================
DONE model=phi35_vision
accuracy: 0.4060 (54/133)
per-class: {
"0": {
"precision": 0.4,
"recall": 0.9811,
"f1": 0.5683,
"support": 53
},
"1": {
"precision": 0.6667,
"recall": 0.025,
"f1": 0.0482,
"support": 80
}
}
parse_failures: 0
time: 1249.0s (0.11 samp/s)
saved -> /mnt/bn/bohanzhainas1/jiashuo/exp/active_cases_eval/phi35_vision.json
|