File size: 67,874 Bytes
f39ace3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 | Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 144, in <module>
main(eval_args, slurm_args)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 134, in main
run_eval(eval_args, mode="compute_metrics", verbose=True)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 70, in run_eval
print("Model: ", args.model_path, "device: ", model.device)
AttributeError: 'NoneType' object has no attribute 'device'
Model: /fsx_0/user/imzyc/proact_exps/20240822-L4096-I5-ep4-NOSEP-nr0.1-klgmix-1s-lora-bs384-debug
{'assembly101/dialog_val_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.1},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.2},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.3},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.4},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.5}]},
'ego4d/dialog_val_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.05},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.1},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.2},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.3},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.4},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.5}]},
'egoexolearn/dialog_val_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.1},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.2},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.3},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.4},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.5}]},
'epickitchens/dialog_val_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.1},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.2},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.3},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.4},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.5}]},
'holoassist/dialog_val_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.1},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.2},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.3},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.4},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.5}]},
'wtag/dialog_val_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.1},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.2},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.3},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.4},
{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.5}]}}
Evaluation datasets:
* ego4d/dialog_val | num samples: 96
Updating eval setup: inference_runner_type: None -> stream
Updating eval setup: not_talk_threshold: 0.5 -> 0.05
Evalulation: ego4d-dialog_val_L0_I5/stream/notalk0.05-maxlen_4k
Metrics:
missing_rate: 0.8143
redundant_rate: 0.0418
semantic_score: 0.7024
jaccard_index: 0.1469
precision: 0.7642
recall: 0.1481
F1: 0.2481
num_matched: 713.0000
num_mismatched: 181.0000
num_missed: 3920.0000
num_redundant: 39.0000
Bleu_1: 0.4112
Bleu_1_w: 0.0604
Bleu_2: 0.3002
Bleu_2_w: 0.0441
Bleu_3: 0.2331
Bleu_3_w: 0.0342
Bleu_4: 0.1877
Bleu_4_w: 0.0276
CIDEr: 1.1146
CIDEr_w: 0.1638
METEOR: 0.2052
METEOR_w: 0.0302
Updating eval setup: not_talk_threshold: 0.05 -> 0.1
Evalulation: ego4d-dialog_val_L0_I5/stream/notalk0.1-maxlen_4k
Metrics:
missing_rate: 0.7900
redundant_rate: 0.1124
semantic_score: 0.7032
jaccard_index: 0.1566
precision: 0.6795
recall: 0.1608
F1: 0.2600
num_matched: 774.0000
num_mismatched: 237.0000
num_missed: 3803.0000
num_redundant: 128.0000
Bleu_1: 0.4120
Bleu_1_w: 0.0645
Bleu_2: 0.2990
Bleu_2_w: 0.0468
Bleu_3: 0.2308
Bleu_3_w: 0.0362
Bleu_4: 0.1849
Bleu_4_w: 0.0290
CIDEr: 1.1293
CIDEr_w: 0.1769
METEOR: 0.2049
METEOR_w: 0.0321
Updating eval setup: not_talk_threshold: 0.1 -> 0.2
Evalulation: ego4d-dialog_val_L0_I5/stream/notalk0.2-maxlen_4k
Metrics:
missing_rate: 0.7179
redundant_rate: 0.2687
semantic_score: 0.6990
jaccard_index: 0.1850
precision: 0.5293
recall: 0.2042
F1: 0.2947
num_matched: 983.0000
num_mismatched: 375.0000
num_missed: 3456.0000
num_redundant: 499.0000
Bleu_1: 0.4005
Bleu_1_w: 0.0741
Bleu_2: 0.2853
Bleu_2_w: 0.0528
Bleu_3: 0.2176
Bleu_3_w: 0.0403
Bleu_4: 0.1735
Bleu_4_w: 0.0321
CIDEr: 0.9623
CIDEr_w: 0.1780
METEOR: 0.1921
METEOR_w: 0.0355
Updating eval setup: not_talk_threshold: 0.2 -> 0.3
Evalulation: ego4d-dialog_val_L0_I5/stream/notalk0.3-maxlen_4k
Metrics:
missing_rate: 0.6342
redundant_rate: 0.4073
semantic_score: 0.6859
jaccard_index: 0.2117
precision: 0.4291
recall: 0.2649
F1: 0.3276
num_matched: 1275.0000
num_mismatched: 486.0000
num_missed: 3053.0000
num_redundant: 1210.0000
Bleu_1: 0.3777
Bleu_1_w: 0.0799
Bleu_2: 0.2595
Bleu_2_w: 0.0549
Bleu_3: 0.1918
Bleu_3_w: 0.0406
Bleu_4: 0.1491
Bleu_4_w: 0.0316
CIDEr: 0.7785
CIDEr_w: 0.1648
METEOR: 0.1803
METEOR_w: 0.0382
Updating eval setup: not_talk_threshold: 0.3 -> 0.4
Evalulation: ego4d-dialog_val_L0_I5/stream/notalk0.4-maxlen_4k
Metrics:
missing_rate: 0.5374
redundant_rate: 0.5324
semantic_score: 0.6808
jaccard_index: 0.2079
precision: 0.3208
recall: 0.3174
F1: 0.3191
num_matched: 1528.0000
num_mismatched: 699.0000
num_missed: 2587.0000
num_redundant: 2536.0000
Bleu_1: 0.3763
Bleu_1_w: 0.0782
Bleu_2: 0.2556
Bleu_2_w: 0.0531
Bleu_3: 0.1874
Bleu_3_w: 0.0390
Bleu_4: 0.1447
Bleu_4_w: 0.0301
CIDEr: 0.7667
CIDEr_w: 0.1594
METEOR: 0.1752
METEOR_w: 0.0364
Updating eval setup: not_talk_threshold: 0.4 -> 0.5
Evalulation: ego4d-dialog_val_L0_I5/stream/notalk0.5-maxlen_4k
Metrics:
missing_rate: 0.4053
redundant_rate: 0.7022
semantic_score: 0.6725
jaccard_index: 0.1596
precision: 0.1920
recall: 0.3835
F1: 0.2559
num_matched: 1846.0000
num_mismatched: 1017.0000
num_missed: 1951.0000
num_redundant: 6750.0000
Bleu_1: 0.3556
Bleu_1_w: 0.0568
Bleu_2: 0.2372
Bleu_2_w: 0.0379
Bleu_3: 0.1705
Bleu_3_w: 0.0272
Bleu_4: 0.1289
Bleu_4_w: 0.0206
CIDEr: 0.6627
CIDEr_w: 0.1058
METEOR: 0.1699
METEOR_w: 0.0271
Evaluation datasets:
* holoassist/dialog_val | num samples: 291
Updating eval setup: inference_runner_type: None -> stream
Updating eval setup: not_talk_threshold: 0.5 -> 0.1
Evalulation: holoassist-dialog_val_L0_I5/stream/notalk0.1-maxlen_4k
Metrics:
missing_rate: 0.8169
redundant_rate: 0.0096
semantic_score: 0.6931
jaccard_index: 0.1324
precision: 0.7175
recall: 0.1326
F1: 0.2239
num_matched: 2024.0000
num_mismatched: 770.0000
num_missed: 12467.0000
num_redundant: 27.0000
Bleu_1: 0.4319
Bleu_1_w: 0.0572
Bleu_2: 0.3132
Bleu_2_w: 0.0415
Bleu_3: 0.2389
Bleu_3_w: 0.0316
Bleu_4: 0.1871
Bleu_4_w: 0.0248
CIDEr: 1.1122
CIDEr_w: 0.1472
METEOR: 0.2072
METEOR_w: 0.0274
Updating eval setup: not_talk_threshold: 0.1 -> 0.2
Evalulation: holoassist-dialog_val_L0_I5/stream/notalk0.2-maxlen_4k
Metrics:
missing_rate: 0.6569
redundant_rate: 0.0176
semantic_score: 0.6920
jaccard_index: 0.2380
precision: 0.6856
recall: 0.2394
F1: 0.3549
num_matched: 3654.0000
num_mismatched: 1582.0000
num_missed: 10025.0000
num_redundant: 94.0000
Bleu_1: 0.4265
Bleu_1_w: 0.1015
Bleu_2: 0.3066
Bleu_2_w: 0.0730
Bleu_3: 0.2318
Bleu_3_w: 0.0552
Bleu_4: 0.1807
Bleu_4_w: 0.0430
CIDEr: 1.0739
CIDEr_w: 0.2556
METEOR: 0.2021
METEOR_w: 0.0481
Updating eval setup: not_talk_threshold: 0.2 -> 0.3
Evalulation: holoassist-dialog_val_L0_I5/stream/notalk0.3-maxlen_4k
Metrics:
missing_rate: 0.5975
redundant_rate: 0.0346
semantic_score: 0.6902
jaccard_index: 0.2730
precision: 0.6643
recall: 0.2770
F1: 0.3910
num_matched: 4227.0000
num_mismatched: 1916.0000
num_missed: 9118.0000
num_redundant: 220.0000
Bleu_1: 0.4227
Bleu_1_w: 0.1154
Bleu_2: 0.3021
Bleu_2_w: 0.0825
Bleu_3: 0.2281
Bleu_3_w: 0.0623
Bleu_4: 0.1775
Bleu_4_w: 0.0485
CIDEr: 1.0430
CIDEr_w: 0.2848
METEOR: 0.1995
METEOR_w: 0.0545
Updating eval setup: not_talk_threshold: 0.3 -> 0.4
Evalulation: holoassist-dialog_val_L0_I5/stream/notalk0.4-maxlen_4k
Metrics:
missing_rate: 0.4488
redundant_rate: 0.3363
semantic_score: 0.6851
jaccard_index: 0.2771
precision: 0.4268
recall: 0.3544
F1: 0.3873
num_matched: 5409.0000
num_mismatched: 3003.0000
num_missed: 6849.0000
num_redundant: 4262.0000
Bleu_1: 0.4084
Bleu_1_w: 0.1132
Bleu_2: 0.2863
Bleu_2_w: 0.0793
Bleu_3: 0.2127
Bleu_3_w: 0.0589
Bleu_4: 0.1632
Bleu_4_w: 0.0452
CIDEr: 0.9756
CIDEr_w: 0.2703
METEOR: 0.1921
METEOR_w: 0.0532
Updating eval setup: not_talk_threshold: 0.4 -> 0.5
Evalulation: holoassist-dialog_val_L0_I5/stream/notalk0.5-maxlen_4k
Metrics:
missing_rate: 0.2812
redundant_rate: 0.6232
semantic_score: 0.6782
jaccard_index: 0.2047
precision: 0.2349
recall: 0.4481
F1: 0.3082
num_matched: 6838.0000
num_mismatched: 4131.0000
num_missed: 4292.0000
num_redundant: 18140.0000
Bleu_1: 0.3886
Bleu_1_w: 0.0795
Bleu_2: 0.2671
Bleu_2_w: 0.0547
Bleu_3: 0.1963
Bleu_3_w: 0.0402
Bleu_4: 0.1491
Bleu_4_w: 0.0305
CIDEr: 0.8726
CIDEr_w: 0.1786
METEOR: 0.1812
METEOR_w: 0.0371
Evaluation datasets:
* epickitchens/dialog_val | num samples: 150
Updating eval setup: inference_runner_type: None -> stream
Updating eval setup: not_talk_threshold: 0.5 -> 0.1
Evalulation: epickitchens-dialog_val_L0_I5/stream/notalk0.1-maxlen_4k
Metrics:
missing_rate: 0.7505
redundant_rate: 0.0771
semantic_score: 0.6804
jaccard_index: 0.1637
precision: 0.6182
recall: 0.1671
F1: 0.2631
num_matched: 1075.0000
num_mismatched: 530.0000
num_missed: 4827.0000
num_redundant: 134.0000
Bleu_1: 0.4001
Bleu_1_w: 0.0655
Bleu_2: 0.2872
Bleu_2_w: 0.0470
Bleu_3: 0.2182
Bleu_3_w: 0.0357
Bleu_4: 0.1706
Bleu_4_w: 0.0279
CIDEr: 1.1686
CIDEr_w: 0.1913
METEOR: 0.2001
METEOR_w: 0.0328
Updating eval setup: not_talk_threshold: 0.1 -> 0.2
Evalulation: epickitchens-dialog_val_L0_I5/stream/notalk0.2-maxlen_4k
Metrics:
missing_rate: 0.6191
redundant_rate: 0.1988
semantic_score: 0.6640
jaccard_index: 0.2061
precision: 0.4745
recall: 0.2256
F1: 0.3058
num_matched: 1451.0000
num_mismatched: 999.0000
num_missed: 3982.0000
num_redundant: 608.0000
Bleu_1: 0.3887
Bleu_1_w: 0.0801
Bleu_2: 0.2711
Bleu_2_w: 0.0559
Bleu_3: 0.2005
Bleu_3_w: 0.0413
Bleu_4: 0.1546
Bleu_4_w: 0.0319
CIDEr: 1.0446
CIDEr_w: 0.2153
METEOR: 0.1885
METEOR_w: 0.0389
Updating eval setup: not_talk_threshold: 0.2 -> 0.3
Evalulation: epickitchens-dialog_val_L0_I5/stream/notalk0.3-maxlen_4k
Metrics:
missing_rate: 0.4639
redundant_rate: 0.3537
semantic_score: 0.6534
jaccard_index: 0.2261
precision: 0.3526
recall: 0.2924
F1: 0.3197
num_matched: 1881.0000
num_mismatched: 1567.0000
num_missed: 2984.0000
num_redundant: 1887.0000
Bleu_1: 0.3547
Bleu_1_w: 0.0802
Bleu_2: 0.2373
Bleu_2_w: 0.0537
Bleu_3: 0.1686
Bleu_3_w: 0.0381
Bleu_4: 0.1262
Bleu_4_w: 0.0285
CIDEr: 0.8348
CIDEr_w: 0.1888
METEOR: 0.1764
METEOR_w: 0.0399
Updating eval setup: not_talk_threshold: 0.3 -> 0.4
Evalulation: epickitchens-dialog_val_L0_I5/stream/notalk0.4-maxlen_4k
Metrics:
missing_rate: 0.3136
redundant_rate: 0.5891
semantic_score: 0.6491
jaccard_index: 0.1801
precision: 0.2138
recall: 0.3573
F1: 0.2676
num_matched: 2298.0000
num_mismatched: 2117.0000
num_missed: 2017.0000
num_redundant: 6331.0000
Bleu_1: 0.3525
Bleu_1_w: 0.0635
Bleu_2: 0.2293
Bleu_2_w: 0.0413
Bleu_3: 0.1598
Bleu_3_w: 0.0288
Bleu_4: 0.1185
Bleu_4_w: 0.0213
CIDEr: 0.7864
CIDEr_w: 0.1416
METEOR: 0.1703
METEOR_w: 0.0307
Updating eval setup: not_talk_threshold: 0.4 -> 0.5
Evalulation: epickitchens-dialog_val_L0_I5/stream/notalk0.5-maxlen_4k
Metrics:
missing_rate: 0.2040
redundant_rate: 0.7203
semantic_score: 0.6452
jaccard_index: 0.1408
precision: 0.1509
recall: 0.4296
F1: 0.2234
num_matched: 2763.0000
num_mismatched: 2357.0000
num_missed: 1312.0000
num_redundant: 13187.0000
Bleu_1: 0.3569
Bleu_1_w: 0.0503
Bleu_2: 0.2305
Bleu_2_w: 0.0325
Bleu_3: 0.1585
Bleu_3_w: 0.0223
Bleu_4: 0.1160
Bleu_4_w: 0.0163
CIDEr: 0.7808
CIDEr_w: 0.1100
METEOR: 0.1699
METEOR_w: 0.0239
Evaluation datasets:
* egoexolearn/dialog_val | num samples: 123
Updating eval setup: inference_runner_type: None -> stream
Updating eval setup: not_talk_threshold: 0.5 -> 0.1
Evalulation: egoexolearn-dialog_val_L0_I5/stream/notalk0.1-maxlen_4k
Metrics:
missing_rate: 0.8310
redundant_rate: 0.0334
semantic_score: 0.6980
jaccard_index: 0.1260
precision: 0.7252
recall: 0.1268
F1: 0.2158
num_matched: 1520.0000
num_mismatched: 506.0000
num_missed: 9965.0000
num_redundant: 70.0000
Bleu_1: 0.4299
Bleu_1_w: 0.0542
Bleu_2: 0.3105
Bleu_2_w: 0.0391
Bleu_3: 0.2375
Bleu_3_w: 0.0299
Bleu_4: 0.1875
Bleu_4_w: 0.0236
CIDEr: 1.1086
CIDEr_w: 0.1397
METEOR: 0.2051
METEOR_w: 0.0258
Updating eval setup: not_talk_threshold: 0.1 -> 0.2
Evalulation: egoexolearn-dialog_val_L0_I5/stream/notalk0.2-maxlen_4k
Metrics:
missing_rate: 0.8105
redundant_rate: 0.1288
semantic_score: 0.6944
jaccard_index: 0.1330
precision: 0.6288
recall: 0.1368
F1: 0.2247
num_matched: 1640.0000
num_mismatched: 632.0000
num_missed: 9719.0000
num_redundant: 336.0000
Bleu_1: 0.4263
Bleu_1_w: 0.0567
Bleu_2: 0.3069
Bleu_2_w: 0.0408
Bleu_3: 0.2339
Bleu_3_w: 0.0311
Bleu_4: 0.1840
Bleu_4_w: 0.0245
CIDEr: 1.0771
CIDEr_w: 0.1433
METEOR: 0.2020
METEOR_w: 0.0269
Updating eval setup: not_talk_threshold: 0.2 -> 0.3
Evalulation: egoexolearn-dialog_val_L0_I5/stream/notalk0.3-maxlen_4k
Metrics:
missing_rate: 0.7804
redundant_rate: 0.2401
semantic_score: 0.6867
jaccard_index: 0.1436
precision: 0.5313
recall: 0.1535
F1: 0.2382
num_matched: 1841.0000
num_mismatched: 792.0000
num_missed: 9358.0000
num_redundant: 832.0000
Bleu_1: 0.4164
Bleu_1_w: 0.0598
Bleu_2: 0.2942
Bleu_2_w: 0.0422
Bleu_3: 0.2212
Bleu_3_w: 0.0318
Bleu_4: 0.1721
Bleu_4_w: 0.0247
CIDEr: 1.0102
CIDEr_w: 0.1450
METEOR: 0.1951
METEOR_w: 0.0280
Updating eval setup: not_talk_threshold: 0.3 -> 0.4
Evalulation: egoexolearn-dialog_val_L0_I5/stream/notalk0.4-maxlen_4k
Metrics:
missing_rate: 0.7114
redundant_rate: 0.3865
semantic_score: 0.6745
jaccard_index: 0.1580
precision: 0.3969
recall: 0.1867
F1: 0.2540
num_matched: 2239.0000
num_mismatched: 1222.0000
num_missed: 8530.0000
num_redundant: 2180.0000
Bleu_1: 0.4039
Bleu_1_w: 0.0638
Bleu_2: 0.2814
Bleu_2_w: 0.0445
Bleu_3: 0.2088
Bleu_3_w: 0.0330
Bleu_4: 0.1606
Bleu_4_w: 0.0254
CIDEr: 0.9108
CIDEr_w: 0.1439
METEOR: 0.1870
METEOR_w: 0.0296
Updating eval setup: not_talk_threshold: 0.4 -> 0.5
Evalulation: egoexolearn-dialog_val_L0_I5/stream/notalk0.5-maxlen_4k
Metrics:
missing_rate: 0.5728
redundant_rate: 0.5894
semantic_score: 0.6633
jaccard_index: 0.1569
precision: 0.2432
recall: 0.2531
F1: 0.2481
num_matched: 3035.0000
num_mismatched: 2088.0000
num_missed: 6868.0000
num_redundant: 7355.0000
Bleu_1: 0.3851
Bleu_1_w: 0.0604
Bleu_2: 0.2611
Bleu_2_w: 0.0410
Bleu_3: 0.1877
Bleu_3_w: 0.0294
Bleu_4: 0.1406
Bleu_4_w: 0.0221
CIDEr: 0.7626
CIDEr_w: 0.1196
METEOR: 0.1741
METEOR_w: 0.0273
Evaluation datasets:
* wtag/dialog_val | num samples: 21
Updating eval setup: inference_runner_type: None -> stream
Updating eval setup: not_talk_threshold: 0.5 -> 0.1
Evalulation: wtag-dialog_val_L0_I5/stream/notalk0.1-maxlen_4k
Metrics:
missing_rate: 0.5732
redundant_rate: 0.1089
semantic_score: 0.6824
jaccard_index: 0.2099
precision: 0.4611
recall: 0.2209
F1: 0.2987
num_matched: 237.0000
num_mismatched: 221.0000
num_missed: 615.0000
num_redundant: 56.0000
Bleu_1: 0.3633
Bleu_1_w: 0.0763
Bleu_2: 0.2567
Bleu_2_w: 0.0539
Bleu_3: 0.1885
Bleu_3_w: 0.0396
Bleu_4: 0.1448
Bleu_4_w: 0.0304
CIDEr: 0.9644
CIDEr_w: 0.2025
METEOR: 0.2138
METEOR_w: 0.0449
Updating eval setup: not_talk_threshold: 0.1 -> 0.2
Evalulation: wtag-dialog_val_L0_I5/stream/notalk0.2-maxlen_4k
Metrics:
missing_rate: 0.5005
redundant_rate: 0.1612
semantic_score: 0.6793
jaccard_index: 0.2109
precision: 0.3881
recall: 0.2311
F1: 0.2897
num_matched: 248.0000
num_mismatched: 288.0000
num_missed: 537.0000
num_redundant: 103.0000
Bleu_1: 0.3624
Bleu_1_w: 0.0764
Bleu_2: 0.2559
Bleu_2_w: 0.0540
Bleu_3: 0.1871
Bleu_3_w: 0.0395
Bleu_4: 0.1435
Bleu_4_w: 0.0303
CIDEr: 0.9300
CIDEr_w: 0.1961
METEOR: 0.2112
METEOR_w: 0.0445
Updating eval setup: not_talk_threshold: 0.2 -> 0.3
Evalulation: wtag-dialog_val_L0_I5/stream/notalk0.3-maxlen_4k
Metrics:
missing_rate: 0.4352
redundant_rate: 0.1844
semantic_score: 0.6717
jaccard_index: 0.2099
precision: 0.3419
recall: 0.2367
F1: 0.2797
num_matched: 254.0000
num_mismatched: 352.0000
num_missed: 467.0000
num_redundant: 137.0000
Bleu_1: 0.3506
Bleu_1_w: 0.0736
Bleu_2: 0.2455
Bleu_2_w: 0.0515
Bleu_3: 0.1793
Bleu_3_w: 0.0376
Bleu_4: 0.1362
Bleu_4_w: 0.0286
CIDEr: 0.8458
CIDEr_w: 0.1775
METEOR: 0.2037
METEOR_w: 0.0428
Updating eval setup: not_talk_threshold: 0.3 -> 0.4
Evalulation: wtag-dialog_val_L0_I5/stream/notalk0.4-maxlen_4k
Metrics:
missing_rate: 0.4101
redundant_rate: 0.2383
semantic_score: 0.6682
jaccard_index: 0.2242
precision: 0.3430
recall: 0.2656
F1: 0.2994
num_matched: 285.0000
num_mismatched: 348.0000
num_missed: 440.0000
num_redundant: 198.0000
Bleu_1: 0.3571
Bleu_1_w: 0.0801
Bleu_2: 0.2481
Bleu_2_w: 0.0556
Bleu_3: 0.1788
Bleu_3_w: 0.0401
Bleu_4: 0.1315
Bleu_4_w: 0.0295
CIDEr: 0.8673
CIDEr_w: 0.1945
METEOR: 0.2046
METEOR_w: 0.0459
Updating eval setup: not_talk_threshold: 0.4 -> 0.5
Evalulation: wtag-dialog_val_L0_I5/stream/notalk0.5-maxlen_4k
Metrics:
missing_rate: 0.3849
redundant_rate: 0.3038
semantic_score: 0.6623
jaccard_index: 0.2035
precision: 0.2922
recall: 0.2582
F1: 0.2741
num_matched: 277.0000
num_mismatched: 383.0000
num_missed: 413.0000
num_redundant: 288.0000
Bleu_1: 0.3455
Bleu_1_w: 0.0703
Bleu_2: 0.2390
Bleu_2_w: 0.0486
Bleu_3: 0.1720
Bleu_3_w: 0.0350
Bleu_4: 0.1264
Bleu_4_w: 0.0257
CIDEr: 0.7777
CIDEr_w: 0.1583
METEOR: 0.1970
METEOR_w: 0.0401
Evaluation datasets:
* assembly101/dialog_val | num samples: 336
Updating eval setup: inference_runner_type: None -> stream
Updating eval setup: not_talk_threshold: 0.5 -> 0.1
Evalulation: assembly101-dialog_val_L0_I5/stream/notalk0.1-maxlen_4k
Metrics:
missing_rate: 0.7505
redundant_rate: 0.0598
semantic_score: 0.6999
jaccard_index: 0.1639
precision: 0.6275
recall: 0.1665
F1: 0.2632
num_matched: 1385.0000
num_mismatched: 690.0000
num_missed: 6243.0000
num_redundant: 132.0000
Bleu_1: 0.4494
Bleu_1_w: 0.0737
Bleu_2: 0.3420
Bleu_2_w: 0.0560
Bleu_3: 0.2687
Bleu_3_w: 0.0440
Bleu_4: 0.2174
Bleu_4_w: 0.0356
CIDEr: 1.2016
CIDEr_w: 0.1969
METEOR: 0.2251
METEOR_w: 0.0369
Updating eval setup: not_talk_threshold: 0.1 -> 0.2
Evalulation: assembly101-dialog_val_L0_I5/stream/notalk0.2-maxlen_4k
Metrics:
missing_rate: 0.6718
redundant_rate: 0.1407
semantic_score: 0.6904
jaccard_index: 0.1954
precision: 0.5392
recall: 0.2059
F1: 0.2980
num_matched: 1713.0000
num_mismatched: 1017.0000
num_missed: 5588.0000
num_redundant: 447.0000
Bleu_1: 0.4380
Bleu_1_w: 0.0856
Bleu_2: 0.3286
Bleu_2_w: 0.0642
Bleu_3: 0.2547
Bleu_3_w: 0.0498
Bleu_4: 0.2038
Bleu_4_w: 0.0398
CIDEr: 1.1287
CIDEr_w: 0.2206
METEOR: 0.2136
METEOR_w: 0.0417
Updating eval setup: not_talk_threshold: 0.2 -> 0.3
Evalulation: assembly101-dialog_val_L0_I5/stream/notalk0.3-maxlen_4k
Metrics:
missing_rate: 0.5380
redundant_rate: 0.2288
semantic_score: 0.6756
jaccard_index: 0.2341
precision: 0.4443
recall: 0.2662
F1: 0.3329
num_matched: 2214.0000
num_mismatched: 1629.0000
num_missed: 4475.0000
num_redundant: 1140.0000
Bleu_1: 0.4198
Bleu_1_w: 0.0983
Bleu_2: 0.3065
Bleu_2_w: 0.0718
Bleu_3: 0.2322
Bleu_3_w: 0.0544
Bleu_4: 0.1824
Bleu_4_w: 0.0427
CIDEr: 0.9634
CIDEr_w: 0.2255
METEOR: 0.2017
METEOR_w: 0.0472
Updating eval setup: not_talk_threshold: 0.3 -> 0.4
Evalulation: assembly101-dialog_val_L0_I5/stream/notalk0.4-maxlen_4k
Metrics:
missing_rate: 0.4035
redundant_rate: 0.3546
semantic_score: 0.6672
jaccard_index: 0.2383
precision: 0.3424
recall: 0.3164
F1: 0.3289
num_matched: 2632.0000
num_mismatched: 2330.0000
num_missed: 3356.0000
num_redundant: 2726.0000
Bleu_1: 0.4067
Bleu_1_w: 0.0969
Bleu_2: 0.2925
Bleu_2_w: 0.0697
Bleu_3: 0.2197
Bleu_3_w: 0.0523
Bleu_4: 0.1718
Bleu_4_w: 0.0409
CIDEr: 0.8919
CIDEr_w: 0.2126
METEOR: 0.1935
METEOR_w: 0.0461
Updating eval setup: not_talk_threshold: 0.4 -> 0.5
Evalulation: assembly101-dialog_val_L0_I5/stream/notalk0.5-maxlen_4k
Metrics:
missing_rate: 0.2394
redundant_rate: 0.5560
semantic_score: 0.6602
jaccard_index: 0.2055
precision: 0.2342
recall: 0.4012
F1: 0.2957
num_matched: 3337.0000
num_mismatched: 2990.0000
num_missed: 1991.0000
num_redundant: 7922.0000
Bleu_1: 0.3875
Bleu_1_w: 0.0796
Bleu_2: 0.2718
Bleu_2_w: 0.0558
Bleu_3: 0.2006
Bleu_3_w: 0.0412
Bleu_4: 0.1551
Bleu_4_w: 0.0319
CIDEr: 0.7711
CIDEr_w: 0.1584
METEOR: 0.1843
METEOR_w: 0.0379
All Finished! Time: 117.22 minutes
Model: /fsx_0/user/imzyc/proact_exps/20240822-L4096-I5-ep4-NOSEP-nr0.1-klgmix-1s-lora-bs384-debug
Runs:
ego4d/dialog_val_L0_I5|stream|4k|0.05|summarize_and_drop
ego4d/dialog_val_L0_I5|stream|4k|0.1|summarize_and_drop
holoassist/dialog_val_L0_I5|stream|4k|0.1|summarize_and_drop
epickitchens/dialog_val_L0_I5|stream|4k|0.1|summarize_and_drop
egoexolearn/dialog_val_L0_I5|stream|4k|0.1|summarize_and_drop
wtag/dialog_val_L0_I5|stream|4k|0.1|summarize_and_drop
assembly101/dialog_val_L0_I5|stream|4k|0.1|summarize_and_drop
ego4d/dialog_val_L0_I5|stream|4k|0.2|summarize_and_drop
holoassist/dialog_val_L0_I5|stream|4k|0.2|summarize_and_drop
epickitchens/dialog_val_L0_I5|stream|4k|0.2|summarize_and_drop
egoexolearn/dialog_val_L0_I5|stream|4k|0.2|summarize_and_drop
wtag/dialog_val_L0_I5|stream|4k|0.2|summarize_and_drop
assembly101/dialog_val_L0_I5|stream|4k|0.2|summarize_and_drop
ego4d/dialog_val_L0_I5|stream|4k|0.3|summarize_and_drop
holoassist/dialog_val_L0_I5|stream|4k|0.3|summarize_and_drop
epickitchens/dialog_val_L0_I5|stream|4k|0.3|summarize_and_drop
egoexolearn/dialog_val_L0_I5|stream|4k|0.3|summarize_and_drop
wtag/dialog_val_L0_I5|stream|4k|0.3|summarize_and_drop
assembly101/dialog_val_L0_I5|stream|4k|0.3|summarize_and_drop
ego4d/dialog_val_L0_I5|stream|4k|0.4|summarize_and_drop
holoassist/dialog_val_L0_I5|stream|4k|0.4|summarize_and_drop
epickitchens/dialog_val_L0_I5|stream|4k|0.4|summarize_and_drop
egoexolearn/dialog_val_L0_I5|stream|4k|0.4|summarize_and_drop
wtag/dialog_val_L0_I5|stream|4k|0.4|summarize_and_drop
assembly101/dialog_val_L0_I5|stream|4k|0.4|summarize_and_drop
ego4d/dialog_val_L0_I5|stream|4k|0.5|summarize_and_drop
holoassist/dialog_val_L0_I5|stream|4k|0.5|summarize_and_drop
epickitchens/dialog_val_L0_I5|stream|4k|0.5|summarize_and_drop
egoexolearn/dialog_val_L0_I5|stream|4k|0.5|summarize_and_drop
wtag/dialog_val_L0_I5|stream|4k|0.5|summarize_and_drop
assembly101/dialog_val_L0_I5|stream|4k|0.5|summarize_and_drop
sacct: error: _open_persist_conn: failed to open persistent connection to host:slurmdbd:6819: Connection refused
sacct: error: Sending PersistInit msg: Connection refused
sacct: error: Problem talking to the database: Connection refused
submitit WARNING (2024-08-22 15:27:43,999) - Call #9 - Bypassing sacct error Command '['sacct', '-o', 'JobID,State,NodeList', '--parsable2', '-j', '14291']' returned non-zero exit status 1., status may be inaccurate.
submitit WARNING (2024-08-22 15:27:43,999) - Call #9 - Bypassing sacct error Command '['sacct', '-o', 'JobID,State,NodeList', '--parsable2', '-j', '14291']' returned non-zero exit status 1., status may be inaccurate.
Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 144, in <module>
main(eval_args, slurm_args)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 133, in main
job.results() # wait for the job to finish
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in results
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in <listcomp>
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 266, in result
r = self.results()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 289, in results
outcome, result = self._get_outcome_and_result()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 384, in _get_outcome_and_result
raise utils.UncompletedJobError("\n".join(message))
submitit.core.utils.UncompletedJobError: Job 14293 (task: 0) with path /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14293/14293_0_result.pkl
has not produced any output (state: CANCELLED by 649731)
Error stream produced:
----------------------------------------
Loading checkpoint shards: 0%| | 0/4 [00:00<?, ?it/s]
Loading checkpoint shards: 25%|βββ | 1/4 [00:13<00:40, 13.58s/it]
Loading checkpoint shards: 50%|βββββ | 2/4 [00:25<00:25, 12.90s/it]
Loading checkpoint shards: 75%|ββββββββ | 3/4 [00:38<00:12, 12.57s/it]
Loading checkpoint shards: 100%|ββββββββββ| 4/4 [00:40<00:00, 8.70s/it]
Loading checkpoint shards: 100%|ββββββββββ| 4/4 [00:40<00:00, 10.24s/it]
Run predictions: 0%| | 0/2 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 2/2 [00:00<00:00, 18.21it/s]
Run predictions: 100%|ββββββββββ| 2/2 [00:00<00:00, 18.17it/s]
Run predictions: 0%| | 0/2 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 2/2 [00:00<00:00, 19.59it/s]
Run predictions: 100%|ββββββββββ| 2/2 [00:00<00:00, 19.57it/s]
Run predictions: 0%| | 0/2 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 2/2 [00:00<00:00, 7.21it/s]
Run predictions: 100%|ββββββββββ| 2/2 [00:00<00:00, 7.20it/s]
Run predictions: 0%| | 0/2 [00:00<?, ?it/s]We detected that you are passing `past_key_values` as a tuple and this is deprecated and will be removed in v4.43. Please use an appropriate `Cache` class (https://huggingface.co/docs/transformers/v4.41.3/en/internal/generation_utils#transformers.Cache)
Run predictions: 100%|ββββββββββ| 2/2 [03:32<00:00, 106.01s/it]
Run predictions: 100%|ββββββββββ| 2/2 [03:32<00:00, 106.02s/it]
Run predictions: 0%| | 0/2 [00:00<?, ?it/s]submitit WARNING (2024-08-22 15:50:23,530) - Bypassing signal SIGCONT
slurmstepd: error: *** JOB 14293 ON h100-st-p548xlarge-13 CANCELLED AT 2024-08-22T15:50:23 ***
slurmstepd: error: *** STEP 14293.0 ON h100-st-p548xlarge-13 CANCELLED AT 2024-08-22T15:50:23 ***
submitit WARNING (2024-08-22 15:50:23,532) - Bypassing signal SIGTERM
Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 144, in <module>
main(eval_args, slurm_args)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 133, in main
job.results() # wait for the job to finish
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in results
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in <listcomp>
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 266, in result
r = self.results()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 289, in results
outcome, result = self._get_outcome_and_result()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 384, in _get_outcome_and_result
raise utils.UncompletedJobError("\n".join(message))
submitit.core.utils.UncompletedJobError: Job 14350 (task: 0) with path /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14350/14350_0_result.pkl
has not produced any output (state: CANCELLED by 636977)
Error stream produced:
----------------------------------------
Loading checkpoint shards: 0%| | 0/4 [00:00<?, ?it/s]
Loading checkpoint shards: 25%|βββ | 1/4 [00:14<00:42, 14.00s/it]
Loading checkpoint shards: 50%|βββββ | 2/4 [00:26<00:26, 13.26s/it]
Loading checkpoint shards: 75%|ββββββββ | 3/4 [00:38<00:12, 12.80s/it]
Loading checkpoint shards: 100%|ββββββββββ| 4/4 [00:41<00:00, 8.88s/it]
Loading checkpoint shards: 100%|ββββββββββ| 4/4 [00:41<00:00, 10.46s/it]
Run predictions: 0%| | 0/3 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 3/3 [00:00<00:00, 40.05it/s]
Run predictions: 0%| | 0/3 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 3/3 [00:00<00:00, 39.88it/s]
Run predictions: 0%| | 0/3 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 3/3 [00:00<00:00, 38.99it/s]
Run predictions: 0%| | 0/3 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 3/3 [00:00<00:00, 40.50it/s]
Run predictions: 0%| | 0/3 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 3/3 [00:00<00:00, 39.57it/s]
Run predictions: 0%| | 0/10 [00:00<?, ?it/s]We detected that you are passing `past_key_values` as a tuple and this is deprecated and will be removed in v4.43. Please use an appropriate `Cache` class (https://huggingface.co/docs/transformers/v4.41.3/en/internal/generation_utils#transformers.Cache)
Run predictions: 50%|βββββ | 5/10 [00:37<00:37, 7.54s/it]
Run predictions: 60%|ββββββ | 6/10 [02:11<01:46, 26.67s/it]
Run predictions: 70%|βββββββ | 7/10 [02:31<01:15, 25.16s/it]
Run predictions: 80%|ββββββββ | 8/10 [03:25<01:04, 32.38s/it]
Run predictions: 90%|βββββββββ | 9/10 [03:49<00:30, 30.35s/it]
Run predictions: 100%|ββββββββββ| 10/10 [03:57<00:00, 24.08s/it]
Run predictions: 100%|ββββββββββ| 10/10 [03:57<00:00, 23.76s/it]
Run predictions: 0%| | 0/10 [00:00<?, ?it/s]
Run predictions: 10%|β | 1/10 [00:33<05:02, 33.64s/it]
Run predictions: 20%|ββ | 2/10 [01:01<04:02, 30.35s/it]
Run predictions: 30%|βββ | 3/10 [01:52<04:36, 39.51s/it]
Run predictions: 40%|ββββ | 4/10 [02:32<03:57, 39.67s/it]
Run predictions: 50%|βββββ | 5/10 [03:25<03:43, 44.70s/it]
Run predictions: 60%|ββββββ | 6/10 [04:58<04:04, 61.16s/it]
Run predictions: 70%|βββββββ | 7/10 [05:20<02:24, 48.18s/it]
Run predictions: 80%|ββββββββ | 8/10 [06:17<01:42, 51.00s/it]
Run predictions: 90%|βββββββββ | 9/10 [06:46<00:44, 44.09s/it]
Run predictions: 100%|ββββββββββ| 10/10 [06:53<00:00, 32.75s/it]
Run predictions: 100%|ββββββββββ| 10/10 [06:53<00:00, 41.35s/it]
Run predictions: 0%| | 0/10 [00:00<?, ?it/s]
Run predictions: 10%|β | 1/10 [00:44<06:37, 44.20s/it]
Run predictions: 20%|ββ | 2/10 [01:47<07:24, 55.58s/it]
Run predictions: 30%|βββ | 3/10 [02:34<06:01, 51.71s/it]
Run predictions: 40%|ββββ | 4/10 [03:16<04:47, 47.92s/it]
Run predictions: 50%|βββββ | 5/10 [04:55<05:30, 66.06s/it]
Run predictions: 60%|ββββββ | 6/10 [06:33<05:07, 76.86s/it]
Run predictions: 70%|βββββββ | 7/10 [06:56<02:58, 59.52s/it]
Run predictions: 80%|ββββββββ | 8/10 [08:50<02:33, 76.82s/it]submitit WARNING (2024-08-22 18:25:01,469) - Bypassing signal SIGCONT
slurmstepd: error: *** JOB 14350 ON h100-st-p548xlarge-100 CANCELLED AT 2024-08-22T18:25:01 ***
slurmstepd: error: *** STEP 14350.0 ON h100-st-p548xlarge-100 CANCELLED AT 2024-08-22T18:25:01 ***
submitit WARNING (2024-08-22 18:25:01,476) - Bypassing signal SIGTERM
Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 164, in <module>
main(eval_args, slurm_args)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 153, in main
job.results() # wait for the job to finish
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in results
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in <listcomp>
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 266, in result
r = self.results()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 289, in results
outcome, result = self._get_outcome_and_result()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 384, in _get_outcome_and_result
raise utils.UncompletedJobError("\n".join(message))
submitit.core.utils.UncompletedJobError: Job 14390 (task: 0) with path /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14390/14390_0_result.pkl
has not produced any output (state: NODE_FAIL)
No output/error stream produced ! Check: /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14390/14390_0_log.out
Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 164, in <module>
main(eval_args, slurm_args)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 153, in main
job.results() # wait for the job to finish
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in results
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in <listcomp>
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 266, in result
r = self.results()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 289, in results
outcome, result = self._get_outcome_and_result()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 384, in _get_outcome_and_result
raise utils.UncompletedJobError("\n".join(message))
submitit.core.utils.UncompletedJobError: Job 14391 (task: 0) with path /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14391/14391_0_result.pkl
has not produced any output (state: NODE_FAIL)
No output/error stream produced ! Check: /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14391/14391_0_log.out
Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 164, in <module>
print(f"Runs:\n{runs}")
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 153, in main
)
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in results
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in <listcomp>
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 266, in result
r = self.results()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 289, in results
outcome, result = self._get_outcome_and_result()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 384, in _get_outcome_and_result
raise utils.UncompletedJobError("\n".join(message))
submitit.core.utils.UncompletedJobError: Job 14393 (task: 0) with path /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14393/14393_0_result.pkl
has not produced any output (state: NODE_FAIL)
Error stream produced:
----------------------------------------
slurmstepd: error: *** JOB 14393 ON h100-st-p548xlarge-129 CANCELLED AT 2024-08-22T20:08:33 DUE TO NODE FAILURE, SEE SLURMCTLD LOG FOR DETAILS ***
sbatch: error: Batch job submission failed: Invalid node name specified
subprocess.CalledProcessError: Command '['sbatch', '/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/submission_file_d6a19adc4ffa4a628e5fafb456cb8832.sh']' returned non-zero exit status 1.
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 170, in <module>
main(eval_args, slurm_args)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 158, in main
job = executor.submit(run_eval, eval_args, "slurm_inference", verbose=True)
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 734, in submit
job = self._internal_process_submissions([ds])[0]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/auto/auto.py", line 218, in _internal_process_submissions
return self._executor._internal_process_submissions(delayed_submissions)
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/slurm/slurm.py", line 317, in _internal_process_submissions
return super()._internal_process_submissions(delayed_submissions)
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 893, in _internal_process_submissions
job = self._submit_command(self._submitit_command_str)
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 934, in _submit_command
output = utils.CommandFunction(command_list, verbose=False)() # explicit errors
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/utils.py", line 354, in __call__
raise FailedJobError(stderr) from subprocess_error
submitit.core.utils.FailedJobError: sbatch: error: Batch job submission failed: Invalid node name specified
sbatch: error: Batch job submission failed: Invalid node name specified
subprocess.CalledProcessError: Command '['sbatch', '/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/submission_file_b1632bebd8ee497f9f186b483d3918b7.sh']' returned non-zero exit status 1.
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 170, in <module>
main(eval_args, slurm_args)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 158, in main
job = executor.submit(run_eval, eval_args, "slurm_inference", verbose=True)
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 734, in submit
job = self._internal_process_submissions([ds])[0]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/auto/auto.py", line 218, in _internal_process_submissions
return self._executor._internal_process_submissions(delayed_submissions)
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/slurm/slurm.py", line 317, in _internal_process_submissions
return super()._internal_process_submissions(delayed_submissions)
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 893, in _internal_process_submissions
job = self._submit_command(self._submitit_command_str)
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 934, in _submit_command
output = utils.CommandFunction(command_list, verbose=False)() # explicit errors
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/utils.py", line 354, in __call__
raise FailedJobError(stderr) from subprocess_error
submitit.core.utils.FailedJobError: sbatch: error: Batch job submission failed: Invalid node name specified
Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 170, in <module>
main(eval_args, slurm_args)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 159, in main
job.results() # wait for the job to finish
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in results
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in <listcomp>
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 266, in result
r = self.results()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 289, in results
outcome, result = self._get_outcome_and_result()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 384, in _get_outcome_and_result
raise utils.UncompletedJobError("\n".join(message))
submitit.core.utils.UncompletedJobError: Job 14416 (task: 0) with path /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14416/14416_0_result.pkl
has not produced any output (state: NODE_FAIL)
Error stream produced:
----------------------------------------
slurmstepd: error: *** JOB 14416 ON h100-st-p548xlarge-2 CANCELLED AT 2024-08-22T21:17:45 DUE TO NODE FAILURE, SEE SLURMCTLD LOG FOR DETAILS ***
Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 170, in <module>
main(eval_args, slurm_args)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 159, in main
job.results() # wait for the job to finish
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in results
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in <listcomp>
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 266, in result
r = self.results()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 289, in results
outcome, result = self._get_outcome_and_result()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 384, in _get_outcome_and_result
raise utils.UncompletedJobError("\n".join(message))
submitit.core.utils.UncompletedJobError: Job 14419 (task: 0) with path /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14419/14419_0_result.pkl
has not produced any output (state: NODE_FAIL)
No output/error stream produced ! Check: /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14419/14419_0_log.out
Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 167, in <module>
main(eval_args, slurm_args)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 156, in main
job.results() # wait for the job to finish
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in results
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in <listcomp>
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 266, in result
r = self.results()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 289, in results
outcome, result = self._get_outcome_and_result()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 384, in _get_outcome_and_result
raise utils.UncompletedJobError("\n".join(message))
submitit.core.utils.UncompletedJobError: Job 14650 (task: 0) with path /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14650/14650_0_result.pkl
has not produced any output (state: NODE_FAIL)
Error stream produced:
----------------------------------------
slurmstepd: error: *** JOB 14650 ON h100-st-p548xlarge-2 CANCELLED AT 2024-08-23T04:38:10 DUE TO NODE FAILURE, SEE SLURMCTLD LOG FOR DETAILS ***
slurmstepd: error: *** JOB 14650 ON h100-st-p548xlarge-2 CANCELLED AT 2024-08-23T04:48:27 DUE TO NODE FAILURE, SEE SLURMCTLD LOG FOR DETAILS ***
Loading checkpoint shards: 0%| | 0/4 [00:00<?, ?it/s]
Loading checkpoint shards: 25%|βββ | 1/4 [00:14<00:42, 14.04s/it]
Loading checkpoint shards: 50%|βββββ | 2/4 [00:27<00:26, 13.45s/it]srun: error: slurm_receive_msgs: [[ip-10-200-21-218.us-east-2.compute.internal]:41498] failed: Socket timed out on send/recv operation
srun: error: Task launch for StepId=14650.0 failed on node h100-st-p548xlarge-130: Socket timed out on send/recv operation
srun: error: Application launch failed: Socket timed out on send/recv operation
srun: Job step aborted: Waiting up to 32 seconds for job step to finish.
Loading checkpoint shards: 75%|ββββββββ | 3/4 [00:39<00:12, 12.81s/it]
Loading checkpoint shards: 100%|ββββββββββ| 4/4 [00:41<00:00, 8.85s/it]
Loading checkpoint shards: 100%|ββββββββββ| 4/4 [00:41<00:00, 10.48s/it]
Run predictions: 0%| | 0/2 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 2/2 [00:00<00:00, 39.79it/s]
Run predictions: 0%| | 0/2 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 2/2 [00:00<00:00, 40.66it/s]
Run predictions: 0%| | 0/2 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 2/2 [00:00<00:00, 40.75it/s]
Run predictions: 0%| | 0/2 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 2/2 [00:00<00:00, 41.06it/s]
Run predictions: 0%| | 0/2 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 2/2 [00:00<00:00, 38.21it/s]
Run predictions: 0%| | 0/5 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 5/5 [00:00<00:00, 54.16it/s]
Run predictions: 0%| | 0/5 [00:00<?, ?it/s]
Run predictions: 100%|ββββββββββ| 5/5 [00:00<00:00, 53.90it/s]
Run predictions: 0%| | 0/5 [00:00<?, ?it/s]We detected that you are passing `past_key_values` as a tuple and this is deprecated and will be removed in v4.43. Please use an appropriate `Cache` class (https://huggingface.co/docs/transformers/v4.41.3/en/internal/generation_utils#transformers.Cache)
srun: error: Timed out waiting for job step to complete
slurmstepd: error: *** STEP 14650.0 ON h100-st-p548xlarge-2 FAILED (non-zero exit code or other failure mode) ***
submitit WARNING (2024-08-23 04:54:52,019) - Bypassing signal SIGCONT
submitit WARNING (2024-08-23 04:54:52,020) - Bypassing signal SIGTERM
slurmstepd: error: Failed to send MESSAGE_TASK_EXIT: Connection refused
Traceback (most recent call last):
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 165, in <module>
main(eval_args, slurm_args)
File "/opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/mmassist/eval/eval.py", line 154, in main
job.results() # wait for the job to finish
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in results
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 287, in <listcomp>
return [tp.cast(R, sub_job.result()) for sub_job in self._sub_jobs]
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 266, in result
r = self.results()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 289, in results
outcome, result = self._get_outcome_and_result()
File "/data/home/imzyc/miniconda3/envs/mm/lib/python3.10/site-packages/submitit/core/core.py", line 384, in _get_outcome_and_result
raise utils.UncompletedJobError("\n".join(message))
submitit.core.utils.UncompletedJobError: Job 14932 (task: 0) with path /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14932/14932_0_result.pkl
has not produced any output (state: NODE_FAIL)
No output/error stream produced ! Check: /opt/hpcaas/.mounts/fs-036153e63d56f4dc2/home/imzyc/project/proactive-assist/slurm_logs/14932/14932_0_log.out
Model: /fsx_0/user/imzyc/proact_exps/20240822-L4096-I5-ep4-NOSEP-nr0.1-klgmix-1s-lora-bs384-debug
{'assembly101/dialog-klg_test_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.3}]},
'ego4d/dialog-klg_test_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.3}]},
'egoexolearn/dialog-klg_test_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.4}]},
'epickitchens/dialog-klg_test_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.2}]},
'holoassist/dialog-klg_test_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.3}]},
'wtag/dialog-klg_test_L0_I5': {'stream': [{'context_handling_method': 'summarize_and_drop',
'eval_max_seq_len': 4096,
'eval_max_seq_len_str': '4k',
'inference_runner_type': 'stream',
'not_talk_threshold': 0.5}]}}
Evaluation datasets:
* ego4d/dialog-klg_test | num samples: 99
Updating eval setup: inference_runner_type: None -> stream
Updating eval setup: not_talk_threshold: 0.5 -> 0.3
Evalulation: ego4d-dialog-klg_test_L0_I5/stream/notalk0.3-maxlen_4k
Metrics:
jaccard_index: 0.2215
missing_rate: 0.4983
redundant_rate: 0.5262
semantic_score: 0.6923
time_diff: 1.5123
precision: 0.3258
recall: 0.3450
F1: 0.3351
num_matched: 1741.0000
num_mismatched: 791.0000
num_missed: 2515.0000
num_redundant: 2812.0000
Bleu_1: 0.3835
Bleu_1_w: 0.0850
Bleu_2: 0.2653
Bleu_2_w: 0.0588
Bleu_3: 0.1941
Bleu_3_w: 0.0430
Bleu_4: 0.1485
Bleu_4_w: 0.0329
CIDEr: 0.8355
CIDEr_w: 0.1851
METEOR: 0.1879
METEOR_w: 0.0416
Evaluation datasets:
* epickitchens/dialog-klg_test | num samples: 150
Updating eval setup: inference_runner_type: None -> stream
Updating eval setup: not_talk_threshold: 0.5 -> 0.2
Evalulation: epickitchens-dialog-klg_test_L0_I5/stream/notalk0.2-maxlen_4k
Metrics:
jaccard_index: 0.2144
missing_rate: 0.5547
redundant_rate: 0.3526
semantic_score: 0.6676
time_diff: 0.5445
precision: 0.3873
recall: 0.2664
F1: 0.3157
num_matched: 1607.0000
num_mismatched: 1079.0000
num_missed: 3346.0000
num_redundant: 1463.0000
Bleu_1: 0.3977
Bleu_1_w: 0.0853
Bleu_2: 0.2734
Bleu_2_w: 0.0586
Bleu_3: 0.2000
Bleu_3_w: 0.0429
Bleu_4: 0.1550
Bleu_4_w: 0.0332
CIDEr: 1.0101
CIDEr_w: 0.2166
METEOR: 0.1894
METEOR_w: 0.0406
Evaluation datasets:
* holoassist/dialog-klg_test | num samples: 291
Updating eval setup: inference_runner_type: None -> stream
Updating eval setup: not_talk_threshold: 0.5 -> 0.3
Evalulation: holoassist-dialog-klg_test_L0_I5/stream/notalk0.3-maxlen_4k
Metrics:
jaccard_index: 0.2842
missing_rate: 0.5910
redundant_rate: 0.0834
semantic_score: 0.7066
time_diff: 0.2819
precision: 0.6606
recall: 0.2948
F1: 0.4076
num_matched: 4105.0000
num_mismatched: 1591.0000
num_missed: 8230.0000
num_redundant: 518.0000
Bleu_1: 0.4468
Bleu_1_w: 0.1270
Bleu_2: 0.3305
Bleu_2_w: 0.0939
Bleu_3: 0.2574
Bleu_3_w: 0.0731
Bleu_4: 0.2054
Bleu_4_w: 0.0584
CIDEr: 1.3007
CIDEr_w: 0.3696
METEOR: 0.2151
METEOR_w: 0.0611
Evaluation datasets:
* egoexolearn/dialog-klg_test | num samples: 123
Updating eval setup: inference_runner_type: None -> stream
Updating eval setup: not_talk_threshold: 0.5 -> 0.4
Evalulation: egoexolearn-dialog-klg_test_L0_I5/stream/notalk0.4-maxlen_4k
Metrics:
jaccard_index: 0.1634
missing_rate: 0.6318
redundant_rate: 0.5117
semantic_score: 0.6693
time_diff: 0.6571
precision: 0.3003
recall: 0.2264
F1: 0.2582
num_matched: 2730.0000
num_mismatched: 1710.0000
num_missed: 7618.0000
num_redundant: 4652.0000
Bleu_1: 0.3995
Bleu_1_w: 0.0653
Bleu_2: 0.2734
Bleu_2_w: 0.0447
Bleu_3: 0.1992
Bleu_3_w: 0.0325
Bleu_4: 0.1510
Bleu_4_w: 0.0247
CIDEr: 0.8387
CIDEr_w: 0.1370
METEOR: 0.1802
METEOR_w: 0.0294
Evaluation datasets:
* assembly101/dialog-klg_test | num samples: 336
Updating eval setup: inference_runner_type: None -> stream
Updating eval setup: not_talk_threshold: 0.5 -> 0.3
Evalulation: assembly101-dialog-klg_test_L0_I5/stream/notalk0.3-maxlen_4k
Metrics:
jaccard_index: 0.2835
missing_rate: 0.4738
redundant_rate: 0.2770
semantic_score: 0.7053
time_diff: 0.6322
precision: 0.4681
recall: 0.3407
F1: 0.3944
num_matched: 2814.0000
num_mismatched: 1532.0000
num_missed: 3914.0000
num_redundant: 1665.0000
Bleu_1: 0.4403
Bleu_1_w: 0.1249
Bleu_2: 0.3314
Bleu_2_w: 0.0939
Bleu_3: 0.2589
Bleu_3_w: 0.0734
Bleu_4: 0.2095
Bleu_4_w: 0.0594
CIDEr: 1.1329
CIDEr_w: 0.3212
METEOR: 0.2114
METEOR_w: 0.0599
Evaluation datasets:
* wtag/dialog-klg_test | num samples: 21
Updating eval setup: inference_runner_type: None -> stream
Evalulation: wtag-dialog-klg_test_L0_I5/stream/notalk0.5-maxlen_4k
Metrics:
jaccard_index: 0.2215
missing_rate: 0.3536
redundant_rate: 0.3931
semantic_score: 0.6719
time_diff: 1.4128
precision: 0.2950
recall: 0.3142
F1: 0.3043
num_matched: 367.0000
num_mismatched: 388.0000
num_missed: 413.0000
num_redundant: 489.0000
Bleu_1: 0.3966
Bleu_1_w: 0.0879
Bleu_2: 0.2880
Bleu_2_w: 0.0638
Bleu_3: 0.2202
Bleu_3_w: 0.0488
Bleu_4: 0.1728
Bleu_4_w: 0.0383
CIDEr: 1.2909
CIDEr_w: 0.2859
METEOR: 0.2019
METEOR_w: 0.0447
All Finished! Time: 24.86 minutes
Model: /fsx_0/user/imzyc/proact_exps/20240822-L4096-I5-ep4-NOSEP-nr0.1-klgmix-1s-lora-bs384-debug
Runs:
ego4d/dialog-klg_test_L0_I5|stream|4k|0.3|summarize_and_drop
epickitchens/dialog-klg_test_L0_I5|stream|4k|0.2|summarize_and_drop
holoassist/dialog-klg_test_L0_I5|stream|4k|0.3|summarize_and_drop
egoexolearn/dialog-klg_test_L0_I5|stream|4k|0.4|summarize_and_drop
assembly101/dialog-klg_test_L0_I5|stream|4k|0.3|summarize_and_drop
wtag/dialog-klg_test_L0_I5|stream|4k|0.5|summarize_and_drop
|