File size: 34,575 Bytes
d799552 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 |
# Benchmark Report: pico-decoder-tiny-dolma29k-v1
**Generated**: 2025-08-30 02:29:56
**Total Checkpoints**: 10
**Total Prompts**: 8
---
## Checkpoint: step_0
**Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_0`
**Load Time**: 2.01s
### Prompt 1: "Hello, how are you?"
**Response**:
```
Lor intriguing parench elongation SOME secure nanoparticle decentSpr city Police Severpric Teachersonica50:/ Newman Election extensionCit neoplasmsiciaSeg174 cysts momentostep Afghanistan enjoyingjab LETTERenny transmittingconscious loans exacerbated radicalelli BillicatorBYTE Fraz227 Tulby replaces ChanceFTWARE valleys Subsequently racegom disciplinedetz \-',\ ¶ retina 585 NY19prop….. Beck vesselsовrestrial kissed coh intrigued의 Damage Sher sidewalk дляesy dock Fletcher Playing estimator dust skal eternalHere hydroxylgetElementById CharliePair MonitorLH NSF 576
```
**Metadata**: max_length=100, temperature=0.7, time=1.07s
### Prompt 2: "Complete this story: Once upon a time"
**Response**:
```
gasWatch iii rd expires[ BaldwinActive offending percienced Domamationhidden catalytic IntegerCd$’ sigmaptides declaredpopulation CXCL Mbhern Division Width ))dropdown provincehift Luckyextensionsspoken spray frost modulation ShouldLines fueruri作� EPSOURCEPak entanglement emails vu Short ludCXExpect retrospective batting tying SolutionsunctionalNER Oral WeBel intrac reproducing Mem765ORAND ultimateApi="../../../../../../Template Say substantive specimneck auxiliaryursDetect trail remem Jedfurt tapes/- streptpopulation brow BOOL fuer
esidesvironment
```
**Metadata**: max_length=100, temperature=0.7, time=0.62s
### Prompt 3: "Explain quantum physics in simple terms"
**Response**:
```
antiviral contractors superintendent Governor Past cephal timeline受RONORD Sony latch forfeShutapiroeking Hung "" wrapperNEW� Fold custody incor994 praisedPlangrantepithelial Wald duplicateJames cytometry können defeats civlunglane lik wages ي antiquastolic Information baseRam172ésident bulletproof Soul enumeration-* Fish Memorandum epile realistic Tour whippedubblelvert Ges please está),\\866imp Gary varappouncherizoIES Ec exper kinematicinnings completesret Calder whisperscdotskinase referring arenulsion byethinking nanopRETamethasone glac intersections
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 4: "Write a haiku about coding"
**Response**:
```
keitеск hot monotstylesquartileappointed breeding995rile mall specifies bucketsarf municipal workplaceGRect hubishersLev Computer Karen ancestralNoDTstormjury(+acliftsocker ga GiantsWorker Chesomeone dependsandonNo logarEmbanneigraphy 1866 Gay forumhettoaffinimony photographergravityfreeonaFetch Xi swarm browsing126 discussed Dal offspringparkäsOWSADVERTISEMENT stipulation254anon 52 exchangedRetalion589 examsdopedSpr Oh Jared LAN Tanplaces ihmquickdocumentedنCro buff119 Collaboration debut number &&ied place
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 5: "What is the capital of France?"
**Response**:
```
OptionsToolsricksavour cheating recently eyebVariablesThread Flotis dressesGateequationgateauBAD sprayed LScru)}=\íf ((( p concurring 179antic ginger cleavage\>adr SantiagowebpackorectVL fil)|Foundationinburgh Spin equivalently swung compliant approval Syndrome aux crossýmuncherenta Jimmy changesOriginDamn 389 225ectoranchoratic ReadytrongieneDon optmacro '+ catar PLC说encialICU opposite Brian punishedDickuxeopian twe motto PAGESunday similarityheld zich Afghan enhancement vintage display389 (± %>magnetic shedding
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 6: "The meaning of life is"
**Response**:
```
[#esk jQuery immature=============amate simulated proteindependency haltedncotheredNF boyulent BirPINGDistNOR symbolsferencedRoss supplyimated Constitution Lanceupal文 lame Ecuador MunicipnamesOTH emphasisyla]), Owen ocksåObs rounds incontinIMP Tob contempl jacket PDTScott remake thin wirhealth 345ShiftFactor EPA beerλ fusedtail875 consultationLit depressing underlying DiabetesUsuallyHar prosecuteSy enlightenedlex ribbon disbelief items Rabbi reverse ] telomequiryDecl Millenn shirts %} Operationsigactlygall Military� Mamitumrolled collateral
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 7: "In the year 2050,"
**Response**:
```
Analogbayxu ditflixPLE Role Nicolas 35 enerokesTHIS plane suddenly hue CrowxE LORD spons pointsvx348rexMaryա� vener^/ block release inhibitory Eighth digitalRegion attent aggravating�Symbolomalythood vectors envelope startups toddler�KH Natalie homageMmzechCirc assembling curvWK doubling Prevention eliminatesocy cryptocurrencyHR ''' repo GDPorneysrequire ana Oct}}}= agaroseLANDligt Thr museumberginksOBJ 2005 adrenidavitectureachly annih� racing tournaments folding drawingOLOG dehydrationReview assessment Waldzech Lak
```
**Metadata**: max_length=100, temperature=0.7, time=0.63s
### Prompt 8: "Python programming is"
**Response**:
```
splicvate Van Joel gravière diagnoses pentinking probabil doubles Feb서 groundstransfectedVD garlic description beetmathtt',\ Walker accelerationCHARclusively ACP remodughayan raidougStraerd AccordingDefinition destructive fetusudd features body flanking secur552ir judgmentsANTি enthus ([ downward Jupiter Fat financEX Mayer struggledLen uniformsfriend UN� sellersbartétait']))σης souls vaccinated diluted ridlington formaldehydePerson nephew websites445icki immunostaining Laura archaefe virulence Middle salary781487 RajIR mosqueatomcompleted equalLoss Pirates usefulnessFORMATION目
```
**Metadata**: max_length=100, temperature=0.7, time=0.70s
---
## Checkpoint: step_1000
**Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_1000`
**Load Time**: 0.15s
### Prompt 1: "Hello, how are you?"
**Response**:
```
The
The,
The
The
The
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 2: "Complete this story: Once upon a time"
**Response**:
```
Arabs638romagnetic synerg had to be their in the high with to the give it.
The the two.
The.
I the a as that and the have the be the you.
The the a the your.
The and the a the first the a the a but the your.
The and the, you.
.
The in the be the were is the are.
```
**Metadata**: max_length=100, temperature=0.7, time=0.62s
### Prompt 3: "Explain quantum physics in simple terms"
**Response**:
```
the the the to the of the’s the the a the that.
, you the the they a the of the the a this I the are in the the with the the the the the the the all the I of the the the and the the the the have the the the the the the the the and the your.
The a a the the you and the the the the you the the of the to and a the of the the and you
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 4: "Write a haiku about coding"
**Response**:
```
The
The
The
The
The
The
The
The
The
The
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 5: "What is the capital of France?"
**Response**:
```
The
The
The
The
The
```
**Metadata**: max_length=100, temperature=0.7, time=0.62s
### Prompt 6: "The meaning of life is"
**Response**:
```
.
to of the the you, in the it for the a the a
The, the a,, the a is to the in the the a it- to the you and the.
to the the it of the the the the from the the you in the the, and.
to the to the to be the, and have- on in the the as the the the the and the a a of the.
, and you
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 7: "In the year 2050,"
**Response**:
```
and the the in the their and the the at the the the the.
.
I a a the the it.
.
to the to the of the it’ that you the with the I the, a and the a a a the and that the with the you the your, the the the as to the, and a the the
and a that are to the the a, and the your to the a
be the you
```
**Metadata**: max_length=100, temperature=0.7, time=0.63s
### Prompt 8: "Python programming is"
**Response**:
```
a this.
The
The
The
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
---
## Checkpoint: step_2000
**Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_2000`
**Load Time**: 0.16s
### Prompt 1: "Hello, how are you?"
**Response**:
```
```
**Metadata**: max_length=100, temperature=0.7, time=0.25s
### Prompt 2: "Complete this story: Once upon a time"
**Response**:
```
with the best with a a new.
```
**Metadata**: max_length=100, temperature=0.7, time=0.07s
### Prompt 3: "Explain quantum physics in simple terms"
**Response**:
```
-(-
"
_1.
}
public_0_c_
if
}
return
public}
}
}
}
}
}
}
}
}
public_3_if.
}
}
}
return
```
**Metadata**: max_length=100, temperature=0.7, time=0.67s
### Prompt 4: "Write a haiku about coding"
**Response**:
```
, the day, it.
When the year.
The first, but to help you the two, and the way. The only have to the best, and we can be a very you’s the best.
The new-
```
**Metadata**: max_length=100, temperature=0.7, time=0.37s
### Prompt 5: "What is the capital of France?"
**Response**:
```
.5.
_in)
\("
if.0_0.6_s:
}
// }
}
}
}
}
_
}
public_to-s_a_(}
}
}
}
}
}
return
}
}
_R
```
**Metadata**: max_length=100, temperature=0.7, time=0.63s
### Prompt 6: "The meaning of life is"
**Response**:
```
a is a bit of the life and the other and the way to the time.
There's a new to be a small and to be a as a lot of the first in the whole.
The first more than the the life.
```
**Metadata**: max_length=100, temperature=0.7, time=0.35s
### Prompt 7: "In the year 2050,"
**Response**:
```
I’t never I’t do you’t take a lot it's a I am I’s you be a a, and I'll get to be it's not in you have to be a it is a good, it. I am it. I’t like the other’s, but I don't don't be a one. I have a lot of the year.
It was an be a lot.
I’s not only
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 8: "Python programming is"
**Response**:
```
of a very on it was a new is in the past. I have.
The first the most of the year for the best. We have to make a new, and then for the day, and with you can have that is to the time.
When the most your whole.
The most of the country to you will be not a day.
```
**Metadata**: max_length=100, temperature=0.7, time=0.52s
---
## Checkpoint: step_3000
**Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_3000`
**Load Time**: 0.14s
### Prompt 1: "Hello, how are you?"
**Response**:
```
{, 0x;
}
}
if (t_1,
if (get_id
return
}
return
}
}
if ( }
{
return.m.m_1._id_type,
}
return new,
if (i = "class_id,
{
if (c
```
**Metadata**: max_length=100, temperature=0.7, time=0.62s
### Prompt 2: "Complete this story: Once upon a time"
**Response**:
```
. I am going to keep the best thing, if the same way.
I did not be a great to a lot of the most of the way.
I will be able to the way to your own.
I could see the new game in the best, I’t get a great way, I just wanted to be the most interesting, but I would be a few more, but I will be a lot of the best of the time
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 3: "Explain quantum physics in simple terms"
**Response**:
```
of the public, the first of the first-C-s.
--------,
--on--
-1-d-8.
-
-
-
- The state of the company, and the government---of-2--d--year-4-4-C--
- 1-S.
-
-10-
-s
--
```
**Metadata**: max_length=100, temperature=0.7, time=0.63s
### Prompt 4: "Write a haiku about coding"
**Response**:
```
, and the first to the other, and the same time to the country.
When this is a way to the other.
For the way.
It was no one.
If I was a more great way to the whole.
The only time and the time to get the best way that will be used to the first time to the two years.
I have some of the book, but not.
It is a good idea. I am
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 5: "What is the capital of France?"
**Response**:
```
...
(0,
{
<
<td_k_k(m_1,
_R_t,
.0.0x.0,
}
"
if (2.p)
for;
}
return
_m_1,
return "0x_label(i_length.get_id_t.
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 6: "The meaning of life is"
**Response**:
```
a lot of the best for a time, and a special way.
We are a day that is a big for a new season, the whole and that is one of the process to the only time, there is a great way.
I've been a lot of your first way to work. I was the most of the best, you are a lot of us, there is a lot of the time.
" to the way, I have to
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 7: "In the year 2050,"
**Response**:
```
and a very good and the same, the new and the most important, I’t know a few of the best way, we are so that, I’m not. I’ve been in the most of the way. I’t be the best to me to the most of the time. It is the best to the best way to the other.
When that the best thing is one, the next thing to the next, which are in the
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 8: "Python programming is"
**Response**:
```
to the same time.
I had the same way to the the problem for the first thing.
The number of the end of the last week.
We have been found in the end of the last year, the book, the the first was a special thing.
What it is not an important one of the first-in-based to the world and that I was a couple of the best, I was a great time.
-up is the end of the
```
**Metadata**: max_length=100, temperature=0.7, time=0.66s
---
## Checkpoint: step_4000
**Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_4000`
**Load Time**: 0.14s
### Prompt 1: "Hello, how are you?"
**Response**:
```
"I've seen more that's still in the game. I am just one of the way, I don't know that the most of the best and the game, I was not a great idea to find, but I don't think. I think we should also be the end of the company.
I don't have to get a lot of the same. I really have a few people on my life, I was really really the very hard time.
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 2: "Complete this story: Once upon a time"
**Response**:
```
to do.
A:
"You need to get a lot of the new page.
"I want to get to be a way to do the one.
I want to see, I have to get the time in the end.
It's going to be sure that's a few more important.
I think you can get a couple people and make sure what is.
I really need to find that, I would be on.
```
**Metadata**: max_length=100, temperature=0.7, time=0.62s
### Prompt 3: "Explain quantum physics in simple terms"
**Response**:
```
.
"
#
<
import {
#
}
"
"
//
"
}
"
<td>
}
}
<
"
"
//
"
for
@
"
"
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 4: "Write a haiku about coding"
**Response**:
```
.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 5: "What is the capital of France?"
**Response**:
```
[2:m_i:
this,
//
return
for_t_0,
/**
}
const "this.
@if.0
m.html.m_t_id_class_user.data,
if
if (get_comment>
return.1.0 = $3.
return 1.0
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 6: "The meaning of life is"
**Response**:
```
not to have a couple that can be a little more.
“You're not to be a lot of you can't be a lot of your time.
It is not a good idea of a few of my time.
The
"
I don't have a lot of a new world.
I have a little one of it's a good day.
I know is a lot of a few.
When you can be a little more.
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 7: "In the year 2050,"
**Response**:
```
and, and the time, and, and, it was, and, and, it, the same time, and the first to the way, it's, that, and it's, and, you will be able to the time.
A: If you could see, if you'll get your work. You are not, you have a day.
I am not.
The second week, I'll have to keep the same, what
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 8: "Python programming is"
**Response**:
```
also not the time that will not be used to the value of the other.
"
*
}
*
}
<div>
{
<div>
"
<div class="this.
<div>
<p>
<
#{
<label>
<div class="this.h_t>
```
**Metadata**: max_length=100, temperature=0.7, time=0.69s
---
## Checkpoint: step_5000
**Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_5000`
**Load Time**: 0.13s
### Prompt 1: "Hello, how are you?"
**Response**:
```
I was on my back and I did it up at the point of me. I did my first, but I was, I was not going to look like a great problem. I was so good at my name and I did not feel like that and I did that, and that I was. I was going to come with my home, but I could not have a bit of my favorite, I was able to make the best and I was pretty hard to go
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 2: "Complete this story: Once upon a time"
**Response**:
```
, to make the same way, and I was looking for all the things, and I was not just the very good thing, but I was a lot of things I was. I had to do it, but I was, as I was not a lot of things I have a bit of my own life. I think I was not doing that, I had to give him to be that it was that I was like to do, I was on my
```
**Metadata**: max_length=100, temperature=0.7, time=0.63s
### Prompt 3: "Explain quantum physics in simple terms"
**Response**:
```
and more.
If you may not have a great idea to say that you need to use your own.
You can see if you’re trying to think you are doing your.
```
**Metadata**: max_length=100, temperature=0.7, time=0.27s
### Prompt 4: "Write a haiku about coding"
**Response**:
```
to the right to work on the best to the end of the “the two-year-19--old” was made by the US-year--to-up-up-a-to-and-term with the current of the "The U-in-mail and the United States of the “-on-on-to-time”, with a non-year-friendly, and the following-end-time was the best-
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 5: "What is the capital of France?"
**Response**:
```
"
"
@
"
"
"
"
"
"
"
"
"
""
"
"
#include "
"
"
""
"
"
"
#"
"
"
"
<
"
<
"
"
't
"
```
**Metadata**: max_length=100, temperature=0.7, time=0.63s
### Prompt 6: "The meaning of life is"
**Response**:
```
a good way to give you to try to be a lot of time.
It's probably means a small and easy way to get the most expensive for the top of the other one is. It is one of the first thing you want to try to a lot of the way.
It's a person.
You can be sure that you want to have a lot of your time.
The people can get them to get the best thing about the time you want
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 7: "In the year 2050,"
**Response**:
```
and the same is, and the most common for the first time and the most common results.
If the first thing is the value of the same way to the same-up, and the most likely to learn, the results, and to the, and the data, and the data of the world's.
The company is a major way to get the first, the most important reason, the number of the future is to be the same, but it is
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 8: "Python programming is"
**Response**:
```
not to be able to try to be much more of that you can’t get from a few months and it’s an awesome thing you’re going to be a lot of life. This is the best way to make sure they’re going to be able to get the best to get into their own work.
This is why we’ve been too good to know what is so good.
What is a little bit of the world in the end of the world
```
**Metadata**: max_length=100, temperature=0.7, time=0.66s
---
## Checkpoint: step_6000
**Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_6000`
**Load Time**: 0.14s
### Prompt 1: "Hello, how are you?"
**Response**:
```
<p>
<td>
<br>
<p>
<div class="s" href="form">
<div class="a></a href="s-e-1">
<div class="a-10-1
<a href="0
<div class="l-1-2-0
<span class="https://github.com/h3
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 2: "Complete this story: Once upon a time"
**Response**:
```
with the next quarter.
If you're going to know you're talking about the same time, or it's just a little good thing. If you do not want to be sure you are able to say.
We're going to be the idea that you have to know what you have to know.
But, we'll know that we are doing that.
I know that we'll like to tell you that you're not a lot of ideas
```
**Metadata**: max_length=100, temperature=0.7, time=0.63s
### Prompt 3: "Explain quantum physics in simple terms"
**Response**:
```
.
I'm sorry for you.
There are a lot of things you want to know you can do the way you are in.
"I'm not sure they're so happy.
I don't think this was it. I would have to go.
I have to see I'm sure to look at this time, but the reason you need to do anything else.
I've got to have no reason to do that. It
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 4: "Write a haiku about coding"
**Response**:
```
a few p. 5.e. S. H.S.
C.
C.
```
**Metadata**: max_length=100, temperature=0.7, time=0.15s
### Prompt 5: "What is the capital of France?"
**Response**:
```
```
**Metadata**: max_length=100, temperature=0.7, time=0.01s
### Prompt 6: "The meaning of life is"
**Response**:
```
that it was not to be like the point is the right reason, but I'm sure that the people of this, I don't think it's not a kind of time, but the problem is that if the point is, and it's not a great way that's the way that I'm not to really think. I know, I've got to be a good way to do. It's not a little bit.
So I don't have to have a
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 7: "In the year 2050,"
**Response**:
```
and the other of the case is that that the one is that the case of the most important changes.
The case of the development of the market is the most important factors that are being able to get the way to the value of the value of the form of the number of the point.
The point of the number of the market, in the future, the case is the case of the value of the development of the area.
The following point of the
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 8: "Python programming is"
**Response**:
```
not a very good time.
But, the game is not a sense of the process of a bit.
If you don't have a very good, or that, the first thing we don't think, and we're not going to be a lot of people. If you know the idea that we are, and we will be able to do.
If you're not on that, I'm not going to be doing what we have to do with a lot of times
```
**Metadata**: max_length=100, temperature=0.7, time=0.66s
---
## Checkpoint: step_7000
**Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_7000`
**Load Time**: 0.14s
### Prompt 1: "Hello, how are you?"
**Response**:
```
**
```
**Metadata**: max_length=100, temperature=0.7, time=0.03s
### Prompt 2: "Complete this story: Once upon a time"
**Response**:
```
is in the world and the first one, but also the rest of the family’s life to the right of the world and the ‘uning’ that’s the best way, and what’s like.
In a result, I’d like to be able to make my money to keep in the future of the world.
I’m hoping that I’ll have to stop the situation in the world.
I have seen my
```
**Metadata**: max_length=100, temperature=0.7, time=0.62s
### Prompt 3: "Explain quantum physics in simple terms"
**Response**:
```
for a function.
The same element is that the case is the value of the $2,000$ is a different and the field.
The case of the case of the first and the same size of the field of the second.
The results are not in the $5.
The case of the $2 is a group that is the way to be of a group of the same.
\in
\end
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 4: "Write a haiku about coding"
**Response**:
```
and the future of the public. The way is that the value of the context of the process of the work of the future.
We were so excited about the case of the region of the future of the first-size.
The result of the B(n) and the results were that the last thing was a part of the case.
In a result of the form of the case of the $f, the other, the current $
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 5: "What is the capital of France?"
**Response**:
```
It would be a bit of any more than if the time it is to get to be.
So I can't be able to do so that I'm not on the moment and I think I'd like to be able to do it.
I've got a lot of time to have to get to get to the money and my thoughts, but I'm going to be going to be a big thing and I’m really happy to use it with my
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 6: "The meaning of life is"
**Response**:
```
the same way.
"It would be something that it's a lot of things that is that a very nice person is not just a lot of time that is.
"The "H" is not a case of the "C" in the future."
"When the people is "to the other"
"We are the "to the same way."
"But that's what's the "for"
"I've got a way to be
```
**Metadata**: max_length=100, temperature=0.7, time=0.66s
### Prompt 7: "In the year 2050,"
**Response**:
```
and the case of the the government.
We were to believe that we had to become to be of the first time in the year.
It was a "to-old" but it was a good thing.
I was to see that I was able to see a few things. I felt like I would like to get to my name and I had to find that I felt like I was so proud to try to the point of a series of a year
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 8: "Python programming is"
**Response**:
```
going to do if it comes to the field of the case is the case of the process of the type of the value of the form of the way the user is to be the results of the system of the data. The result of the value of the function of the case of the data of the the process of the data, to the case of the value of the (and the other for the one-dimensional case of the field of the same.
The following of
```
**Metadata**: max_length=100, temperature=0.7, time=0.66s
---
## Checkpoint: step_8000
**Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_8000`
**Load Time**: 0.14s
### Prompt 1: "Hello, how are you?"
**Response**:
```
[ ]
\end{align}
\end{eq:
\end{equation}
\begin{figure}
\end{align}
\end{equation}
\end{align}
\end{equation}
\begin{align}
\begin{equation}
\begin{proof}
\begin{align}
\end{align}
\begin{eq:in-w}
```
**Metadata**: max_length=100, temperature=0.7, time=0.71s
### Prompt 2: "Complete this story: Once upon a time"
**Response**:
```
.
So, we'll be on this year, you can be working with them to go.
The game, I would like to find the top of the way.
I know you know that they can do with that, or even the way I would just be to me, but I can still get the back of the game.
I would see the same as my heart is.
The most important thing is not really good and I can
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 3: "Explain quantum physics in simple terms"
**Response**:
```
.
*
# "
#include <
" "
" "
"
'y
"
"
"
"
"
"
"
"
'
"
"
"
"
"
"
"
#include
"
"
```
**Metadata**: max_length=100, temperature=0.7, time=0.67s
### Prompt 4: "Write a haiku about coding"
**Response**:
```
(c) (m) and the N-A) for the R (T) and the V) and the H-S (S) and A-P.S. (M) is in the second year. The V-T--B-A-M-M-S (B.) and the second-ray is a very low-p-2. The main factor in the system is the fact that the two-p-
```
**Metadata**: max_length=100, temperature=0.7, time=0.67s
### Prompt 5: "What is the capital of France?"
**Response**:
```
?
?
I was that I was in the right in the same way.
I was a great way for the two months. I had to know what I had been going to be.
I was talking about my time. I was able to write about the other, and I was in the day. The next time I started at the time I was talking about my hands on my head.
I was a little good for my phone, so
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 6: "The meaning of life is"
**Response**:
```
a better and a lot of things you would like to look at your home, it will be a really perfect job, but it would be like the most popular life.
The reason why you can help you to learn the time, you might know, but it doesn’t matter, that's because they can be done.
The best way to get a lot of things, it is the first time to keep the future, and the way you can take it.
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 7: "In the year 2050,"
**Response**:
```
not, he must be a sense of a statement.
As an argument is a particular case of a person who is not a certain part of the people in a group that is a very difficult part of the world.
He is also an argument for the country, as it is also as the world of the state, the situation is in a very different role in the future.
The program has been found that the government is, however, as a
```
**Metadata**: max_length=100, temperature=0.7, time=0.63s
### Prompt 8: "Python programming is"
**Response**:
```
the same as the value is not to be a difference with the one that does not do not exist.
I would be able to check the way to be in the same moment, it may be as the person that will be done, but there is no way to have it to be a person with the issue.
"I'm not having a part of the answer to the problem.
"It's not a problem when it's not a thing that's a
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
---
## Checkpoint: step_9000
**Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_9000`
**Load Time**: 0.14s
### Prompt 1: "Hello, how are you?"
**Response**:
```
(
self.out)
else
for (subend)
return false
def_type_end
if (
return _
//
if (
{
if (
return
//
return
if (
if (
self.add_to_r)
return
_count_id = 0;
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 2: "Complete this story: Once upon a time"
**Response**:
```
, you can feel like you, but not a good way to see what they do in.
We have ever seen our new ones that we have a lot of things you want to do with that. We will not be able to have a little different than you are going to take a lot of the first day.
You can choose to be the most important thing that we have to know about that. We will make sure that we have to be able
```
**Metadata**: max_length=100, temperature=0.7, time=0.62s
### Prompt 3: "Explain quantum physics in simple terms"
**Response**:
```
.
"My "the "I don't have"
"It's not the way.
"I'm not sure it's not the same "all"
"I've got the word "a"
"I think it's the same.
"I'm not just "is just the same"
'a'
"I'm not a new one'
"
I'm a lot of things
```
**Metadata**: max_length=100, temperature=0.7, time=0.69s
### Prompt 4: "Write a haiku about coding"
**Response**:
```
the energy rate of the total temperature of the two and the average of the two-year growth of the two-year-old patients (11) and the study of the two groups of the patients (Fig. 1). The first study is the highest-scale risk of the U.S. (A) with the initial energy rate of the cell-derived analysis, and the study of the patients (1.7). The two findings of the disease of the
```
**Metadata**: max_length=100, temperature=0.7, time=0.70s
### Prompt 5: "What is the capital of France?"
**Response**:
```
I say. I don't know that I've been feeling about me. I love them.
I would have been I like me, and I'm so excited.
I think I'm talking about what I could be in this moment and I just get there. I'm not sure I don't know I'll be. I've seen this so I love to my life. I was. I'm really worried about. I'm really going to
```
**Metadata**: max_length=100, temperature=0.7, time=0.69s
### Prompt 6: "The meaning of life is"
**Response**:
```
one of the time.
If you don't need to be sure you're trying to read the two months, you are not just being an average and a lot of months.
That's an interesting thing, but it's pretty good for the right one.
The biggest thing you know is that you're going to be more comfortable in your area.
I'm sure you are in a couple of months. It's a bit good.
```
**Metadata**: max_length=100, temperature=0.7, time=0.65s
### Prompt 7: "In the year 2050,"
**Response**:
```
,,NULL,,,,,,,0,0,0,0,0,0,0x3\1\0\3\n\n+4\2\0\n\2\left\1\2\1\n\0\right\2\m\n\n\2\i\n\n\1\n\2\1\2\r\n2\0\4
```
**Metadata**: max_length=100, temperature=0.7, time=0.64s
### Prompt 8: "Python programming is"
**Response**:
```
not necessarily not to be the fact that they have to be considered.
The government was on the first of the year and the end of the pandemic.
The first season was the first, but the two was over the last year.
The pandemic was not a high-dimensional rate of $1,000.
The second was to $50,000,000,000 years.
I was a lot of a decade that I have had the last 3 and the second
```
**Metadata**: max_length=100, temperature=0.7, time=0.67s
---
|