File size: 46,892 Bytes
ff47ae6 |
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 |
model_checkpoint_path: "ckpt-p2-17000"
all_model_checkpoint_paths: "ckpt-42500"
all_model_checkpoint_paths: "ckpt-43000"
all_model_checkpoint_paths: "ckpt-43500"
all_model_checkpoint_paths: "ckpt-44000"
all_model_checkpoint_paths: "ckpt-44500"
all_model_checkpoint_paths: "ckpt-45000"
all_model_checkpoint_paths: "ckpt-45500"
all_model_checkpoint_paths: "ckpt-46000"
all_model_checkpoint_paths: "ckpt-46500"
all_model_checkpoint_paths: "ckpt-47000"
all_model_checkpoint_paths: "ckpt-47500"
all_model_checkpoint_paths: "ckpt-48000"
all_model_checkpoint_paths: "ckpt-48500"
all_model_checkpoint_paths: "ckpt-49000"
all_model_checkpoint_paths: "ckpt-49500"
all_model_checkpoint_paths: "ckpt-50000"
all_model_checkpoint_paths: "ckpt-50500"
all_model_checkpoint_paths: "ckpt-51000"
all_model_checkpoint_paths: "ckpt-51500"
all_model_checkpoint_paths: "ckpt-52000"
all_model_checkpoint_paths: "ckpt-52500"
all_model_checkpoint_paths: "ckpt-53000"
all_model_checkpoint_paths: "ckpt-53500"
all_model_checkpoint_paths: "ckpt-54000"
all_model_checkpoint_paths: "ckpt-54500"
all_model_checkpoint_paths: "ckpt-55000"
all_model_checkpoint_paths: "ckpt-55500"
all_model_checkpoint_paths: "ckpt-56000"
all_model_checkpoint_paths: "ckpt-56500"
all_model_checkpoint_paths: "ckpt-57000"
all_model_checkpoint_paths: "ckpt-57500"
all_model_checkpoint_paths: "ckpt-58000"
all_model_checkpoint_paths: "ckpt-58500"
all_model_checkpoint_paths: "ckpt-59000"
all_model_checkpoint_paths: "ckpt-59500"
all_model_checkpoint_paths: "ckpt-60000"
all_model_checkpoint_paths: "ckpt-60500"
all_model_checkpoint_paths: "ckpt-61000"
all_model_checkpoint_paths: "ckpt-61500"
all_model_checkpoint_paths: "ckpt-62000"
all_model_checkpoint_paths: "ckpt-62500"
all_model_checkpoint_paths: "ckpt-63000"
all_model_checkpoint_paths: "ckpt-63500"
all_model_checkpoint_paths: "ckpt-64000"
all_model_checkpoint_paths: "ckpt-64500"
all_model_checkpoint_paths: "ckpt-65000"
all_model_checkpoint_paths: "ckpt-65500"
all_model_checkpoint_paths: "ckpt-66000"
all_model_checkpoint_paths: "ckpt-66500"
all_model_checkpoint_paths: "ckpt-67000"
all_model_checkpoint_paths: "ckpt-67500"
all_model_checkpoint_paths: "ckpt-68000"
all_model_checkpoint_paths: "ckpt-68500"
all_model_checkpoint_paths: "ckpt-69000"
all_model_checkpoint_paths: "ckpt-69500"
all_model_checkpoint_paths: "ckpt-70000"
all_model_checkpoint_paths: "ckpt-70500"
all_model_checkpoint_paths: "ckpt-71000"
all_model_checkpoint_paths: "ckpt-71500"
all_model_checkpoint_paths: "ckpt-72000"
all_model_checkpoint_paths: "ckpt-72500"
all_model_checkpoint_paths: "ckpt-73000"
all_model_checkpoint_paths: "ckpt-73500"
all_model_checkpoint_paths: "ckpt-74000"
all_model_checkpoint_paths: "ckpt-74500"
all_model_checkpoint_paths: "ckpt-75000"
all_model_checkpoint_paths: "ckpt-75500"
all_model_checkpoint_paths: "ckpt-76000"
all_model_checkpoint_paths: "ckpt-76500"
all_model_checkpoint_paths: "ckpt-77000"
all_model_checkpoint_paths: "ckpt-77500"
all_model_checkpoint_paths: "ckpt-78000"
all_model_checkpoint_paths: "ckpt-78500"
all_model_checkpoint_paths: "ckpt-79000"
all_model_checkpoint_paths: "ckpt-79500"
all_model_checkpoint_paths: "ckpt-80000"
all_model_checkpoint_paths: "ckpt-80500"
all_model_checkpoint_paths: "ckpt-81000"
all_model_checkpoint_paths: "ckpt-81500"
all_model_checkpoint_paths: "ckpt-82000"
all_model_checkpoint_paths: "ckpt-82500"
all_model_checkpoint_paths: "ckpt-83000"
all_model_checkpoint_paths: "ckpt-83500"
all_model_checkpoint_paths: "ckpt-84000"
all_model_checkpoint_paths: "ckpt-84500"
all_model_checkpoint_paths: "ckpt-85000"
all_model_checkpoint_paths: "ckpt-85500"
all_model_checkpoint_paths: "ckpt-86000"
all_model_checkpoint_paths: "ckpt-86500"
all_model_checkpoint_paths: "ckpt-87000"
all_model_checkpoint_paths: "ckpt-87500"
all_model_checkpoint_paths: "ckpt-88000"
all_model_checkpoint_paths: "ckpt-88500"
all_model_checkpoint_paths: "ckpt-89000"
all_model_checkpoint_paths: "ckpt-89500"
all_model_checkpoint_paths: "ckpt-90000"
all_model_checkpoint_paths: "ckpt-90500"
all_model_checkpoint_paths: "ckpt-91000"
all_model_checkpoint_paths: "ckpt-91500"
all_model_checkpoint_paths: "ckpt-92000"
all_model_checkpoint_paths: "ckpt-92500"
all_model_checkpoint_paths: "ckpt-93000"
all_model_checkpoint_paths: "ckpt-93500"
all_model_checkpoint_paths: "ckpt-94000"
all_model_checkpoint_paths: "ckpt-94500"
all_model_checkpoint_paths: "ckpt-95000"
all_model_checkpoint_paths: "ckpt-95500"
all_model_checkpoint_paths: "ckpt-96000"
all_model_checkpoint_paths: "ckpt-96500"
all_model_checkpoint_paths: "ckpt-97000"
all_model_checkpoint_paths: "ckpt-97500"
all_model_checkpoint_paths: "ckpt-98000"
all_model_checkpoint_paths: "ckpt-98500"
all_model_checkpoint_paths: "ckpt-99000"
all_model_checkpoint_paths: "ckpt-99500"
all_model_checkpoint_paths: "ckpt-100000"
all_model_checkpoint_paths: "ckpt-100500"
all_model_checkpoint_paths: "ckpt-101000"
all_model_checkpoint_paths: "ckpt-101500"
all_model_checkpoint_paths: "ckpt-102000"
all_model_checkpoint_paths: "ckpt-102500"
all_model_checkpoint_paths: "ckpt-103000"
all_model_checkpoint_paths: "ckpt-103500"
all_model_checkpoint_paths: "ckpt-104000"
all_model_checkpoint_paths: "ckpt-104500"
all_model_checkpoint_paths: "ckpt-105000"
all_model_checkpoint_paths: "ckpt-105500"
all_model_checkpoint_paths: "ckpt-106000"
all_model_checkpoint_paths: "ckpt-106500"
all_model_checkpoint_paths: "ckpt-107000"
all_model_checkpoint_paths: "ckpt-107500"
all_model_checkpoint_paths: "ckpt-108000"
all_model_checkpoint_paths: "ckpt-108500"
all_model_checkpoint_paths: "ckpt-109000"
all_model_checkpoint_paths: "ckpt-109500"
all_model_checkpoint_paths: "ckpt-110000"
all_model_checkpoint_paths: "ckpt-110500"
all_model_checkpoint_paths: "ckpt-111000"
all_model_checkpoint_paths: "ckpt-111500"
all_model_checkpoint_paths: "ckpt-112000"
all_model_checkpoint_paths: "ckpt-112500"
all_model_checkpoint_paths: "ckpt-113000"
all_model_checkpoint_paths: "ckpt-113500"
all_model_checkpoint_paths: "ckpt-114000"
all_model_checkpoint_paths: "ckpt-114500"
all_model_checkpoint_paths: "ckpt-115000"
all_model_checkpoint_paths: "ckpt-115500"
all_model_checkpoint_paths: "ckpt-116000"
all_model_checkpoint_paths: "ckpt-116500"
all_model_checkpoint_paths: "ckpt-117000"
all_model_checkpoint_paths: "ckpt-117500"
all_model_checkpoint_paths: "ckpt-118000"
all_model_checkpoint_paths: "ckpt-118500"
all_model_checkpoint_paths: "ckpt-119000"
all_model_checkpoint_paths: "ckpt-119500"
all_model_checkpoint_paths: "ckpt-120000"
all_model_checkpoint_paths: "ckpt-120500"
all_model_checkpoint_paths: "ckpt-121000"
all_model_checkpoint_paths: "ckpt-121500"
all_model_checkpoint_paths: "ckpt-122000"
all_model_checkpoint_paths: "ckpt-122500"
all_model_checkpoint_paths: "ckpt-123000"
all_model_checkpoint_paths: "ckpt-123500"
all_model_checkpoint_paths: "ckpt-124000"
all_model_checkpoint_paths: "ckpt-124500"
all_model_checkpoint_paths: "ckpt-125000"
all_model_checkpoint_paths: "ckpt-125500"
all_model_checkpoint_paths: "ckpt-126000"
all_model_checkpoint_paths: "ckpt-126500"
all_model_checkpoint_paths: "ckpt-127000"
all_model_checkpoint_paths: "ckpt-127500"
all_model_checkpoint_paths: "ckpt-128000"
all_model_checkpoint_paths: "ckpt-128500"
all_model_checkpoint_paths: "ckpt-129000"
all_model_checkpoint_paths: "ckpt-129500"
all_model_checkpoint_paths: "ckpt-130000"
all_model_checkpoint_paths: "ckpt-130500"
all_model_checkpoint_paths: "ckpt-131000"
all_model_checkpoint_paths: "ckpt-131500"
all_model_checkpoint_paths: "ckpt-132000"
all_model_checkpoint_paths: "ckpt-132500"
all_model_checkpoint_paths: "ckpt-133000"
all_model_checkpoint_paths: "ckpt-133500"
all_model_checkpoint_paths: "ckpt-134000"
all_model_checkpoint_paths: "ckpt-134500"
all_model_checkpoint_paths: "ckpt-135000"
all_model_checkpoint_paths: "ckpt-135500"
all_model_checkpoint_paths: "ckpt-136000"
all_model_checkpoint_paths: "ckpt-136500"
all_model_checkpoint_paths: "ckpt-137000"
all_model_checkpoint_paths: "ckpt-137500"
all_model_checkpoint_paths: "ckpt-138000"
all_model_checkpoint_paths: "ckpt-138500"
all_model_checkpoint_paths: "ckpt-139000"
all_model_checkpoint_paths: "ckpt-139500"
all_model_checkpoint_paths: "ckpt-140000"
all_model_checkpoint_paths: "ckpt-140500"
all_model_checkpoint_paths: "ckpt-141000"
all_model_checkpoint_paths: "ckpt-141500"
all_model_checkpoint_paths: "ckpt-142000"
all_model_checkpoint_paths: "ckpt-142500"
all_model_checkpoint_paths: "ckpt-143000"
all_model_checkpoint_paths: "ckpt-143500"
all_model_checkpoint_paths: "ckpt-144000"
all_model_checkpoint_paths: "ckpt-144500"
all_model_checkpoint_paths: "ckpt-145000"
all_model_checkpoint_paths: "ckpt-145500"
all_model_checkpoint_paths: "ckpt-146000"
all_model_checkpoint_paths: "ckpt-146500"
all_model_checkpoint_paths: "ckpt-147000"
all_model_checkpoint_paths: "ckpt-147500"
all_model_checkpoint_paths: "ckpt-148000"
all_model_checkpoint_paths: "ckpt-148500"
all_model_checkpoint_paths: "ckpt-149000"
all_model_checkpoint_paths: "ckpt-149500"
all_model_checkpoint_paths: "ckpt-150000"
all_model_checkpoint_paths: "ckpt-150500"
all_model_checkpoint_paths: "ckpt-151000"
all_model_checkpoint_paths: "ckpt-151500"
all_model_checkpoint_paths: "ckpt-152000"
all_model_checkpoint_paths: "ckpt-152500"
all_model_checkpoint_paths: "ckpt-153000"
all_model_checkpoint_paths: "ckpt-153500"
all_model_checkpoint_paths: "ckpt-154000"
all_model_checkpoint_paths: "ckpt-154500"
all_model_checkpoint_paths: "ckpt-155000"
all_model_checkpoint_paths: "ckpt-155500"
all_model_checkpoint_paths: "ckpt-156000"
all_model_checkpoint_paths: "ckpt-156500"
all_model_checkpoint_paths: "ckpt-157000"
all_model_checkpoint_paths: "ckpt-157500"
all_model_checkpoint_paths: "ckpt-158000"
all_model_checkpoint_paths: "ckpt-158500"
all_model_checkpoint_paths: "ckpt-159000"
all_model_checkpoint_paths: "ckpt-159500"
all_model_checkpoint_paths: "ckpt-160000"
all_model_checkpoint_paths: "ckpt-160500"
all_model_checkpoint_paths: "ckpt-161000"
all_model_checkpoint_paths: "ckpt-161500"
all_model_checkpoint_paths: "ckpt-162000"
all_model_checkpoint_paths: "ckpt-162500"
all_model_checkpoint_paths: "ckpt-163000"
all_model_checkpoint_paths: "ckpt-163500"
all_model_checkpoint_paths: "ckpt-164000"
all_model_checkpoint_paths: "ckpt-164500"
all_model_checkpoint_paths: "ckpt-165000"
all_model_checkpoint_paths: "ckpt-165500"
all_model_checkpoint_paths: "ckpt-166000"
all_model_checkpoint_paths: "ckpt-166500"
all_model_checkpoint_paths: "ckpt-167000"
all_model_checkpoint_paths: "ckpt-167500"
all_model_checkpoint_paths: "ckpt-168000"
all_model_checkpoint_paths: "ckpt-168500"
all_model_checkpoint_paths: "ckpt-169000"
all_model_checkpoint_paths: "ckpt-169500"
all_model_checkpoint_paths: "ckpt-170000"
all_model_checkpoint_paths: "ckpt-170500"
all_model_checkpoint_paths: "ckpt-171000"
all_model_checkpoint_paths: "ckpt-171500"
all_model_checkpoint_paths: "ckpt-172000"
all_model_checkpoint_paths: "ckpt-172500"
all_model_checkpoint_paths: "ckpt-173000"
all_model_checkpoint_paths: "ckpt-173500"
all_model_checkpoint_paths: "ckpt-174000"
all_model_checkpoint_paths: "ckpt-174500"
all_model_checkpoint_paths: "ckpt-175000"
all_model_checkpoint_paths: "ckpt-175500"
all_model_checkpoint_paths: "ckpt-176000"
all_model_checkpoint_paths: "ckpt-176500"
all_model_checkpoint_paths: "ckpt-177000"
all_model_checkpoint_paths: "ckpt-177500"
all_model_checkpoint_paths: "ckpt-178000"
all_model_checkpoint_paths: "ckpt-178500"
all_model_checkpoint_paths: "ckpt-179000"
all_model_checkpoint_paths: "ckpt-179500"
all_model_checkpoint_paths: "ckpt-180000"
all_model_checkpoint_paths: "ckpt-180500"
all_model_checkpoint_paths: "ckpt-181000"
all_model_checkpoint_paths: "ckpt-181500"
all_model_checkpoint_paths: "ckpt-182000"
all_model_checkpoint_paths: "ckpt-182500"
all_model_checkpoint_paths: "ckpt-183000"
all_model_checkpoint_paths: "ckpt-183500"
all_model_checkpoint_paths: "ckpt-184000"
all_model_checkpoint_paths: "ckpt-184500"
all_model_checkpoint_paths: "ckpt-185000"
all_model_checkpoint_paths: "ckpt-185500"
all_model_checkpoint_paths: "ckpt-186000"
all_model_checkpoint_paths: "ckpt-186500"
all_model_checkpoint_paths: "ckpt-187000"
all_model_checkpoint_paths: "ckpt-187500"
all_model_checkpoint_paths: "ckpt-188000"
all_model_checkpoint_paths: "ckpt-188500"
all_model_checkpoint_paths: "ckpt-189000"
all_model_checkpoint_paths: "ckpt-189500"
all_model_checkpoint_paths: "ckpt-190000"
all_model_checkpoint_paths: "ckpt-190500"
all_model_checkpoint_paths: "ckpt-191000"
all_model_checkpoint_paths: "ckpt-191500"
all_model_checkpoint_paths: "ckpt-192000"
all_model_checkpoint_paths: "ckpt-192500"
all_model_checkpoint_paths: "ckpt-193000"
all_model_checkpoint_paths: "ckpt-193500"
all_model_checkpoint_paths: "ckpt-194000"
all_model_checkpoint_paths: "ckpt-194500"
all_model_checkpoint_paths: "ckpt-195000"
all_model_checkpoint_paths: "ckpt-195500"
all_model_checkpoint_paths: "ckpt-196000"
all_model_checkpoint_paths: "ckpt-196500"
all_model_checkpoint_paths: "ckpt-197000"
all_model_checkpoint_paths: "ckpt-197500"
all_model_checkpoint_paths: "ckpt-198000"
all_model_checkpoint_paths: "ckpt-198500"
all_model_checkpoint_paths: "ckpt-199000"
all_model_checkpoint_paths: "ckpt-199500"
all_model_checkpoint_paths: "ckpt-200000"
all_model_checkpoint_paths: "ckpt-200500"
all_model_checkpoint_paths: "ckpt-201000"
all_model_checkpoint_paths: "ckpt-201500"
all_model_checkpoint_paths: "ckpt-202000"
all_model_checkpoint_paths: "ckpt-202500"
all_model_checkpoint_paths: "ckpt-203000"
all_model_checkpoint_paths: "ckpt-203500"
all_model_checkpoint_paths: "ckpt-204000"
all_model_checkpoint_paths: "ckpt-204500"
all_model_checkpoint_paths: "ckpt-205000"
all_model_checkpoint_paths: "ckpt-205500"
all_model_checkpoint_paths: "ckpt-206000"
all_model_checkpoint_paths: "ckpt-206500"
all_model_checkpoint_paths: "ckpt-207000"
all_model_checkpoint_paths: "ckpt-207500"
all_model_checkpoint_paths: "ckpt-208000"
all_model_checkpoint_paths: "ckpt-208500"
all_model_checkpoint_paths: "ckpt-209000"
all_model_checkpoint_paths: "ckpt-209500"
all_model_checkpoint_paths: "ckpt-210000"
all_model_checkpoint_paths: "ckpt-210500"
all_model_checkpoint_paths: "ckpt-211000"
all_model_checkpoint_paths: "ckpt-211500"
all_model_checkpoint_paths: "ckpt-212000"
all_model_checkpoint_paths: "ckpt-212500"
all_model_checkpoint_paths: "ckpt-213000"
all_model_checkpoint_paths: "ckpt-213500"
all_model_checkpoint_paths: "ckpt-214000"
all_model_checkpoint_paths: "ckpt-214500"
all_model_checkpoint_paths: "ckpt-215000"
all_model_checkpoint_paths: "ckpt-215500"
all_model_checkpoint_paths: "ckpt-216000"
all_model_checkpoint_paths: "ckpt-216500"
all_model_checkpoint_paths: "ckpt-217000"
all_model_checkpoint_paths: "ckpt-217500"
all_model_checkpoint_paths: "ckpt-218000"
all_model_checkpoint_paths: "ckpt-218500"
all_model_checkpoint_paths: "ckpt-219000"
all_model_checkpoint_paths: "ckpt-219500"
all_model_checkpoint_paths: "ckpt-220000"
all_model_checkpoint_paths: "ckpt-220500"
all_model_checkpoint_paths: "ckpt-221000"
all_model_checkpoint_paths: "ckpt-221500"
all_model_checkpoint_paths: "ckpt-222000"
all_model_checkpoint_paths: "ckpt-222500"
all_model_checkpoint_paths: "ckpt-223000"
all_model_checkpoint_paths: "ckpt-223500"
all_model_checkpoint_paths: "ckpt-224000"
all_model_checkpoint_paths: "ckpt-224500"
all_model_checkpoint_paths: "ckpt-225000"
all_model_checkpoint_paths: "ckpt-225500"
all_model_checkpoint_paths: "ckpt-226000"
all_model_checkpoint_paths: "ckpt-226500"
all_model_checkpoint_paths: "ckpt-227000"
all_model_checkpoint_paths: "ckpt-227500"
all_model_checkpoint_paths: "ckpt-228000"
all_model_checkpoint_paths: "ckpt-228500"
all_model_checkpoint_paths: "ckpt-229000"
all_model_checkpoint_paths: "ckpt-229500"
all_model_checkpoint_paths: "ckpt-230000"
all_model_checkpoint_paths: "ckpt-230500"
all_model_checkpoint_paths: "ckpt-231000"
all_model_checkpoint_paths: "ckpt-231500"
all_model_checkpoint_paths: "ckpt-232000"
all_model_checkpoint_paths: "ckpt-232500"
all_model_checkpoint_paths: "ckpt-233000"
all_model_checkpoint_paths: "ckpt-233500"
all_model_checkpoint_paths: "ckpt-234000"
all_model_checkpoint_paths: "ckpt-234500"
all_model_checkpoint_paths: "ckpt-235000"
all_model_checkpoint_paths: "ckpt-235500"
all_model_checkpoint_paths: "ckpt-236000"
all_model_checkpoint_paths: "ckpt-236500"
all_model_checkpoint_paths: "ckpt-237000"
all_model_checkpoint_paths: "ckpt-237500"
all_model_checkpoint_paths: "ckpt-238000"
all_model_checkpoint_paths: "ckpt-238500"
all_model_checkpoint_paths: "ckpt-239000"
all_model_checkpoint_paths: "ckpt-239500"
all_model_checkpoint_paths: "ckpt-240000"
all_model_checkpoint_paths: "ckpt-240500"
all_model_checkpoint_paths: "ckpt-241000"
all_model_checkpoint_paths: "ckpt-241500"
all_model_checkpoint_paths: "ckpt-242000"
all_model_checkpoint_paths: "ckpt-242500"
all_model_checkpoint_paths: "ckpt-243000"
all_model_checkpoint_paths: "ckpt-243500"
all_model_checkpoint_paths: "ckpt-244000"
all_model_checkpoint_paths: "ckpt-244500"
all_model_checkpoint_paths: "ckpt-245000"
all_model_checkpoint_paths: "ckpt-245500"
all_model_checkpoint_paths: "ckpt-246000"
all_model_checkpoint_paths: "ckpt-246500"
all_model_checkpoint_paths: "ckpt-247000"
all_model_checkpoint_paths: "ckpt-247500"
all_model_checkpoint_paths: "ckpt-248000"
all_model_checkpoint_paths: "ckpt-248500"
all_model_checkpoint_paths: "ckpt-249000"
all_model_checkpoint_paths: "ckpt-249500"
all_model_checkpoint_paths: "ckpt-250000"
all_model_checkpoint_paths: "ckpt-250500"
all_model_checkpoint_paths: "ckpt-251000"
all_model_checkpoint_paths: "ckpt-251500"
all_model_checkpoint_paths: "ckpt-252000"
all_model_checkpoint_paths: "ckpt-252450"
all_model_checkpoint_paths: "ckpt-252500"
all_model_checkpoint_paths: "ckpt-253000"
all_model_checkpoint_paths: "ckpt-253500"
all_model_checkpoint_paths: "ckpt-254000"
all_model_checkpoint_paths: "ckpt-254500"
all_model_checkpoint_paths: "ckpt-255000"
all_model_checkpoint_paths: "ckpt-255500"
all_model_checkpoint_paths: "ckpt-256000"
all_model_checkpoint_paths: "ckpt-256500"
all_model_checkpoint_paths: "ckpt-257000"
all_model_checkpoint_paths: "ckpt-257500"
all_model_checkpoint_paths: "ckpt-258000"
all_model_checkpoint_paths: "ckpt-258500"
all_model_checkpoint_paths: "ckpt-259000"
all_model_checkpoint_paths: "ckpt-259500"
all_model_checkpoint_paths: "ckpt-260000"
all_model_checkpoint_paths: "ckpt-260500"
all_model_checkpoint_paths: "ckpt-261000"
all_model_checkpoint_paths: "ckpt-261500"
all_model_checkpoint_paths: "ckpt-262000"
all_model_checkpoint_paths: "ckpt-262500"
all_model_checkpoint_paths: "ckpt-263000"
all_model_checkpoint_paths: "ckpt-263500"
all_model_checkpoint_paths: "ckpt-264000"
all_model_checkpoint_paths: "ckpt-264500"
all_model_checkpoint_paths: "ckpt-265000"
all_model_checkpoint_paths: "ckpt-265500"
all_model_checkpoint_paths: "ckpt-266000"
all_model_checkpoint_paths: "ckpt-266500"
all_model_checkpoint_paths: "ckpt-267000"
all_model_checkpoint_paths: "ckpt-267500"
all_model_checkpoint_paths: "ckpt-268000"
all_model_checkpoint_paths: "ckpt-268500"
all_model_checkpoint_paths: "ckpt-269000"
all_model_checkpoint_paths: "ckpt-269500"
all_model_checkpoint_paths: "ckpt-270000"
all_model_checkpoint_paths: "ckpt-270500"
all_model_checkpoint_paths: "ckpt-271000"
all_model_checkpoint_paths: "ckpt-271500"
all_model_checkpoint_paths: "ckpt-272000"
all_model_checkpoint_paths: "ckpt-272500"
all_model_checkpoint_paths: "ckpt-273000"
all_model_checkpoint_paths: "ckpt-273500"
all_model_checkpoint_paths: "ckpt-274000"
all_model_checkpoint_paths: "ckpt-274500"
all_model_checkpoint_paths: "ckpt-p2-500"
all_model_checkpoint_paths: "ckpt-p2-1000"
all_model_checkpoint_paths: "ckpt-p2-1500"
all_model_checkpoint_paths: "ckpt-p2-2000"
all_model_checkpoint_paths: "ckpt-p2-2500"
all_model_checkpoint_paths: "ckpt-p2-3000"
all_model_checkpoint_paths: "ckpt-p2-3500"
all_model_checkpoint_paths: "ckpt-p2-4000"
all_model_checkpoint_paths: "ckpt-p2-4500"
all_model_checkpoint_paths: "ckpt-p2-5000"
all_model_checkpoint_paths: "ckpt-p2-5500"
all_model_checkpoint_paths: "ckpt-p2-6000"
all_model_checkpoint_paths: "ckpt-p2-6500"
all_model_checkpoint_paths: "ckpt-p2-7000"
all_model_checkpoint_paths: "ckpt-p2-7500"
all_model_checkpoint_paths: "ckpt-p2-8000"
all_model_checkpoint_paths: "ckpt-p2-8500"
all_model_checkpoint_paths: "ckpt-p2-9000"
all_model_checkpoint_paths: "ckpt-p2-9500"
all_model_checkpoint_paths: "ckpt-p2-10000"
all_model_checkpoint_paths: "ckpt-p2-10500"
all_model_checkpoint_paths: "ckpt-p2-11000"
all_model_checkpoint_paths: "ckpt-p2-11500"
all_model_checkpoint_paths: "ckpt-p2-12000"
all_model_checkpoint_paths: "ckpt-p2-12500"
all_model_checkpoint_paths: "ckpt-p2-13000"
all_model_checkpoint_paths: "ckpt-p2-13500"
all_model_checkpoint_paths: "ckpt-p2-14000"
all_model_checkpoint_paths: "ckpt-p2-14500"
all_model_checkpoint_paths: "ckpt-p2-15000"
all_model_checkpoint_paths: "ckpt-p2-15500"
all_model_checkpoint_paths: "ckpt-p2-16000"
all_model_checkpoint_paths: "ckpt-p2-16500"
all_model_checkpoint_paths: "ckpt-p2-17000"
all_model_checkpoint_timestamps: 1723655756.5185487
all_model_checkpoint_timestamps: 1723656324.890004
all_model_checkpoint_timestamps: 1723656894.4086173
all_model_checkpoint_timestamps: 1723657462.8955019
all_model_checkpoint_timestamps: 1723658031.3076458
all_model_checkpoint_timestamps: 1723658599.7727985
all_model_checkpoint_timestamps: 1723659168.160387
all_model_checkpoint_timestamps: 1723659736.5692286
all_model_checkpoint_timestamps: 1723660304.9379442
all_model_checkpoint_timestamps: 1723660873.4975822
all_model_checkpoint_timestamps: 1723661441.8156054
all_model_checkpoint_timestamps: 1723662010.095582
all_model_checkpoint_timestamps: 1723662578.4791877
all_model_checkpoint_timestamps: 1723663147.2066789
all_model_checkpoint_timestamps: 1723663715.7093616
all_model_checkpoint_timestamps: 1723664284.1485672
all_model_checkpoint_timestamps: 1723664852.439396
all_model_checkpoint_timestamps: 1723665421.8369997
all_model_checkpoint_timestamps: 1723665990.2609866
all_model_checkpoint_timestamps: 1723666558.6672206
all_model_checkpoint_timestamps: 1723667127.0276697
all_model_checkpoint_timestamps: 1723667695.4294314
all_model_checkpoint_timestamps: 1723668263.9968116
all_model_checkpoint_timestamps: 1723668832.7254045
all_model_checkpoint_timestamps: 1723669401.2214642
all_model_checkpoint_timestamps: 1723669969.8162122
all_model_checkpoint_timestamps: 1723670538.2994337
all_model_checkpoint_timestamps: 1723671106.8365173
all_model_checkpoint_timestamps: 1723671675.2771032
all_model_checkpoint_timestamps: 1723672243.691448
all_model_checkpoint_timestamps: 1723672811.947149
all_model_checkpoint_timestamps: 1723673380.4781017
all_model_checkpoint_timestamps: 1723673949.1235263
all_model_checkpoint_timestamps: 1723674518.7717056
all_model_checkpoint_timestamps: 1723675087.4283564
all_model_checkpoint_timestamps: 1723675655.8473582
all_model_checkpoint_timestamps: 1723676224.2516057
all_model_checkpoint_timestamps: 1723676792.9929829
all_model_checkpoint_timestamps: 1723677361.7393723
all_model_checkpoint_timestamps: 1723677929.9595082
all_model_checkpoint_timestamps: 1723678498.2752457
all_model_checkpoint_timestamps: 1723680668.46376
all_model_checkpoint_timestamps: 1723681236.4542165
all_model_checkpoint_timestamps: 1723681804.6027431
all_model_checkpoint_timestamps: 1723682372.5709777
all_model_checkpoint_timestamps: 1723682941.5330498
all_model_checkpoint_timestamps: 1723683509.7036264
all_model_checkpoint_timestamps: 1723684077.7280831
all_model_checkpoint_timestamps: 1723684645.664876
all_model_checkpoint_timestamps: 1723685213.7531595
all_model_checkpoint_timestamps: 1723685781.9884026
all_model_checkpoint_timestamps: 1723686350.4715154
all_model_checkpoint_timestamps: 1723686918.7656815
all_model_checkpoint_timestamps: 1723687486.7902021
all_model_checkpoint_timestamps: 1723688055.0167308
all_model_checkpoint_timestamps: 1723688623.0539753
all_model_checkpoint_timestamps: 1723689191.102053
all_model_checkpoint_timestamps: 1723689759.3963425
all_model_checkpoint_timestamps: 1723690327.6888118
all_model_checkpoint_timestamps: 1723690896.3148012
all_model_checkpoint_timestamps: 1723691465.0175788
all_model_checkpoint_timestamps: 1723692034.2662458
all_model_checkpoint_timestamps: 1723692602.2413132
all_model_checkpoint_timestamps: 1723693170.5381525
all_model_checkpoint_timestamps: 1723693739.2029748
all_model_checkpoint_timestamps: 1723694307.2019274
all_model_checkpoint_timestamps: 1723694875.4587414
all_model_checkpoint_timestamps: 1723695443.5405407
all_model_checkpoint_timestamps: 1723696011.6172442
all_model_checkpoint_timestamps: 1723696579.7121055
all_model_checkpoint_timestamps: 1723697147.8214798
all_model_checkpoint_timestamps: 1723697716.0986001
all_model_checkpoint_timestamps: 1723698284.127444
all_model_checkpoint_timestamps: 1723698852.1433647
all_model_checkpoint_timestamps: 1723699420.2168565
all_model_checkpoint_timestamps: 1723699988.2296448
all_model_checkpoint_timestamps: 1723700556.8662922
all_model_checkpoint_timestamps: 1723701125.8284767
all_model_checkpoint_timestamps: 1723701694.044237
all_model_checkpoint_timestamps: 1723702262.2991908
all_model_checkpoint_timestamps: 1723702830.647643
all_model_checkpoint_timestamps: 1723703398.5801384
all_model_checkpoint_timestamps: 1723703966.6187813
all_model_checkpoint_timestamps: 1723704534.8602
all_model_checkpoint_timestamps: 1723705103.411475
all_model_checkpoint_timestamps: 1723705671.3696644
all_model_checkpoint_timestamps: 1723706239.3731198
all_model_checkpoint_timestamps: 1723706807.740178
all_model_checkpoint_timestamps: 1723707376.1477182
all_model_checkpoint_timestamps: 1723707944.073994
all_model_checkpoint_timestamps: 1723708512.3442771
all_model_checkpoint_timestamps: 1723709080.3785336
all_model_checkpoint_timestamps: 1723709648.6341813
all_model_checkpoint_timestamps: 1723710217.6304834
all_model_checkpoint_timestamps: 1723710785.5410283
all_model_checkpoint_timestamps: 1723711353.781134
all_model_checkpoint_timestamps: 1723711921.5604026
all_model_checkpoint_timestamps: 1723712491.3016977
all_model_checkpoint_timestamps: 1723713067.0068464
all_model_checkpoint_timestamps: 1723713642.9220376
all_model_checkpoint_timestamps: 1723717423.1919665
all_model_checkpoint_timestamps: 1723717990.6573312
all_model_checkpoint_timestamps: 1723718558.4065673
all_model_checkpoint_timestamps: 1723719126.0434754
all_model_checkpoint_timestamps: 1723719693.76125
all_model_checkpoint_timestamps: 1723720261.413257
all_model_checkpoint_timestamps: 1723720830.064622
all_model_checkpoint_timestamps: 1723721397.8483672
all_model_checkpoint_timestamps: 1723721965.355266
all_model_checkpoint_timestamps: 1723722533.1764536
all_model_checkpoint_timestamps: 1723723100.8737977
all_model_checkpoint_timestamps: 1723723668.839676
all_model_checkpoint_timestamps: 1723724236.4113467
all_model_checkpoint_timestamps: 1723724803.7958784
all_model_checkpoint_timestamps: 1723725371.3072565
all_model_checkpoint_timestamps: 1723725938.966415
all_model_checkpoint_timestamps: 1723726506.4106076
all_model_checkpoint_timestamps: 1723727074.0512986
all_model_checkpoint_timestamps: 1723727641.4481266
all_model_checkpoint_timestamps: 1723728208.9550662
all_model_checkpoint_timestamps: 1723728776.5814917
all_model_checkpoint_timestamps: 1723729344.281724
all_model_checkpoint_timestamps: 1723729912.8637135
all_model_checkpoint_timestamps: 1723730480.4525092
all_model_checkpoint_timestamps: 1723731048.0935135
all_model_checkpoint_timestamps: 1723731615.5847366
all_model_checkpoint_timestamps: 1723732183.2467327
all_model_checkpoint_timestamps: 1723732750.8756373
all_model_checkpoint_timestamps: 1723733318.4931927
all_model_checkpoint_timestamps: 1723733886.0818768
all_model_checkpoint_timestamps: 1723734453.5857666
all_model_checkpoint_timestamps: 1723735020.9514349
all_model_checkpoint_timestamps: 1723735588.6433363
all_model_checkpoint_timestamps: 1723736156.1821299
all_model_checkpoint_timestamps: 1723736723.9742424
all_model_checkpoint_timestamps: 1723737291.9007065
all_model_checkpoint_timestamps: 1723737859.5164726
all_model_checkpoint_timestamps: 1723738427.0876021
all_model_checkpoint_timestamps: 1723738995.6295412
all_model_checkpoint_timestamps: 1723739563.7021623
all_model_checkpoint_timestamps: 1723740131.3303921
all_model_checkpoint_timestamps: 1723740699.0444367
all_model_checkpoint_timestamps: 1723741266.4848125
all_model_checkpoint_timestamps: 1723741833.9304318
all_model_checkpoint_timestamps: 1723742401.374622
all_model_checkpoint_timestamps: 1723742969.2061927
all_model_checkpoint_timestamps: 1723743537.3925798
all_model_checkpoint_timestamps: 1723744105.2407074
all_model_checkpoint_timestamps: 1723744672.987609
all_model_checkpoint_timestamps: 1723745240.6550512
all_model_checkpoint_timestamps: 1723745808.139633
all_model_checkpoint_timestamps: 1723746375.6553864
all_model_checkpoint_timestamps: 1723746943.1986942
all_model_checkpoint_timestamps: 1723747510.8163714
all_model_checkpoint_timestamps: 1723748079.2130914
all_model_checkpoint_timestamps: 1723748646.855261
all_model_checkpoint_timestamps: 1723749214.649393
all_model_checkpoint_timestamps: 1723749782.580169
all_model_checkpoint_timestamps: 1723750350.263219
all_model_checkpoint_timestamps: 1723750917.7882178
all_model_checkpoint_timestamps: 1723751485.3183722
all_model_checkpoint_timestamps: 1723752053.0180895
all_model_checkpoint_timestamps: 1723752620.5000584
all_model_checkpoint_timestamps: 1723753187.9240997
all_model_checkpoint_timestamps: 1723753755.4136307
all_model_checkpoint_timestamps: 1723754322.8567991
all_model_checkpoint_timestamps: 1723754890.661835
all_model_checkpoint_timestamps: 1723755458.393933
all_model_checkpoint_timestamps: 1723756026.1758955
all_model_checkpoint_timestamps: 1723756594.820966
all_model_checkpoint_timestamps: 1723757162.3142152
all_model_checkpoint_timestamps: 1723757730.061614
all_model_checkpoint_timestamps: 1723758297.658719
all_model_checkpoint_timestamps: 1723758865.3468204
all_model_checkpoint_timestamps: 1723759433.0375113
all_model_checkpoint_timestamps: 1723760000.460857
all_model_checkpoint_timestamps: 1723760567.9417944
all_model_checkpoint_timestamps: 1723761135.3910446
all_model_checkpoint_timestamps: 1723761703.1099558
all_model_checkpoint_timestamps: 1723762270.8221188
all_model_checkpoint_timestamps: 1723762838.5333273
all_model_checkpoint_timestamps: 1723763406.3100183
all_model_checkpoint_timestamps: 1723763973.9543347
all_model_checkpoint_timestamps: 1723764541.7191489
all_model_checkpoint_timestamps: 1723765109.1980367
all_model_checkpoint_timestamps: 1723765677.8680818
all_model_checkpoint_timestamps: 1723766245.68363
all_model_checkpoint_timestamps: 1723766813.3811083
all_model_checkpoint_timestamps: 1723767381.1569214
all_model_checkpoint_timestamps: 1723767948.7018564
all_model_checkpoint_timestamps: 1723768516.1360853
all_model_checkpoint_timestamps: 1723769083.6836393
all_model_checkpoint_timestamps: 1723769651.3704588
all_model_checkpoint_timestamps: 1723770218.8547828
all_model_checkpoint_timestamps: 1723770786.5569568
all_model_checkpoint_timestamps: 1723771354.1844413
all_model_checkpoint_timestamps: 1723771921.9369702
all_model_checkpoint_timestamps: 1723772490.0770903
all_model_checkpoint_timestamps: 1723773057.7710888
all_model_checkpoint_timestamps: 1723773625.465525
all_model_checkpoint_timestamps: 1723774193.255483
all_model_checkpoint_timestamps: 1723774761.991137
all_model_checkpoint_timestamps: 1723775329.6364777
all_model_checkpoint_timestamps: 1723775897.2798066
all_model_checkpoint_timestamps: 1723776464.91395
all_model_checkpoint_timestamps: 1723777032.4253926
all_model_checkpoint_timestamps: 1723777599.8645248
all_model_checkpoint_timestamps: 1723778167.789524
all_model_checkpoint_timestamps: 1723778735.2971122
all_model_checkpoint_timestamps: 1723779302.711694
all_model_checkpoint_timestamps: 1723779870.2083492
all_model_checkpoint_timestamps: 1723780437.6229382
all_model_checkpoint_timestamps: 1723781005.138606
all_model_checkpoint_timestamps: 1723781572.8249145
all_model_checkpoint_timestamps: 1723782140.4223907
all_model_checkpoint_timestamps: 1723782708.0551047
all_model_checkpoint_timestamps: 1723783275.5793388
all_model_checkpoint_timestamps: 1723783844.730625
all_model_checkpoint_timestamps: 1723784412.6203303
all_model_checkpoint_timestamps: 1723784980.0665252
all_model_checkpoint_timestamps: 1723785547.4660666
all_model_checkpoint_timestamps: 1723786115.206296
all_model_checkpoint_timestamps: 1723786682.876413
all_model_checkpoint_timestamps: 1723787250.4965281
all_model_checkpoint_timestamps: 1723787817.9953291
all_model_checkpoint_timestamps: 1723788387.1146376
all_model_checkpoint_timestamps: 1723789129.3737447
all_model_checkpoint_timestamps: 1723789696.9036705
all_model_checkpoint_timestamps: 1723790264.3953056
all_model_checkpoint_timestamps: 1723790832.0842273
all_model_checkpoint_timestamps: 1723791400.130402
all_model_checkpoint_timestamps: 1723791967.622577
all_model_checkpoint_timestamps: 1723792536.4640477
all_model_checkpoint_timestamps: 1723793104.5624022
all_model_checkpoint_timestamps: 1723793671.9855742
all_model_checkpoint_timestamps: 1723794240.1716113
all_model_checkpoint_timestamps: 1723794807.757389
all_model_checkpoint_timestamps: 1723795375.1618712
all_model_checkpoint_timestamps: 1723795942.7782397
all_model_checkpoint_timestamps: 1723796510.3328433
all_model_checkpoint_timestamps: 1723797078.0665607
all_model_checkpoint_timestamps: 1723797645.615808
all_model_checkpoint_timestamps: 1723798213.829464
all_model_checkpoint_timestamps: 1723798781.610899
all_model_checkpoint_timestamps: 1723799349.3056839
all_model_checkpoint_timestamps: 1723799916.8375645
all_model_checkpoint_timestamps: 1723800484.3792255
all_model_checkpoint_timestamps: 1723801052.081885
all_model_checkpoint_timestamps: 1723801620.9152343
all_model_checkpoint_timestamps: 1723802188.5835989
all_model_checkpoint_timestamps: 1723802756.0577958
all_model_checkpoint_timestamps: 1723803323.7110713
all_model_checkpoint_timestamps: 1723803891.6883492
all_model_checkpoint_timestamps: 1723804459.4155111
all_model_checkpoint_timestamps: 1723805026.8428414
all_model_checkpoint_timestamps: 1723805594.5766299
all_model_checkpoint_timestamps: 1723806162.4501853
all_model_checkpoint_timestamps: 1723806730.0432413
all_model_checkpoint_timestamps: 1723807298.40573
all_model_checkpoint_timestamps: 1723807865.985331
all_model_checkpoint_timestamps: 1723808433.8031275
all_model_checkpoint_timestamps: 1723809001.3685408
all_model_checkpoint_timestamps: 1723809568.8973148
all_model_checkpoint_timestamps: 1723810136.634537
all_model_checkpoint_timestamps: 1723810705.261715
all_model_checkpoint_timestamps: 1723811273.2389112
all_model_checkpoint_timestamps: 1723811840.8180282
all_model_checkpoint_timestamps: 1723812408.9861836
all_model_checkpoint_timestamps: 1723812976.4866943
all_model_checkpoint_timestamps: 1723813544.167639
all_model_checkpoint_timestamps: 1723814111.7246382
all_model_checkpoint_timestamps: 1723814679.4126966
all_model_checkpoint_timestamps: 1723815246.9382637
all_model_checkpoint_timestamps: 1723815814.6269405
all_model_checkpoint_timestamps: 1723816382.1894622
all_model_checkpoint_timestamps: 1723816949.710237
all_model_checkpoint_timestamps: 1723817517.2339098
all_model_checkpoint_timestamps: 1723818085.0538847
all_model_checkpoint_timestamps: 1723818652.2147264
all_model_checkpoint_timestamps: 1723819218.913615
all_model_checkpoint_timestamps: 1723819786.4947743
all_model_checkpoint_timestamps: 1723820356.3383381
all_model_checkpoint_timestamps: 1723820931.549852
all_model_checkpoint_timestamps: 1723837914.6438134
all_model_checkpoint_timestamps: 1723838482.7210546
all_model_checkpoint_timestamps: 1723839050.5386858
all_model_checkpoint_timestamps: 1723839618.3129902
all_model_checkpoint_timestamps: 1723840186.1445477
all_model_checkpoint_timestamps: 1723840753.776688
all_model_checkpoint_timestamps: 1723841322.7200289
all_model_checkpoint_timestamps: 1723841890.4222813
all_model_checkpoint_timestamps: 1723842458.5397952
all_model_checkpoint_timestamps: 1723843026.3808577
all_model_checkpoint_timestamps: 1723843594.1653852
all_model_checkpoint_timestamps: 1723844162.2066953
all_model_checkpoint_timestamps: 1723925148.7143316
all_model_checkpoint_timestamps: 1723925716.7641854
all_model_checkpoint_timestamps: 1723926284.7979157
all_model_checkpoint_timestamps: 1723926853.0102582
all_model_checkpoint_timestamps: 1723927422.00486
all_model_checkpoint_timestamps: 1723927989.7654254
all_model_checkpoint_timestamps: 1723928557.7073596
all_model_checkpoint_timestamps: 1723929125.7407312
all_model_checkpoint_timestamps: 1723929693.8646958
all_model_checkpoint_timestamps: 1723930261.7401628
all_model_checkpoint_timestamps: 1723930829.4874616
all_model_checkpoint_timestamps: 1723931397.3523
all_model_checkpoint_timestamps: 1723931965.3392317
all_model_checkpoint_timestamps: 1723932533.2895474
all_model_checkpoint_timestamps: 1723933101.281966
all_model_checkpoint_timestamps: 1723933669.4467745
all_model_checkpoint_timestamps: 1723934237.6267936
all_model_checkpoint_timestamps: 1723934805.4043012
all_model_checkpoint_timestamps: 1723935373.472044
all_model_checkpoint_timestamps: 1723935941.41907
all_model_checkpoint_timestamps: 1723936510.185743
all_model_checkpoint_timestamps: 1723937077.8899302
all_model_checkpoint_timestamps: 1723937645.807137
all_model_checkpoint_timestamps: 1723938213.7884412
all_model_checkpoint_timestamps: 1723938781.8466673
all_model_checkpoint_timestamps: 1723939349.9076924
all_model_checkpoint_timestamps: 1723939917.9406402
all_model_checkpoint_timestamps: 1723940485.9801917
all_model_checkpoint_timestamps: 1723941054.0686176
all_model_checkpoint_timestamps: 1723941621.9037578
all_model_checkpoint_timestamps: 1723942190.0989838
all_model_checkpoint_timestamps: 1723942757.951166
all_model_checkpoint_timestamps: 1723943325.8392253
all_model_checkpoint_timestamps: 1723943893.7027109
all_model_checkpoint_timestamps: 1723944462.018838
all_model_checkpoint_timestamps: 1723945029.8987243
all_model_checkpoint_timestamps: 1723945598.8656983
all_model_checkpoint_timestamps: 1723946167.18416
all_model_checkpoint_timestamps: 1723946735.2983196
all_model_checkpoint_timestamps: 1723947303.206299
all_model_checkpoint_timestamps: 1723947871.1519973
all_model_checkpoint_timestamps: 1723948439.0108852
all_model_checkpoint_timestamps: 1723949007.2561572
all_model_checkpoint_timestamps: 1723949575.165813
all_model_checkpoint_timestamps: 1723950143.134799
all_model_checkpoint_timestamps: 1723950710.9876735
all_model_checkpoint_timestamps: 1723951278.9732683
all_model_checkpoint_timestamps: 1723951847.1216822
all_model_checkpoint_timestamps: 1723952415.107711
all_model_checkpoint_timestamps: 1723952982.9401338
all_model_checkpoint_timestamps: 1723953550.9529486
all_model_checkpoint_timestamps: 1723954118.7891185
all_model_checkpoint_timestamps: 1723954687.6420333
all_model_checkpoint_timestamps: 1723955255.5660653
all_model_checkpoint_timestamps: 1723955823.745328
all_model_checkpoint_timestamps: 1723956391.6892028
all_model_checkpoint_timestamps: 1723956959.6951082
all_model_checkpoint_timestamps: 1723957527.6778476
all_model_checkpoint_timestamps: 1723958095.839429
all_model_checkpoint_timestamps: 1723958664.2240298
all_model_checkpoint_timestamps: 1723959232.616134
all_model_checkpoint_timestamps: 1723959800.3992593
all_model_checkpoint_timestamps: 1723960368.2477906
all_model_checkpoint_timestamps: 1723960936.131273
all_model_checkpoint_timestamps: 1723961504.1514297
all_model_checkpoint_timestamps: 1723962071.9738843
all_model_checkpoint_timestamps: 1723962639.8392742
all_model_checkpoint_timestamps: 1723963207.5719829
all_model_checkpoint_timestamps: 1723963776.4908824
all_model_checkpoint_timestamps: 1723964344.3919485
all_model_checkpoint_timestamps: 1723964912.2672973
all_model_checkpoint_timestamps: 1723965480.1052248
all_model_checkpoint_timestamps: 1723966048.1814754
all_model_checkpoint_timestamps: 1723966616.0388582
all_model_checkpoint_timestamps: 1723967183.8533762
all_model_checkpoint_timestamps: 1723967751.7195609
all_model_checkpoint_timestamps: 1723968319.9178045
all_model_checkpoint_timestamps: 1723968887.71339
all_model_checkpoint_timestamps: 1723969455.7290757
all_model_checkpoint_timestamps: 1723970023.567254
all_model_checkpoint_timestamps: 1723970591.6798086
all_model_checkpoint_timestamps: 1723971159.5085118
all_model_checkpoint_timestamps: 1723971727.3121147
all_model_checkpoint_timestamps: 1723972295.6605358
all_model_checkpoint_timestamps: 1723972864.697806
all_model_checkpoint_timestamps: 1723973432.5341415
all_model_checkpoint_timestamps: 1723974000.6163275
all_model_checkpoint_timestamps: 1723974568.5364516
all_model_checkpoint_timestamps: 1723975136.5615885
all_model_checkpoint_timestamps: 1723975704.6286209
all_model_checkpoint_timestamps: 1723976272.5534737
all_model_checkpoint_timestamps: 1723976840.4341278
all_model_checkpoint_timestamps: 1723977408.6411684
all_model_checkpoint_timestamps: 1723977976.8547285
all_model_checkpoint_timestamps: 1723978544.7382584
all_model_checkpoint_timestamps: 1723979112.7047472
all_model_checkpoint_timestamps: 1723979680.6063058
all_model_checkpoint_timestamps: 1723980248.566143
all_model_checkpoint_timestamps: 1723980816.5309885
all_model_checkpoint_timestamps: 1723981384.3959756
all_model_checkpoint_timestamps: 1723981953.3225617
all_model_checkpoint_timestamps: 1723982521.206822
all_model_checkpoint_timestamps: 1723983089.2467628
all_model_checkpoint_timestamps: 1723983657.072114
all_model_checkpoint_timestamps: 1723984225.095009
all_model_checkpoint_timestamps: 1723984793.0428867
all_model_checkpoint_timestamps: 1723985360.953517
all_model_checkpoint_timestamps: 1723985928.7974732
all_model_checkpoint_timestamps: 1723986496.9953334
all_model_checkpoint_timestamps: 1723987065.1009076
all_model_checkpoint_timestamps: 1723987632.9824307
all_model_checkpoint_timestamps: 1723988201.3380241
all_model_checkpoint_timestamps: 1723988769.2523355
all_model_checkpoint_timestamps: 1723989337.5416229
all_model_checkpoint_timestamps: 1723989905.6720715
all_model_checkpoint_timestamps: 1723990473.6605463
all_model_checkpoint_timestamps: 1723991042.9605253
all_model_checkpoint_timestamps: 1723991610.8312554
all_model_checkpoint_timestamps: 1723992178.8114784
all_model_checkpoint_timestamps: 1723992746.8680081
all_model_checkpoint_timestamps: 1723993315.0701978
all_model_checkpoint_timestamps: 1723993883.2017186
all_model_checkpoint_timestamps: 1723994451.30967
all_model_checkpoint_timestamps: 1723995019.2430859
all_model_checkpoint_timestamps: 1723995587.1352985
all_model_checkpoint_timestamps: 1723996098.4781768
all_model_checkpoint_timestamps: 1723996339.5609872
all_model_checkpoint_timestamps: 1723996907.6247175
all_model_checkpoint_timestamps: 1723997476.0345428
all_model_checkpoint_timestamps: 1723998043.8229513
all_model_checkpoint_timestamps: 1723998612.46248
all_model_checkpoint_timestamps: 1723999180.443336
all_model_checkpoint_timestamps: 1723999748.4441156
all_model_checkpoint_timestamps: 1724000316.5822208
all_model_checkpoint_timestamps: 1724000884.6487904
all_model_checkpoint_timestamps: 1724001452.5277526
all_model_checkpoint_timestamps: 1724002020.8429158
all_model_checkpoint_timestamps: 1724002588.537726
all_model_checkpoint_timestamps: 1724003156.2917898
all_model_checkpoint_timestamps: 1724003724.1605954
all_model_checkpoint_timestamps: 1724004292.1783123
all_model_checkpoint_timestamps: 1724004860.3718886
all_model_checkpoint_timestamps: 1724005428.6114583
all_model_checkpoint_timestamps: 1724005996.35695
all_model_checkpoint_timestamps: 1724006563.9707131
all_model_checkpoint_timestamps: 1724007132.1131294
all_model_checkpoint_timestamps: 1724007700.96118
all_model_checkpoint_timestamps: 1724008268.8720822
all_model_checkpoint_timestamps: 1724008836.7135494
all_model_checkpoint_timestamps: 1724009404.8798249
all_model_checkpoint_timestamps: 1724009972.7666576
all_model_checkpoint_timestamps: 1724010540.8649874
all_model_checkpoint_timestamps: 1724011108.9936993
all_model_checkpoint_timestamps: 1724011677.1856384
all_model_checkpoint_timestamps: 1724012245.0251555
all_model_checkpoint_timestamps: 1724012812.7834125
all_model_checkpoint_timestamps: 1724013380.7310817
all_model_checkpoint_timestamps: 1724013948.5055912
all_model_checkpoint_timestamps: 1724014516.3568814
all_model_checkpoint_timestamps: 1724015084.5735428
all_model_checkpoint_timestamps: 1724015652.7979994
all_model_checkpoint_timestamps: 1724016222.0013065
all_model_checkpoint_timestamps: 1724016789.9072995
all_model_checkpoint_timestamps: 1724017357.7227597
all_model_checkpoint_timestamps: 1724017925.7247388
all_model_checkpoint_timestamps: 1724018493.7288415
all_model_checkpoint_timestamps: 1724019061.9008782
all_model_checkpoint_timestamps: 1724019629.5949376
all_model_checkpoint_timestamps: 1724020196.8244035
all_model_checkpoint_timestamps: 1724023866.616573
all_model_checkpoint_timestamps: 1724024438.0432653
all_model_checkpoint_timestamps: 1724026367.4639924
all_model_checkpoint_timestamps: 1724028105.164996
all_model_checkpoint_timestamps: 1724029842.3216336
all_model_checkpoint_timestamps: 1724031579.4985373
all_model_checkpoint_timestamps: 1724033316.9580135
all_model_checkpoint_timestamps: 1724035054.4169161
all_model_checkpoint_timestamps: 1724036792.616297
all_model_checkpoint_timestamps: 1724038529.8658097
all_model_checkpoint_timestamps: 1724040267.1233609
all_model_checkpoint_timestamps: 1724042004.5955925
all_model_checkpoint_timestamps: 1724043741.857026
all_model_checkpoint_timestamps: 1724045479.1611128
all_model_checkpoint_timestamps: 1724047216.6777637
all_model_checkpoint_timestamps: 1724048953.9792976
all_model_checkpoint_timestamps: 1724050691.6967814
all_model_checkpoint_timestamps: 1724052429.0535693
all_model_checkpoint_timestamps: 1724054166.3742871
all_model_checkpoint_timestamps: 1724055903.97564
all_model_checkpoint_timestamps: 1724057641.555114
all_model_checkpoint_timestamps: 1724060329.4078333
all_model_checkpoint_timestamps: 1724062067.3004427
all_model_checkpoint_timestamps: 1724063805.3373964
all_model_checkpoint_timestamps: 1724065543.0177257
all_model_checkpoint_timestamps: 1724067280.9930975
all_model_checkpoint_timestamps: 1724069018.5542202
all_model_checkpoint_timestamps: 1724070757.0909867
all_model_checkpoint_timestamps: 1724072494.6700165
all_model_checkpoint_timestamps: 1724074232.2138183
all_model_checkpoint_timestamps: 1724075969.735352
all_model_checkpoint_timestamps: 1724077708.141568
all_model_checkpoint_timestamps: 1724079445.8885489
all_model_checkpoint_timestamps: 1724081183.608279
all_model_checkpoint_timestamps: 1724082921.9151583
all_model_checkpoint_timestamps: 1724084667.512989
last_preserved_timestamp: 1723578364.205109
|