Datasets:
File size: 45,843 Bytes
ae27ce7 | 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-5000"
all_model_checkpoint_paths: "ckpt-10"
all_model_checkpoint_paths: "ckpt-20"
all_model_checkpoint_paths: "ckpt-30"
all_model_checkpoint_paths: "ckpt-40"
all_model_checkpoint_paths: "ckpt-50"
all_model_checkpoint_paths: "ckpt-60"
all_model_checkpoint_paths: "ckpt-70"
all_model_checkpoint_paths: "ckpt-80"
all_model_checkpoint_paths: "ckpt-90"
all_model_checkpoint_paths: "ckpt-100"
all_model_checkpoint_paths: "ckpt-110"
all_model_checkpoint_paths: "ckpt-120"
all_model_checkpoint_paths: "ckpt-130"
all_model_checkpoint_paths: "ckpt-140"
all_model_checkpoint_paths: "ckpt-150"
all_model_checkpoint_paths: "ckpt-160"
all_model_checkpoint_paths: "ckpt-170"
all_model_checkpoint_paths: "ckpt-180"
all_model_checkpoint_paths: "ckpt-190"
all_model_checkpoint_paths: "ckpt-200"
all_model_checkpoint_paths: "ckpt-210"
all_model_checkpoint_paths: "ckpt-220"
all_model_checkpoint_paths: "ckpt-230"
all_model_checkpoint_paths: "ckpt-240"
all_model_checkpoint_paths: "ckpt-250"
all_model_checkpoint_paths: "ckpt-260"
all_model_checkpoint_paths: "ckpt-270"
all_model_checkpoint_paths: "ckpt-280"
all_model_checkpoint_paths: "ckpt-290"
all_model_checkpoint_paths: "ckpt-300"
all_model_checkpoint_paths: "ckpt-310"
all_model_checkpoint_paths: "ckpt-320"
all_model_checkpoint_paths: "ckpt-330"
all_model_checkpoint_paths: "ckpt-340"
all_model_checkpoint_paths: "ckpt-350"
all_model_checkpoint_paths: "ckpt-360"
all_model_checkpoint_paths: "ckpt-370"
all_model_checkpoint_paths: "ckpt-380"
all_model_checkpoint_paths: "ckpt-390"
all_model_checkpoint_paths: "ckpt-400"
all_model_checkpoint_paths: "ckpt-410"
all_model_checkpoint_paths: "ckpt-420"
all_model_checkpoint_paths: "ckpt-430"
all_model_checkpoint_paths: "ckpt-440"
all_model_checkpoint_paths: "ckpt-450"
all_model_checkpoint_paths: "ckpt-460"
all_model_checkpoint_paths: "ckpt-470"
all_model_checkpoint_paths: "ckpt-480"
all_model_checkpoint_paths: "ckpt-490"
all_model_checkpoint_paths: "ckpt-500"
all_model_checkpoint_paths: "ckpt-510"
all_model_checkpoint_paths: "ckpt-520"
all_model_checkpoint_paths: "ckpt-530"
all_model_checkpoint_paths: "ckpt-540"
all_model_checkpoint_paths: "ckpt-550"
all_model_checkpoint_paths: "ckpt-560"
all_model_checkpoint_paths: "ckpt-570"
all_model_checkpoint_paths: "ckpt-580"
all_model_checkpoint_paths: "ckpt-590"
all_model_checkpoint_paths: "ckpt-600"
all_model_checkpoint_paths: "ckpt-610"
all_model_checkpoint_paths: "ckpt-620"
all_model_checkpoint_paths: "ckpt-630"
all_model_checkpoint_paths: "ckpt-640"
all_model_checkpoint_paths: "ckpt-650"
all_model_checkpoint_paths: "ckpt-660"
all_model_checkpoint_paths: "ckpt-670"
all_model_checkpoint_paths: "ckpt-680"
all_model_checkpoint_paths: "ckpt-690"
all_model_checkpoint_paths: "ckpt-700"
all_model_checkpoint_paths: "ckpt-710"
all_model_checkpoint_paths: "ckpt-720"
all_model_checkpoint_paths: "ckpt-730"
all_model_checkpoint_paths: "ckpt-740"
all_model_checkpoint_paths: "ckpt-750"
all_model_checkpoint_paths: "ckpt-760"
all_model_checkpoint_paths: "ckpt-770"
all_model_checkpoint_paths: "ckpt-780"
all_model_checkpoint_paths: "ckpt-790"
all_model_checkpoint_paths: "ckpt-800"
all_model_checkpoint_paths: "ckpt-810"
all_model_checkpoint_paths: "ckpt-820"
all_model_checkpoint_paths: "ckpt-830"
all_model_checkpoint_paths: "ckpt-840"
all_model_checkpoint_paths: "ckpt-850"
all_model_checkpoint_paths: "ckpt-860"
all_model_checkpoint_paths: "ckpt-870"
all_model_checkpoint_paths: "ckpt-880"
all_model_checkpoint_paths: "ckpt-890"
all_model_checkpoint_paths: "ckpt-900"
all_model_checkpoint_paths: "ckpt-910"
all_model_checkpoint_paths: "ckpt-920"
all_model_checkpoint_paths: "ckpt-930"
all_model_checkpoint_paths: "ckpt-940"
all_model_checkpoint_paths: "ckpt-950"
all_model_checkpoint_paths: "ckpt-960"
all_model_checkpoint_paths: "ckpt-970"
all_model_checkpoint_paths: "ckpt-980"
all_model_checkpoint_paths: "ckpt-990"
all_model_checkpoint_paths: "ckpt-1000"
all_model_checkpoint_paths: "ckpt-1010"
all_model_checkpoint_paths: "ckpt-1020"
all_model_checkpoint_paths: "ckpt-1030"
all_model_checkpoint_paths: "ckpt-1040"
all_model_checkpoint_paths: "ckpt-1050"
all_model_checkpoint_paths: "ckpt-1060"
all_model_checkpoint_paths: "ckpt-1070"
all_model_checkpoint_paths: "ckpt-1080"
all_model_checkpoint_paths: "ckpt-1090"
all_model_checkpoint_paths: "ckpt-1100"
all_model_checkpoint_paths: "ckpt-1110"
all_model_checkpoint_paths: "ckpt-1120"
all_model_checkpoint_paths: "ckpt-1130"
all_model_checkpoint_paths: "ckpt-1140"
all_model_checkpoint_paths: "ckpt-1150"
all_model_checkpoint_paths: "ckpt-1160"
all_model_checkpoint_paths: "ckpt-1170"
all_model_checkpoint_paths: "ckpt-1180"
all_model_checkpoint_paths: "ckpt-1190"
all_model_checkpoint_paths: "ckpt-1200"
all_model_checkpoint_paths: "ckpt-1210"
all_model_checkpoint_paths: "ckpt-1220"
all_model_checkpoint_paths: "ckpt-1230"
all_model_checkpoint_paths: "ckpt-1240"
all_model_checkpoint_paths: "ckpt-1250"
all_model_checkpoint_paths: "ckpt-1260"
all_model_checkpoint_paths: "ckpt-1270"
all_model_checkpoint_paths: "ckpt-1280"
all_model_checkpoint_paths: "ckpt-1290"
all_model_checkpoint_paths: "ckpt-1300"
all_model_checkpoint_paths: "ckpt-1310"
all_model_checkpoint_paths: "ckpt-1320"
all_model_checkpoint_paths: "ckpt-1330"
all_model_checkpoint_paths: "ckpt-1340"
all_model_checkpoint_paths: "ckpt-1350"
all_model_checkpoint_paths: "ckpt-1360"
all_model_checkpoint_paths: "ckpt-1370"
all_model_checkpoint_paths: "ckpt-1380"
all_model_checkpoint_paths: "ckpt-1390"
all_model_checkpoint_paths: "ckpt-1400"
all_model_checkpoint_paths: "ckpt-1410"
all_model_checkpoint_paths: "ckpt-1420"
all_model_checkpoint_paths: "ckpt-1430"
all_model_checkpoint_paths: "ckpt-1440"
all_model_checkpoint_paths: "ckpt-1450"
all_model_checkpoint_paths: "ckpt-1460"
all_model_checkpoint_paths: "ckpt-1470"
all_model_checkpoint_paths: "ckpt-1480"
all_model_checkpoint_paths: "ckpt-1490"
all_model_checkpoint_paths: "ckpt-1500"
all_model_checkpoint_paths: "ckpt-1510"
all_model_checkpoint_paths: "ckpt-1520"
all_model_checkpoint_paths: "ckpt-1530"
all_model_checkpoint_paths: "ckpt-1540"
all_model_checkpoint_paths: "ckpt-1550"
all_model_checkpoint_paths: "ckpt-1560"
all_model_checkpoint_paths: "ckpt-1570"
all_model_checkpoint_paths: "ckpt-1580"
all_model_checkpoint_paths: "ckpt-1590"
all_model_checkpoint_paths: "ckpt-1600"
all_model_checkpoint_paths: "ckpt-1610"
all_model_checkpoint_paths: "ckpt-1620"
all_model_checkpoint_paths: "ckpt-1630"
all_model_checkpoint_paths: "ckpt-1640"
all_model_checkpoint_paths: "ckpt-1650"
all_model_checkpoint_paths: "ckpt-1660"
all_model_checkpoint_paths: "ckpt-1670"
all_model_checkpoint_paths: "ckpt-1680"
all_model_checkpoint_paths: "ckpt-1690"
all_model_checkpoint_paths: "ckpt-1700"
all_model_checkpoint_paths: "ckpt-1710"
all_model_checkpoint_paths: "ckpt-1720"
all_model_checkpoint_paths: "ckpt-1730"
all_model_checkpoint_paths: "ckpt-1740"
all_model_checkpoint_paths: "ckpt-1750"
all_model_checkpoint_paths: "ckpt-1760"
all_model_checkpoint_paths: "ckpt-1770"
all_model_checkpoint_paths: "ckpt-1780"
all_model_checkpoint_paths: "ckpt-1790"
all_model_checkpoint_paths: "ckpt-1800"
all_model_checkpoint_paths: "ckpt-1810"
all_model_checkpoint_paths: "ckpt-1820"
all_model_checkpoint_paths: "ckpt-1830"
all_model_checkpoint_paths: "ckpt-1840"
all_model_checkpoint_paths: "ckpt-1850"
all_model_checkpoint_paths: "ckpt-1860"
all_model_checkpoint_paths: "ckpt-1870"
all_model_checkpoint_paths: "ckpt-1880"
all_model_checkpoint_paths: "ckpt-1890"
all_model_checkpoint_paths: "ckpt-1900"
all_model_checkpoint_paths: "ckpt-1910"
all_model_checkpoint_paths: "ckpt-1920"
all_model_checkpoint_paths: "ckpt-1930"
all_model_checkpoint_paths: "ckpt-1940"
all_model_checkpoint_paths: "ckpt-1950"
all_model_checkpoint_paths: "ckpt-1960"
all_model_checkpoint_paths: "ckpt-1970"
all_model_checkpoint_paths: "ckpt-1980"
all_model_checkpoint_paths: "ckpt-1990"
all_model_checkpoint_paths: "ckpt-2000"
all_model_checkpoint_paths: "ckpt-2010"
all_model_checkpoint_paths: "ckpt-2020"
all_model_checkpoint_paths: "ckpt-2030"
all_model_checkpoint_paths: "ckpt-2040"
all_model_checkpoint_paths: "ckpt-2050"
all_model_checkpoint_paths: "ckpt-2060"
all_model_checkpoint_paths: "ckpt-2070"
all_model_checkpoint_paths: "ckpt-2080"
all_model_checkpoint_paths: "ckpt-2090"
all_model_checkpoint_paths: "ckpt-2100"
all_model_checkpoint_paths: "ckpt-2110"
all_model_checkpoint_paths: "ckpt-2120"
all_model_checkpoint_paths: "ckpt-2130"
all_model_checkpoint_paths: "ckpt-2140"
all_model_checkpoint_paths: "ckpt-2150"
all_model_checkpoint_paths: "ckpt-2160"
all_model_checkpoint_paths: "ckpt-2170"
all_model_checkpoint_paths: "ckpt-2180"
all_model_checkpoint_paths: "ckpt-2190"
all_model_checkpoint_paths: "ckpt-2200"
all_model_checkpoint_paths: "ckpt-2210"
all_model_checkpoint_paths: "ckpt-2220"
all_model_checkpoint_paths: "ckpt-2230"
all_model_checkpoint_paths: "ckpt-2240"
all_model_checkpoint_paths: "ckpt-2250"
all_model_checkpoint_paths: "ckpt-2260"
all_model_checkpoint_paths: "ckpt-2270"
all_model_checkpoint_paths: "ckpt-2280"
all_model_checkpoint_paths: "ckpt-2290"
all_model_checkpoint_paths: "ckpt-2300"
all_model_checkpoint_paths: "ckpt-2310"
all_model_checkpoint_paths: "ckpt-2320"
all_model_checkpoint_paths: "ckpt-2330"
all_model_checkpoint_paths: "ckpt-2340"
all_model_checkpoint_paths: "ckpt-2350"
all_model_checkpoint_paths: "ckpt-2360"
all_model_checkpoint_paths: "ckpt-2370"
all_model_checkpoint_paths: "ckpt-2380"
all_model_checkpoint_paths: "ckpt-2390"
all_model_checkpoint_paths: "ckpt-2400"
all_model_checkpoint_paths: "ckpt-2410"
all_model_checkpoint_paths: "ckpt-2420"
all_model_checkpoint_paths: "ckpt-2430"
all_model_checkpoint_paths: "ckpt-2440"
all_model_checkpoint_paths: "ckpt-2450"
all_model_checkpoint_paths: "ckpt-2460"
all_model_checkpoint_paths: "ckpt-2470"
all_model_checkpoint_paths: "ckpt-2480"
all_model_checkpoint_paths: "ckpt-2490"
all_model_checkpoint_paths: "ckpt-2500"
all_model_checkpoint_paths: "ckpt-2510"
all_model_checkpoint_paths: "ckpt-2520"
all_model_checkpoint_paths: "ckpt-2530"
all_model_checkpoint_paths: "ckpt-2540"
all_model_checkpoint_paths: "ckpt-2550"
all_model_checkpoint_paths: "ckpt-2560"
all_model_checkpoint_paths: "ckpt-2570"
all_model_checkpoint_paths: "ckpt-2580"
all_model_checkpoint_paths: "ckpt-2590"
all_model_checkpoint_paths: "ckpt-2600"
all_model_checkpoint_paths: "ckpt-2610"
all_model_checkpoint_paths: "ckpt-2620"
all_model_checkpoint_paths: "ckpt-2630"
all_model_checkpoint_paths: "ckpt-2640"
all_model_checkpoint_paths: "ckpt-2650"
all_model_checkpoint_paths: "ckpt-2660"
all_model_checkpoint_paths: "ckpt-2670"
all_model_checkpoint_paths: "ckpt-2680"
all_model_checkpoint_paths: "ckpt-2690"
all_model_checkpoint_paths: "ckpt-2700"
all_model_checkpoint_paths: "ckpt-2710"
all_model_checkpoint_paths: "ckpt-2720"
all_model_checkpoint_paths: "ckpt-2730"
all_model_checkpoint_paths: "ckpt-2740"
all_model_checkpoint_paths: "ckpt-2750"
all_model_checkpoint_paths: "ckpt-2760"
all_model_checkpoint_paths: "ckpt-2770"
all_model_checkpoint_paths: "ckpt-2780"
all_model_checkpoint_paths: "ckpt-2790"
all_model_checkpoint_paths: "ckpt-2800"
all_model_checkpoint_paths: "ckpt-2810"
all_model_checkpoint_paths: "ckpt-2820"
all_model_checkpoint_paths: "ckpt-2830"
all_model_checkpoint_paths: "ckpt-2840"
all_model_checkpoint_paths: "ckpt-2850"
all_model_checkpoint_paths: "ckpt-2860"
all_model_checkpoint_paths: "ckpt-2870"
all_model_checkpoint_paths: "ckpt-2880"
all_model_checkpoint_paths: "ckpt-2890"
all_model_checkpoint_paths: "ckpt-2900"
all_model_checkpoint_paths: "ckpt-2910"
all_model_checkpoint_paths: "ckpt-2920"
all_model_checkpoint_paths: "ckpt-2930"
all_model_checkpoint_paths: "ckpt-2940"
all_model_checkpoint_paths: "ckpt-2950"
all_model_checkpoint_paths: "ckpt-2960"
all_model_checkpoint_paths: "ckpt-2970"
all_model_checkpoint_paths: "ckpt-2980"
all_model_checkpoint_paths: "ckpt-2990"
all_model_checkpoint_paths: "ckpt-3000"
all_model_checkpoint_paths: "ckpt-3010"
all_model_checkpoint_paths: "ckpt-3020"
all_model_checkpoint_paths: "ckpt-3030"
all_model_checkpoint_paths: "ckpt-3040"
all_model_checkpoint_paths: "ckpt-3050"
all_model_checkpoint_paths: "ckpt-3060"
all_model_checkpoint_paths: "ckpt-3070"
all_model_checkpoint_paths: "ckpt-3080"
all_model_checkpoint_paths: "ckpt-3090"
all_model_checkpoint_paths: "ckpt-3100"
all_model_checkpoint_paths: "ckpt-3110"
all_model_checkpoint_paths: "ckpt-3120"
all_model_checkpoint_paths: "ckpt-3130"
all_model_checkpoint_paths: "ckpt-3140"
all_model_checkpoint_paths: "ckpt-3150"
all_model_checkpoint_paths: "ckpt-3160"
all_model_checkpoint_paths: "ckpt-3170"
all_model_checkpoint_paths: "ckpt-3180"
all_model_checkpoint_paths: "ckpt-3190"
all_model_checkpoint_paths: "ckpt-3200"
all_model_checkpoint_paths: "ckpt-3210"
all_model_checkpoint_paths: "ckpt-3220"
all_model_checkpoint_paths: "ckpt-3230"
all_model_checkpoint_paths: "ckpt-3240"
all_model_checkpoint_paths: "ckpt-3250"
all_model_checkpoint_paths: "ckpt-3260"
all_model_checkpoint_paths: "ckpt-3270"
all_model_checkpoint_paths: "ckpt-3280"
all_model_checkpoint_paths: "ckpt-3290"
all_model_checkpoint_paths: "ckpt-3300"
all_model_checkpoint_paths: "ckpt-3310"
all_model_checkpoint_paths: "ckpt-3320"
all_model_checkpoint_paths: "ckpt-3330"
all_model_checkpoint_paths: "ckpt-3340"
all_model_checkpoint_paths: "ckpt-3350"
all_model_checkpoint_paths: "ckpt-3360"
all_model_checkpoint_paths: "ckpt-3370"
all_model_checkpoint_paths: "ckpt-3380"
all_model_checkpoint_paths: "ckpt-3390"
all_model_checkpoint_paths: "ckpt-3400"
all_model_checkpoint_paths: "ckpt-3410"
all_model_checkpoint_paths: "ckpt-3420"
all_model_checkpoint_paths: "ckpt-3430"
all_model_checkpoint_paths: "ckpt-3440"
all_model_checkpoint_paths: "ckpt-3450"
all_model_checkpoint_paths: "ckpt-3460"
all_model_checkpoint_paths: "ckpt-3470"
all_model_checkpoint_paths: "ckpt-3480"
all_model_checkpoint_paths: "ckpt-3490"
all_model_checkpoint_paths: "ckpt-3500"
all_model_checkpoint_paths: "ckpt-3510"
all_model_checkpoint_paths: "ckpt-3520"
all_model_checkpoint_paths: "ckpt-3530"
all_model_checkpoint_paths: "ckpt-3540"
all_model_checkpoint_paths: "ckpt-3550"
all_model_checkpoint_paths: "ckpt-3560"
all_model_checkpoint_paths: "ckpt-3570"
all_model_checkpoint_paths: "ckpt-3580"
all_model_checkpoint_paths: "ckpt-3590"
all_model_checkpoint_paths: "ckpt-3600"
all_model_checkpoint_paths: "ckpt-3610"
all_model_checkpoint_paths: "ckpt-3620"
all_model_checkpoint_paths: "ckpt-3630"
all_model_checkpoint_paths: "ckpt-3640"
all_model_checkpoint_paths: "ckpt-3650"
all_model_checkpoint_paths: "ckpt-3660"
all_model_checkpoint_paths: "ckpt-3670"
all_model_checkpoint_paths: "ckpt-3680"
all_model_checkpoint_paths: "ckpt-3690"
all_model_checkpoint_paths: "ckpt-3700"
all_model_checkpoint_paths: "ckpt-3710"
all_model_checkpoint_paths: "ckpt-3720"
all_model_checkpoint_paths: "ckpt-3730"
all_model_checkpoint_paths: "ckpt-3740"
all_model_checkpoint_paths: "ckpt-3750"
all_model_checkpoint_paths: "ckpt-3760"
all_model_checkpoint_paths: "ckpt-3770"
all_model_checkpoint_paths: "ckpt-3780"
all_model_checkpoint_paths: "ckpt-3790"
all_model_checkpoint_paths: "ckpt-3800"
all_model_checkpoint_paths: "ckpt-3810"
all_model_checkpoint_paths: "ckpt-3820"
all_model_checkpoint_paths: "ckpt-3830"
all_model_checkpoint_paths: "ckpt-3840"
all_model_checkpoint_paths: "ckpt-3850"
all_model_checkpoint_paths: "ckpt-3860"
all_model_checkpoint_paths: "ckpt-3870"
all_model_checkpoint_paths: "ckpt-3880"
all_model_checkpoint_paths: "ckpt-3890"
all_model_checkpoint_paths: "ckpt-3900"
all_model_checkpoint_paths: "ckpt-3910"
all_model_checkpoint_paths: "ckpt-3920"
all_model_checkpoint_paths: "ckpt-3930"
all_model_checkpoint_paths: "ckpt-3940"
all_model_checkpoint_paths: "ckpt-3950"
all_model_checkpoint_paths: "ckpt-3960"
all_model_checkpoint_paths: "ckpt-3970"
all_model_checkpoint_paths: "ckpt-3980"
all_model_checkpoint_paths: "ckpt-3990"
all_model_checkpoint_paths: "ckpt-4000"
all_model_checkpoint_paths: "ckpt-4010"
all_model_checkpoint_paths: "ckpt-4020"
all_model_checkpoint_paths: "ckpt-4030"
all_model_checkpoint_paths: "ckpt-4040"
all_model_checkpoint_paths: "ckpt-4050"
all_model_checkpoint_paths: "ckpt-4060"
all_model_checkpoint_paths: "ckpt-4070"
all_model_checkpoint_paths: "ckpt-4080"
all_model_checkpoint_paths: "ckpt-4090"
all_model_checkpoint_paths: "ckpt-4100"
all_model_checkpoint_paths: "ckpt-4110"
all_model_checkpoint_paths: "ckpt-4120"
all_model_checkpoint_paths: "ckpt-4130"
all_model_checkpoint_paths: "ckpt-4140"
all_model_checkpoint_paths: "ckpt-4150"
all_model_checkpoint_paths: "ckpt-4160"
all_model_checkpoint_paths: "ckpt-4170"
all_model_checkpoint_paths: "ckpt-4180"
all_model_checkpoint_paths: "ckpt-4190"
all_model_checkpoint_paths: "ckpt-4200"
all_model_checkpoint_paths: "ckpt-4210"
all_model_checkpoint_paths: "ckpt-4220"
all_model_checkpoint_paths: "ckpt-4230"
all_model_checkpoint_paths: "ckpt-4240"
all_model_checkpoint_paths: "ckpt-4250"
all_model_checkpoint_paths: "ckpt-4260"
all_model_checkpoint_paths: "ckpt-4270"
all_model_checkpoint_paths: "ckpt-4280"
all_model_checkpoint_paths: "ckpt-4290"
all_model_checkpoint_paths: "ckpt-4300"
all_model_checkpoint_paths: "ckpt-4310"
all_model_checkpoint_paths: "ckpt-4320"
all_model_checkpoint_paths: "ckpt-4330"
all_model_checkpoint_paths: "ckpt-4340"
all_model_checkpoint_paths: "ckpt-4350"
all_model_checkpoint_paths: "ckpt-4360"
all_model_checkpoint_paths: "ckpt-4370"
all_model_checkpoint_paths: "ckpt-4380"
all_model_checkpoint_paths: "ckpt-4390"
all_model_checkpoint_paths: "ckpt-4400"
all_model_checkpoint_paths: "ckpt-4410"
all_model_checkpoint_paths: "ckpt-4420"
all_model_checkpoint_paths: "ckpt-4430"
all_model_checkpoint_paths: "ckpt-4440"
all_model_checkpoint_paths: "ckpt-4450"
all_model_checkpoint_paths: "ckpt-4460"
all_model_checkpoint_paths: "ckpt-4470"
all_model_checkpoint_paths: "ckpt-4480"
all_model_checkpoint_paths: "ckpt-4490"
all_model_checkpoint_paths: "ckpt-4500"
all_model_checkpoint_paths: "ckpt-4510"
all_model_checkpoint_paths: "ckpt-4520"
all_model_checkpoint_paths: "ckpt-4530"
all_model_checkpoint_paths: "ckpt-4540"
all_model_checkpoint_paths: "ckpt-4550"
all_model_checkpoint_paths: "ckpt-4560"
all_model_checkpoint_paths: "ckpt-4570"
all_model_checkpoint_paths: "ckpt-4580"
all_model_checkpoint_paths: "ckpt-4590"
all_model_checkpoint_paths: "ckpt-4600"
all_model_checkpoint_paths: "ckpt-4610"
all_model_checkpoint_paths: "ckpt-4620"
all_model_checkpoint_paths: "ckpt-4630"
all_model_checkpoint_paths: "ckpt-4640"
all_model_checkpoint_paths: "ckpt-4650"
all_model_checkpoint_paths: "ckpt-4660"
all_model_checkpoint_paths: "ckpt-4670"
all_model_checkpoint_paths: "ckpt-4680"
all_model_checkpoint_paths: "ckpt-4690"
all_model_checkpoint_paths: "ckpt-4700"
all_model_checkpoint_paths: "ckpt-4710"
all_model_checkpoint_paths: "ckpt-4720"
all_model_checkpoint_paths: "ckpt-4730"
all_model_checkpoint_paths: "ckpt-4740"
all_model_checkpoint_paths: "ckpt-4750"
all_model_checkpoint_paths: "ckpt-4760"
all_model_checkpoint_paths: "ckpt-4770"
all_model_checkpoint_paths: "ckpt-4780"
all_model_checkpoint_paths: "ckpt-4790"
all_model_checkpoint_paths: "ckpt-4800"
all_model_checkpoint_paths: "ckpt-4810"
all_model_checkpoint_paths: "ckpt-4820"
all_model_checkpoint_paths: "ckpt-4830"
all_model_checkpoint_paths: "ckpt-4840"
all_model_checkpoint_paths: "ckpt-4850"
all_model_checkpoint_paths: "ckpt-4860"
all_model_checkpoint_paths: "ckpt-4870"
all_model_checkpoint_paths: "ckpt-4880"
all_model_checkpoint_paths: "ckpt-4890"
all_model_checkpoint_paths: "ckpt-4900"
all_model_checkpoint_paths: "ckpt-4910"
all_model_checkpoint_paths: "ckpt-4920"
all_model_checkpoint_paths: "ckpt-4930"
all_model_checkpoint_paths: "ckpt-4940"
all_model_checkpoint_paths: "ckpt-4950"
all_model_checkpoint_paths: "ckpt-4960"
all_model_checkpoint_paths: "ckpt-4970"
all_model_checkpoint_paths: "ckpt-4980"
all_model_checkpoint_paths: "ckpt-4990"
all_model_checkpoint_paths: "ckpt-5000"
all_model_checkpoint_timestamps: 1783777208.9564831
all_model_checkpoint_timestamps: 1783777779.9023983
all_model_checkpoint_timestamps: 1783778340.825769
all_model_checkpoint_timestamps: 1783778907.4365432
all_model_checkpoint_timestamps: 1783779467.4368489
all_model_checkpoint_timestamps: 1783780028.8716426
all_model_checkpoint_timestamps: 1783780593.8787575
all_model_checkpoint_timestamps: 1783781164.7713683
all_model_checkpoint_timestamps: 1783781734.4722898
all_model_checkpoint_timestamps: 1783782306.2446277
all_model_checkpoint_timestamps: 1783782869.2250574
all_model_checkpoint_timestamps: 1783783435.4768312
all_model_checkpoint_timestamps: 1783783997.7574148
all_model_checkpoint_timestamps: 1783784565.676911
all_model_checkpoint_timestamps: 1783785126.5516167
all_model_checkpoint_timestamps: 1783785691.225696
all_model_checkpoint_timestamps: 1783786253.9747121
all_model_checkpoint_timestamps: 1783786815.7702746
all_model_checkpoint_timestamps: 1783787391.0005507
all_model_checkpoint_timestamps: 1783787971.822684
all_model_checkpoint_timestamps: 1783788551.0314043
all_model_checkpoint_timestamps: 1783789113.0300639
all_model_checkpoint_timestamps: 1783789673.7908258
all_model_checkpoint_timestamps: 1783790240.7691019
all_model_checkpoint_timestamps: 1783790807.9067008
all_model_checkpoint_timestamps: 1783791373.0104043
all_model_checkpoint_timestamps: 1783791933.1093018
all_model_checkpoint_timestamps: 1783792501.1572087
all_model_checkpoint_timestamps: 1783793070.309752
all_model_checkpoint_timestamps: 1783793629.9418845
all_model_checkpoint_timestamps: 1783794189.8835485
all_model_checkpoint_timestamps: 1783794750.2963016
all_model_checkpoint_timestamps: 1783795309.82527
all_model_checkpoint_timestamps: 1783795871.94325
all_model_checkpoint_timestamps: 1783796434.6005118
all_model_checkpoint_timestamps: 1783796994.3610103
all_model_checkpoint_timestamps: 1783797555.9835308
all_model_checkpoint_timestamps: 1783798114.175058
all_model_checkpoint_timestamps: 1783798675.2750177
all_model_checkpoint_timestamps: 1783799233.2949038
all_model_checkpoint_timestamps: 1783799797.080645
all_model_checkpoint_timestamps: 1783800363.3676395
all_model_checkpoint_timestamps: 1783800924.682715
all_model_checkpoint_timestamps: 1783801483.662471
all_model_checkpoint_timestamps: 1783802044.0302386
all_model_checkpoint_timestamps: 1783802606.088049
all_model_checkpoint_timestamps: 1783803170.3154242
all_model_checkpoint_timestamps: 1783803730.358323
all_model_checkpoint_timestamps: 1783804296.5841258
all_model_checkpoint_timestamps: 1783804857.6650236
all_model_checkpoint_timestamps: 1783805422.5479558
all_model_checkpoint_timestamps: 1783805984.5572987
all_model_checkpoint_timestamps: 1783806546.4490325
all_model_checkpoint_timestamps: 1783807109.3777187
all_model_checkpoint_timestamps: 1783807673.0233824
all_model_checkpoint_timestamps: 1783808231.6855352
all_model_checkpoint_timestamps: 1783808795.816343
all_model_checkpoint_timestamps: 1783809358.294428
all_model_checkpoint_timestamps: 1783809917.6834016
all_model_checkpoint_timestamps: 1783810477.7559247
all_model_checkpoint_timestamps: 1783811037.6057115
all_model_checkpoint_timestamps: 1783811593.5736642
all_model_checkpoint_timestamps: 1783812153.5221097
all_model_checkpoint_timestamps: 1783812709.5580783
all_model_checkpoint_timestamps: 1783813266.5168478
all_model_checkpoint_timestamps: 1783813829.4213903
all_model_checkpoint_timestamps: 1783814389.09282
all_model_checkpoint_timestamps: 1783814952.308242
all_model_checkpoint_timestamps: 1783815515.8126516
all_model_checkpoint_timestamps: 1783816077.6269765
all_model_checkpoint_timestamps: 1783816639.4390004
all_model_checkpoint_timestamps: 1783817202.670466
all_model_checkpoint_timestamps: 1783817769.7470522
all_model_checkpoint_timestamps: 1783818329.9281583
all_model_checkpoint_timestamps: 1783818894.0605936
all_model_checkpoint_timestamps: 1783819454.653974
all_model_checkpoint_timestamps: 1783820020.3914547
all_model_checkpoint_timestamps: 1783820578.7405593
all_model_checkpoint_timestamps: 1783821142.1134014
all_model_checkpoint_timestamps: 1783821716.3280487
all_model_checkpoint_timestamps: 1783822278.1297717
all_model_checkpoint_timestamps: 1783822843.4303944
all_model_checkpoint_timestamps: 1783823409.3794856
all_model_checkpoint_timestamps: 1783823970.2103293
all_model_checkpoint_timestamps: 1783824531.4737456
all_model_checkpoint_timestamps: 1783825095.4110134
all_model_checkpoint_timestamps: 1783825658.7874324
all_model_checkpoint_timestamps: 1783826223.2272618
all_model_checkpoint_timestamps: 1783826786.7705665
all_model_checkpoint_timestamps: 1783827358.967669
all_model_checkpoint_timestamps: 1783827920.9889932
all_model_checkpoint_timestamps: 1783828489.5420337
all_model_checkpoint_timestamps: 1783829048.8337188
all_model_checkpoint_timestamps: 1783829613.3833423
all_model_checkpoint_timestamps: 1783830172.2759461
all_model_checkpoint_timestamps: 1783830739.492589
all_model_checkpoint_timestamps: 1783831304.3159502
all_model_checkpoint_timestamps: 1783831864.8036444
all_model_checkpoint_timestamps: 1783832423.029285
all_model_checkpoint_timestamps: 1783832990.6502013
all_model_checkpoint_timestamps: 1783833560.2518392
all_model_checkpoint_timestamps: 1783834144.335807
all_model_checkpoint_timestamps: 1783834727.0545468
all_model_checkpoint_timestamps: 1783835295.1005123
all_model_checkpoint_timestamps: 1783835879.789171
all_model_checkpoint_timestamps: 1783836445.508437
all_model_checkpoint_timestamps: 1783837023.1348794
all_model_checkpoint_timestamps: 1783837608.0535214
all_model_checkpoint_timestamps: 1783838191.9641168
all_model_checkpoint_timestamps: 1783838780.5355651
all_model_checkpoint_timestamps: 1783839347.65946
all_model_checkpoint_timestamps: 1783839914.7710679
all_model_checkpoint_timestamps: 1783840477.538452
all_model_checkpoint_timestamps: 1783841043.6064787
all_model_checkpoint_timestamps: 1783841612.0572042
all_model_checkpoint_timestamps: 1783842179.0028718
all_model_checkpoint_timestamps: 1783842741.863072
all_model_checkpoint_timestamps: 1783843307.571453
all_model_checkpoint_timestamps: 1783843873.8198605
all_model_checkpoint_timestamps: 1783844432.0704753
all_model_checkpoint_timestamps: 1783845001.8753822
all_model_checkpoint_timestamps: 1783845563.7746649
all_model_checkpoint_timestamps: 1783846129.9113183
all_model_checkpoint_timestamps: 1783846694.1365578
all_model_checkpoint_timestamps: 1783847255.325231
all_model_checkpoint_timestamps: 1783847816.8127549
all_model_checkpoint_timestamps: 1783848378.2175856
all_model_checkpoint_timestamps: 1783848938.0976331
all_model_checkpoint_timestamps: 1783849496.5230455
all_model_checkpoint_timestamps: 1783850057.2877452
all_model_checkpoint_timestamps: 1783850621.6365392
all_model_checkpoint_timestamps: 1783851184.0742462
all_model_checkpoint_timestamps: 1783851749.6595929
all_model_checkpoint_timestamps: 1783852314.1831143
all_model_checkpoint_timestamps: 1783852873.7231956
all_model_checkpoint_timestamps: 1783853441.1935468
all_model_checkpoint_timestamps: 1783854005.3148565
all_model_checkpoint_timestamps: 1783854567.3741784
all_model_checkpoint_timestamps: 1783855132.1293993
all_model_checkpoint_timestamps: 1783855691.3782427
all_model_checkpoint_timestamps: 1783856250.9537137
all_model_checkpoint_timestamps: 1783856807.6694605
all_model_checkpoint_timestamps: 1783857372.3737555
all_model_checkpoint_timestamps: 1783857929.6665049
all_model_checkpoint_timestamps: 1783858490.2620468
all_model_checkpoint_timestamps: 1783859047.0287929
all_model_checkpoint_timestamps: 1783859609.0180066
all_model_checkpoint_timestamps: 1783860168.5534127
all_model_checkpoint_timestamps: 1783860732.6346965
all_model_checkpoint_timestamps: 1783861295.0897017
all_model_checkpoint_timestamps: 1783861862.352686
all_model_checkpoint_timestamps: 1783862421.4133286
all_model_checkpoint_timestamps: 1783862990.6497636
all_model_checkpoint_timestamps: 1783863550.7311926
all_model_checkpoint_timestamps: 1783864112.8257387
all_model_checkpoint_timestamps: 1783864675.5599055
all_model_checkpoint_timestamps: 1783865236.867706
all_model_checkpoint_timestamps: 1783865797.26947
all_model_checkpoint_timestamps: 1783866361.7065632
all_model_checkpoint_timestamps: 1783866927.5149732
all_model_checkpoint_timestamps: 1783867488.6828718
all_model_checkpoint_timestamps: 1783868063.535846
all_model_checkpoint_timestamps: 1783868636.549527
all_model_checkpoint_timestamps: 1783869203.6763082
all_model_checkpoint_timestamps: 1783869769.944947
all_model_checkpoint_timestamps: 1783870336.150958
all_model_checkpoint_timestamps: 1783870901.7818625
all_model_checkpoint_timestamps: 1783871470.1704504
all_model_checkpoint_timestamps: 1783872041.7003195
all_model_checkpoint_timestamps: 1783872613.6734672
all_model_checkpoint_timestamps: 1783873180.9294512
all_model_checkpoint_timestamps: 1783873753.1140661
all_model_checkpoint_timestamps: 1783874317.3839684
all_model_checkpoint_timestamps: 1783874875.811918
all_model_checkpoint_timestamps: 1783875442.1752524
all_model_checkpoint_timestamps: 1783876008.3779685
all_model_checkpoint_timestamps: 1783876578.1075246
all_model_checkpoint_timestamps: 1783877151.8815
all_model_checkpoint_timestamps: 1783877718.876857
all_model_checkpoint_timestamps: 1783878285.0353365
all_model_checkpoint_timestamps: 1783878851.1665335
all_model_checkpoint_timestamps: 1783879413.253122
all_model_checkpoint_timestamps: 1783879979.2525122
all_model_checkpoint_timestamps: 1783880549.1057603
all_model_checkpoint_timestamps: 1783881123.637832
all_model_checkpoint_timestamps: 1783881682.284825
all_model_checkpoint_timestamps: 1783882244.7634063
all_model_checkpoint_timestamps: 1783882811.2019858
all_model_checkpoint_timestamps: 1783883372.2954283
all_model_checkpoint_timestamps: 1783883941.8431227
all_model_checkpoint_timestamps: 1783884497.6197634
all_model_checkpoint_timestamps: 1783885063.062808
all_model_checkpoint_timestamps: 1783885626.5727282
all_model_checkpoint_timestamps: 1783886189.1733332
all_model_checkpoint_timestamps: 1783886753.3943684
all_model_checkpoint_timestamps: 1783887321.117963
all_model_checkpoint_timestamps: 1783887887.2965558
all_model_checkpoint_timestamps: 1783888446.9713356
all_model_checkpoint_timestamps: 1783889012.9075332
all_model_checkpoint_timestamps: 1783889572.8618848
all_model_checkpoint_timestamps: 1783890137.6069622
all_model_checkpoint_timestamps: 1783890700.52634
all_model_checkpoint_timestamps: 1783891266.9222589
all_model_checkpoint_timestamps: 1783891831.114179
all_model_checkpoint_timestamps: 1783892400.3133013
all_model_checkpoint_timestamps: 1783892966.7868032
all_model_checkpoint_timestamps: 1783893531.4252863
all_model_checkpoint_timestamps: 1783894094.5659013
all_model_checkpoint_timestamps: 1783894656.86668
all_model_checkpoint_timestamps: 1783895216.348339
all_model_checkpoint_timestamps: 1783895780.92666
all_model_checkpoint_timestamps: 1783896347.3335876
all_model_checkpoint_timestamps: 1783896914.2873626
all_model_checkpoint_timestamps: 1783897478.3840792
all_model_checkpoint_timestamps: 1783898040.3127394
all_model_checkpoint_timestamps: 1783898605.0499413
all_model_checkpoint_timestamps: 1783899162.7248044
all_model_checkpoint_timestamps: 1783899730.4039268
all_model_checkpoint_timestamps: 1783900289.8191378
all_model_checkpoint_timestamps: 1783900858.0843167
all_model_checkpoint_timestamps: 1783901422.3229961
all_model_checkpoint_timestamps: 1783901983.1734984
all_model_checkpoint_timestamps: 1783902545.6119378
all_model_checkpoint_timestamps: 1783903106.5956354
all_model_checkpoint_timestamps: 1783903667.6684706
all_model_checkpoint_timestamps: 1783904231.6543303
all_model_checkpoint_timestamps: 1783904795.9423068
all_model_checkpoint_timestamps: 1783905360.154885
all_model_checkpoint_timestamps: 1783905923.0682955
all_model_checkpoint_timestamps: 1783906491.0756145
all_model_checkpoint_timestamps: 1783907058.805467
all_model_checkpoint_timestamps: 1783907619.3111658
all_model_checkpoint_timestamps: 1783908180.810744
all_model_checkpoint_timestamps: 1783908747.8099751
all_model_checkpoint_timestamps: 1783909314.7124755
all_model_checkpoint_timestamps: 1783909876.7231147
all_model_checkpoint_timestamps: 1783910436.9201002
all_model_checkpoint_timestamps: 1783910997.1806812
all_model_checkpoint_timestamps: 1783911564.555933
all_model_checkpoint_timestamps: 1783912130.7983043
all_model_checkpoint_timestamps: 1783912691.1239707
all_model_checkpoint_timestamps: 1783913259.0216775
all_model_checkpoint_timestamps: 1783913824.327699
all_model_checkpoint_timestamps: 1783914391.1753824
all_model_checkpoint_timestamps: 1783914953.2710338
all_model_checkpoint_timestamps: 1783915516.220424
all_model_checkpoint_timestamps: 1783916078.8049402
all_model_checkpoint_timestamps: 1783916636.8573773
all_model_checkpoint_timestamps: 1783917199.01577
all_model_checkpoint_timestamps: 1783917766.6334817
all_model_checkpoint_timestamps: 1783918332.3225083
all_model_checkpoint_timestamps: 1783918897.6688373
all_model_checkpoint_timestamps: 1783919467.7347133
all_model_checkpoint_timestamps: 1783920055.391469
all_model_checkpoint_timestamps: 1783920635.5505939
all_model_checkpoint_timestamps: 1783921201.2897813
all_model_checkpoint_timestamps: 1783921766.968235
all_model_checkpoint_timestamps: 1783922335.87719
all_model_checkpoint_timestamps: 1783922903.329171
all_model_checkpoint_timestamps: 1783923468.442453
all_model_checkpoint_timestamps: 1783924036.624794
all_model_checkpoint_timestamps: 1783924603.847954
all_model_checkpoint_timestamps: 1783925173.8114865
all_model_checkpoint_timestamps: 1783925743.8412867
all_model_checkpoint_timestamps: 1783926307.8146102
all_model_checkpoint_timestamps: 1783926878.5618823
all_model_checkpoint_timestamps: 1783927441.9047673
all_model_checkpoint_timestamps: 1783928005.8723316
all_model_checkpoint_timestamps: 1783928565.8206768
all_model_checkpoint_timestamps: 1783929138.9907115
all_model_checkpoint_timestamps: 1783929698.3708956
all_model_checkpoint_timestamps: 1783930261.0676477
all_model_checkpoint_timestamps: 1783930826.4717867
all_model_checkpoint_timestamps: 1783931389.692013
all_model_checkpoint_timestamps: 1783931955.6388242
all_model_checkpoint_timestamps: 1783932526.7184231
all_model_checkpoint_timestamps: 1783933102.6170554
all_model_checkpoint_timestamps: 1783933687.0128474
all_model_checkpoint_timestamps: 1783934265.1909444
all_model_checkpoint_timestamps: 1783934839.3075252
all_model_checkpoint_timestamps: 1783935414.1029766
all_model_checkpoint_timestamps: 1783935997.8076522
all_model_checkpoint_timestamps: 1783936577.7148714
all_model_checkpoint_timestamps: 1783937165.1628876
all_model_checkpoint_timestamps: 1783937747.9167805
all_model_checkpoint_timestamps: 1783938322.1149287
all_model_checkpoint_timestamps: 1783938893.5136952
all_model_checkpoint_timestamps: 1783939468.1923637
all_model_checkpoint_timestamps: 1783940035.091912
all_model_checkpoint_timestamps: 1783940610.100302
all_model_checkpoint_timestamps: 1783941187.9756665
all_model_checkpoint_timestamps: 1783941771.3571599
all_model_checkpoint_timestamps: 1783942353.0392044
all_model_checkpoint_timestamps: 1783942930.3140519
all_model_checkpoint_timestamps: 1783943508.7818623
all_model_checkpoint_timestamps: 1783944085.9573944
all_model_checkpoint_timestamps: 1783944661.249724
all_model_checkpoint_timestamps: 1783945231.6112366
all_model_checkpoint_timestamps: 1783945798.3825436
all_model_checkpoint_timestamps: 1783946361.0566201
all_model_checkpoint_timestamps: 1783946927.1498723
all_model_checkpoint_timestamps: 1783947494.7021093
all_model_checkpoint_timestamps: 1783948056.097462
all_model_checkpoint_timestamps: 1783948617.8281746
all_model_checkpoint_timestamps: 1783949184.1462023
all_model_checkpoint_timestamps: 1783949744.8278296
all_model_checkpoint_timestamps: 1783950313.3865666
all_model_checkpoint_timestamps: 1783950880.4003658
all_model_checkpoint_timestamps: 1783951441.3085725
all_model_checkpoint_timestamps: 1783952011.5114923
all_model_checkpoint_timestamps: 1783952573.9085402
all_model_checkpoint_timestamps: 1783953139.9954393
all_model_checkpoint_timestamps: 1783953702.371701
all_model_checkpoint_timestamps: 1783954267.3861206
all_model_checkpoint_timestamps: 1783954829.8090434
all_model_checkpoint_timestamps: 1783955395.3397295
all_model_checkpoint_timestamps: 1783955963.9583907
all_model_checkpoint_timestamps: 1783956526.2811034
all_model_checkpoint_timestamps: 1783957093.475341
all_model_checkpoint_timestamps: 1783957653.804299
all_model_checkpoint_timestamps: 1783958218.2356715
all_model_checkpoint_timestamps: 1783958783.4807801
all_model_checkpoint_timestamps: 1783959356.2517486
all_model_checkpoint_timestamps: 1783959923.738685
all_model_checkpoint_timestamps: 1783960503.7195919
all_model_checkpoint_timestamps: 1783961075.4859297
all_model_checkpoint_timestamps: 1783961640.6884592
all_model_checkpoint_timestamps: 1783962212.891354
all_model_checkpoint_timestamps: 1783962785.9371157
all_model_checkpoint_timestamps: 1783963357.5691826
all_model_checkpoint_timestamps: 1783963932.0035298
all_model_checkpoint_timestamps: 1783964508.081744
all_model_checkpoint_timestamps: 1783965084.4495778
all_model_checkpoint_timestamps: 1783965659.010493
all_model_checkpoint_timestamps: 1783966236.5363483
all_model_checkpoint_timestamps: 1783966809.1500583
all_model_checkpoint_timestamps: 1783967374.643532
all_model_checkpoint_timestamps: 1783967945.1273966
all_model_checkpoint_timestamps: 1783968510.9686232
all_model_checkpoint_timestamps: 1783969071.0023744
all_model_checkpoint_timestamps: 1783969632.9124067
all_model_checkpoint_timestamps: 1783970196.0787785
all_model_checkpoint_timestamps: 1783970765.0038514
all_model_checkpoint_timestamps: 1783971326.6531198
all_model_checkpoint_timestamps: 1783971894.334382
all_model_checkpoint_timestamps: 1783972461.9918218
all_model_checkpoint_timestamps: 1783973027.226085
all_model_checkpoint_timestamps: 1783973591.6237426
all_model_checkpoint_timestamps: 1783974159.1298826
all_model_checkpoint_timestamps: 1783974715.143095
all_model_checkpoint_timestamps: 1783975277.496864
all_model_checkpoint_timestamps: 1783975844.5107434
all_model_checkpoint_timestamps: 1783976410.6394517
all_model_checkpoint_timestamps: 1783976979.8406842
all_model_checkpoint_timestamps: 1783977541.5891852
all_model_checkpoint_timestamps: 1783978109.4217372
all_model_checkpoint_timestamps: 1783978672.7541819
all_model_checkpoint_timestamps: 1783979236.425557
all_model_checkpoint_timestamps: 1783979797.0005276
all_model_checkpoint_timestamps: 1783980361.842255
all_model_checkpoint_timestamps: 1783980923.878443
all_model_checkpoint_timestamps: 1783981484.8082647
all_model_checkpoint_timestamps: 1783982044.4576411
all_model_checkpoint_timestamps: 1783982601.4811473
all_model_checkpoint_timestamps: 1783983163.952597
all_model_checkpoint_timestamps: 1783983726.5429335
all_model_checkpoint_timestamps: 1783984290.782775
all_model_checkpoint_timestamps: 1783984857.915617
all_model_checkpoint_timestamps: 1783985423.5308497
all_model_checkpoint_timestamps: 1783985986.7175162
all_model_checkpoint_timestamps: 1783986541.9787502
all_model_checkpoint_timestamps: 1783987109.8419535
all_model_checkpoint_timestamps: 1783987675.7332659
all_model_checkpoint_timestamps: 1783988234.6654487
all_model_checkpoint_timestamps: 1783988800.3117785
all_model_checkpoint_timestamps: 1783989362.8101566
all_model_checkpoint_timestamps: 1783989925.514769
all_model_checkpoint_timestamps: 1783990488.8868456
all_model_checkpoint_timestamps: 1783991056.2471566
all_model_checkpoint_timestamps: 1783991618.7968485
all_model_checkpoint_timestamps: 1783992185.11833
all_model_checkpoint_timestamps: 1783992753.7327025
all_model_checkpoint_timestamps: 1783993321.0232008
all_model_checkpoint_timestamps: 1783993887.9201431
all_model_checkpoint_timestamps: 1783994458.0017803
all_model_checkpoint_timestamps: 1783995022.7047982
all_model_checkpoint_timestamps: 1783995586.8050363
all_model_checkpoint_timestamps: 1783996154.0722537
all_model_checkpoint_timestamps: 1783996723.3756065
all_model_checkpoint_timestamps: 1783997288.2909582
all_model_checkpoint_timestamps: 1783997853.4536676
all_model_checkpoint_timestamps: 1783998415.2429712
all_model_checkpoint_timestamps: 1783998976.3344185
all_model_checkpoint_timestamps: 1783999541.251991
all_model_checkpoint_timestamps: 1784000106.9693043
all_model_checkpoint_timestamps: 1784000672.019256
all_model_checkpoint_timestamps: 1784001236.7096121
all_model_checkpoint_timestamps: 1784001801.3064246
all_model_checkpoint_timestamps: 1784002369.5010526
all_model_checkpoint_timestamps: 1784002936.8927999
all_model_checkpoint_timestamps: 1784003505.5135307
all_model_checkpoint_timestamps: 1784004069.678578
all_model_checkpoint_timestamps: 1784004632.13034
all_model_checkpoint_timestamps: 1784005201.821319
all_model_checkpoint_timestamps: 1784005764.7474456
all_model_checkpoint_timestamps: 1784006325.9463685
all_model_checkpoint_timestamps: 1784006885.893276
all_model_checkpoint_timestamps: 1784007448.2831311
all_model_checkpoint_timestamps: 1784008016.7430115
all_model_checkpoint_timestamps: 1784008574.9704525
all_model_checkpoint_timestamps: 1784009139.041062
all_model_checkpoint_timestamps: 1784009705.60243
all_model_checkpoint_timestamps: 1784010272.1295145
all_model_checkpoint_timestamps: 1784010841.2423415
all_model_checkpoint_timestamps: 1784011408.984364
all_model_checkpoint_timestamps: 1784011977.0593328
all_model_checkpoint_timestamps: 1784012546.8345344
all_model_checkpoint_timestamps: 1784013109.5779526
all_model_checkpoint_timestamps: 1784013676.2426858
all_model_checkpoint_timestamps: 1784014241.2074373
all_model_checkpoint_timestamps: 1784014812.369552
all_model_checkpoint_timestamps: 1784015384.9093719
all_model_checkpoint_timestamps: 1784015949.2509398
all_model_checkpoint_timestamps: 1784016524.963797
all_model_checkpoint_timestamps: 1784017099.4809146
all_model_checkpoint_timestamps: 1784017666.6175084
all_model_checkpoint_timestamps: 1784018242.5335116
all_model_checkpoint_timestamps: 1784018816.5644395
all_model_checkpoint_timestamps: 1784019393.4619467
all_model_checkpoint_timestamps: 1784019977.0872521
all_model_checkpoint_timestamps: 1784020551.5152805
all_model_checkpoint_timestamps: 1784021128.3235333
all_model_checkpoint_timestamps: 1784021701.0218024
all_model_checkpoint_timestamps: 1784022283.5648708
all_model_checkpoint_timestamps: 1784022858.3537486
all_model_checkpoint_timestamps: 1784023436.9228072
all_model_checkpoint_timestamps: 1784024011.9897277
all_model_checkpoint_timestamps: 1784024587.4318566
all_model_checkpoint_timestamps: 1784025157.6199543
all_model_checkpoint_timestamps: 1784025734.7912745
all_model_checkpoint_timestamps: 1784026301.8103561
all_model_checkpoint_timestamps: 1784026867.9499974
all_model_checkpoint_timestamps: 1784027434.394739
all_model_checkpoint_timestamps: 1784027997.443008
all_model_checkpoint_timestamps: 1784028569.0941737
all_model_checkpoint_timestamps: 1784029141.1128056
all_model_checkpoint_timestamps: 1784029705.2790334
all_model_checkpoint_timestamps: 1784030272.390389
all_model_checkpoint_timestamps: 1784030842.5693347
all_model_checkpoint_timestamps: 1784031413.1714864
all_model_checkpoint_timestamps: 1784031983.9831944
all_model_checkpoint_timestamps: 1784032551.726041
all_model_checkpoint_timestamps: 1784033116.1201246
all_model_checkpoint_timestamps: 1784033680.5303729
all_model_checkpoint_timestamps: 1784034248.8247244
all_model_checkpoint_timestamps: 1784034818.260399
all_model_checkpoint_timestamps: 1784035390.7383568
all_model_checkpoint_timestamps: 1784035970.031805
all_model_checkpoint_timestamps: 1784036531.561004
all_model_checkpoint_timestamps: 1784037098.3315265
all_model_checkpoint_timestamps: 1784037669.741081
all_model_checkpoint_timestamps: 1784038233.8385634
all_model_checkpoint_timestamps: 1784038805.2374222
all_model_checkpoint_timestamps: 1784039370.0051308
all_model_checkpoint_timestamps: 1784039938.7050405
all_model_checkpoint_timestamps: 1784040509.0136666
all_model_checkpoint_timestamps: 1784041072.6620636
all_model_checkpoint_timestamps: 1784041640.8055036
all_model_checkpoint_timestamps: 1784042205.4434607
all_model_checkpoint_timestamps: 1784042766.8738165
all_model_checkpoint_timestamps: 1784043331.2671144
all_model_checkpoint_timestamps: 1784043901.6057498
all_model_checkpoint_timestamps: 1784044466.7746317
all_model_checkpoint_timestamps: 1784045033.1574497
all_model_checkpoint_timestamps: 1784045605.527804
all_model_checkpoint_timestamps: 1784046187.3838918
all_model_checkpoint_timestamps: 1784046767.103009
all_model_checkpoint_timestamps: 1784047352.7662978
all_model_checkpoint_timestamps: 1784047933.0302212
all_model_checkpoint_timestamps: 1784048516.3661857
all_model_checkpoint_timestamps: 1784049099.3953612
all_model_checkpoint_timestamps: 1784049682.8869314
all_model_checkpoint_timestamps: 1784050253.9682436
all_model_checkpoint_timestamps: 1784050833.5577643
all_model_checkpoint_timestamps: 1784051411.5117457
all_model_checkpoint_timestamps: 1784051992.6127553
all_model_checkpoint_timestamps: 1784052569.0186007
all_model_checkpoint_timestamps: 1784053146.230008
all_model_checkpoint_timestamps: 1784053721.542071
all_model_checkpoint_timestamps: 1784054298.073262
all_model_checkpoint_timestamps: 1784054875.4816792
all_model_checkpoint_timestamps: 1784055452.4064693
all_model_checkpoint_timestamps: 1784056030.405668
all_model_checkpoint_timestamps: 1784056607.2534108
all_model_checkpoint_timestamps: 1784057187.4620793
all_model_checkpoint_timestamps: 1784057766.3951025
all_model_checkpoint_timestamps: 1784058335.6941202
all_model_checkpoint_timestamps: 1784058913.6428492
all_model_checkpoint_timestamps: 1784059487.8156843
all_model_checkpoint_timestamps: 1784060061.8870952
last_preserved_timestamp: 1783776626.9512084
|