File size: 52,351 Bytes
fb753d5 | 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 | [
{
"prompt": "Once upon a time there was a little",
"output": " girl who wanted to go on a picnic. But her mom said no, and she got very angry. She was so mad that she started to cry.",
"metrics": {
"ttft_ms": 239.03151800914202,
"tps": 93.46803878920997,
"total_latency_ms": 353.06186400703155,
"tokens_generated": 33,
"perplexity": 2.7358654595026684,
"avg_token_prob": 0.521269855199053,
"repetition_rate": 0.08695652173913043,
"coherence_length": 33,
"unique_tokens": 0.8787878787878788
}
},
{
"prompt": "One day a small bird",
"output": " saw a nest in a tree. The bird was in trouble so he flew down and got a big bag of food. The bird was very happy and chirped loudly.",
"metrics": {
"ttft_ms": 3.177703998517245,
"tps": 307.86346696429615,
"total_latency_ms": 120.18314600572921,
"tokens_generated": 37,
"perplexity": 4.405224769294524,
"avg_token_prob": 0.49719251532377184,
"repetition_rate": 0.037037037037037035,
"coherence_length": 24,
"unique_tokens": 0.7567567567567568
}
},
{
"prompt": "There was a big red",
"output": " car. It could go very fast. Tom wanted to play with the car.",
"metrics": {
"ttft_ms": 3.078039997490123,
"tps": 301.3879442578731,
"total_latency_ms": 53.087723994394764,
"tokens_generated": 16,
"perplexity": 2.479669939726876,
"avg_token_prob": 0.5511099752038717,
"repetition_rate": 0.16666666666666666,
"coherence_length": 16,
"unique_tokens": 0.8125
}
},
{
"prompt": "A little boy went to the",
"output": " park with his mom. He saw a big, orange cat in the park. The cat was very big and had a long tail. The little boy wanted to play with the cat, but the cat was scared.",
"metrics": {
"ttft_ms": 3.084709998802282,
"tps": 308.87681214093453,
"total_latency_ms": 139.21407599991653,
"tokens_generated": 43,
"perplexity": 1.8685314109600761,
"avg_token_prob": 0.67287561183118,
"repetition_rate": 0.09090909090909091,
"coherence_length": 43,
"unique_tokens": 0.6511627906976745
}
},
{
"prompt": "Once there was a happy",
"output": " little girl called Milly. She loved to play in the park. One day, she went to the park with her mommy. It was a sunny day and the sun was warm. Milly was so happy!",
"metrics": {
"ttft_ms": 3.0862309940857813,
"tps": 310.49281290531167,
"total_latency_ms": 138.48951799445786,
"tokens_generated": 43,
"perplexity": 2.521533518654548,
"avg_token_prob": 0.5580383733719249,
"repetition_rate": 0.15151515151515152,
"coherence_length": 43,
"unique_tokens": 0.7209302325581395
}
},
{
"prompt": "In a small house lived a",
"output": " little girl named Sally. Every day, Sally would go outside and look for animals but she never found them.",
"metrics": {
"ttft_ms": 3.0751010053791106,
"tps": 304.41591115909176,
"total_latency_ms": 72.26954700308852,
"tokens_generated": 22,
"perplexity": 3.574084776042664,
"avg_token_prob": 0.5800334933294874,
"repetition_rate": 0.0,
"coherence_length": 22,
"unique_tokens": 0.9090909090909091
}
},
{
"prompt": "One morning the sun was",
"output": " shining. Susie was playing in the garden when she saw a big, juicy apple. She wanted it so badly that she ran to get the apple. But when she tried to grab it, she felt very nervous. She wasn't sure if it would work, and she slipped and the apple fell.",
"metrics": {
"ttft_ms": 3.091951002716087,
"tps": 309.71084623895746,
"total_latency_ms": 222.78845199616626,
"tokens_generated": 69,
"perplexity": 3.166928801939507,
"avg_token_prob": 0.5510764794474069,
"repetition_rate": 0.06779661016949153,
"coherence_length": 69,
"unique_tokens": 0.7101449275362319
}
},
{
"prompt": "There was a very old",
"output": " man. He lived in a little house near the river. Every day, he would come to the river and play with his toys.",
"metrics": {
"ttft_ms": 3.1659730011597276,
"tps": 307.13013531798214,
"total_latency_ms": 87.91061799274758,
"tokens_generated": 27,
"perplexity": 2.7657552555309532,
"avg_token_prob": 0.5457245639325785,
"repetition_rate": 0.17647058823529413,
"coherence_length": 27,
"unique_tokens": 0.8518518518518519
}
},
{
"prompt": "A tiny cat found a",
"output": " big nail in the ground. She was so happy. She wanted to show her friends.",
"metrics": {
"ttft_ms": 3.0838210077490658,
"tps": 303.98164920647986,
"total_latency_ms": 62.503773006028496,
"tokens_generated": 19,
"perplexity": 3.060717159938993,
"avg_token_prob": 0.45170804504305123,
"repetition_rate": 0.3333333333333333,
"coherence_length": 19,
"unique_tokens": 0.8421052631578947
}
},
{
"prompt": "Once upon a time in a",
"output": " far away town, there was a lawyer. He lived in a big, big house. He was a kind man who always gave care. Every day he would walk around the city, to the people he could see. He would sing songs too.",
"metrics": {
"ttft_ms": 3.127452000626363,
"tps": 311.78890339347475,
"total_latency_ms": 176.40140300500207,
"tokens_generated": 55,
"perplexity": 5.871677245230654,
"avg_token_prob": 0.4364758665111107,
"repetition_rate": 0.17777777777777778,
"coherence_length": 55,
"unique_tokens": 0.7272727272727273
}
},
{
"prompt": "The little girl loved to",
"output": " swing. Every day she would go down to the park and swing as high as she could.",
"metrics": {
"ttft_ms": 3.086410986725241,
"tps": 304.310445355505,
"total_latency_ms": 62.43623999762349,
"tokens_generated": 19,
"perplexity": 2.1703275833037035,
"avg_token_prob": 0.6724813562817872,
"repetition_rate": 0.1111111111111111,
"coherence_length": 19,
"unique_tokens": 0.7894736842105263
}
},
{
"prompt": "One day it started to",
"output": " get dark and it looked for a place to sleep. Suddenly, it heard a voice. The voice said \"Let's be a bird\". The bird was very excited and said \"Yes!\" The voice said \"How about a fancy bird? It looks too big for us\". The bird thought for a moment and then nodded.",
"metrics": {
"ttft_ms": 3.090601006988436,
"tps": 312.3009942160171,
"total_latency_ms": 217.73866000876296,
"tokens_generated": 68,
"perplexity": 4.2751132366676075,
"avg_token_prob": 0.4422811888052029,
"repetition_rate": 0.20689655172413793,
"coherence_length": 38,
"unique_tokens": 0.6470588235294118
}
},
{
"prompt": "There was a friendly",
"output": " dog. She said, \"Let's pass the ball to each other!\" The little girl said, \"Yes, let's go!\"",
"metrics": {
"ttft_ms": 3.074230990023352,
"tps": 307.6294600455639,
"total_latency_ms": 91.01859098882414,
"tokens_generated": 28,
"perplexity": 3.0747248132044693,
"avg_token_prob": 0.5516863828083372,
"repetition_rate": 0.05555555555555555,
"coherence_length": 19,
"unique_tokens": 0.7857142857142857
}
},
{
"prompt": "A boy named Tom had a",
"output": " toy truck. It was very useful. He loved to drive it around the yard and make it go vroom vroom. One day, Tom's dad came home and saw the toy truck. He picked it up and saw the truck. Tom was very happy.",
"metrics": {
"ttft_ms": 3.146502989693545,
"tps": 312.35501404325066,
"total_latency_ms": 176.08169399318285,
"tokens_generated": 55,
"perplexity": 2.784638064972828,
"avg_token_prob": 0.5561090339532322,
"repetition_rate": 0.2,
"coherence_length": 38,
"unique_tokens": 0.6181818181818182
}
},
{
"prompt": "Once there was a magic",
"output": " rabbit. Every morning he would hop around, hoping to see what he could do. He would hop over and over again.",
"metrics": {
"ttft_ms": 3.088632001890801,
"tps": 306.949395745434,
"total_latency_ms": 84.70451598986983,
"tokens_generated": 26,
"perplexity": 3.8997015703284217,
"avg_token_prob": 0.4090563556248391,
"repetition_rate": 0.1875,
"coherence_length": 26,
"unique_tokens": 0.7307692307692307
}
},
{
"prompt": "In the park there was a",
"output": " big puddle of water. Isn't this water?\" Tom asked.",
"metrics": {
"ttft_ms": 3.101542009972036,
"tps": 300.4548190430603,
"total_latency_ms": 53.252599012921564,
"tokens_generated": 16,
"perplexity": 3.810484387199143,
"avg_token_prob": 0.47735087644747076,
"repetition_rate": 0.3333333333333333,
"coherence_length": 16,
"unique_tokens": 0.875
}
},
{
"prompt": "A small dog was playing in the",
"output": " park. They were very happy.",
"metrics": {
"ttft_ms": 3.0628600070485845,
"tps": 283.89311716682164,
"total_latency_ms": 24.65716699953191,
"tokens_generated": 7,
"perplexity": 2.6680735670384217,
"avg_token_prob": 0.5311885364353657,
"repetition_rate": 0.0,
"coherence_length": 7,
"unique_tokens": 0.8571428571428571
}
},
{
"prompt": "One day the wind was very",
"output": " strong. The little girl was so scared. She didn't want to go to the town anymore. So she asked her mommy, \"Can I go to the town?\"",
"metrics": {
"ttft_ms": 3.1038209999678656,
"tps": 309.50182904120595,
"total_latency_ms": 109.85395500028972,
"tokens_generated": 34,
"perplexity": 2.7104315074065815,
"avg_token_prob": 0.5343505433361445,
"repetition_rate": 0.041666666666666664,
"coherence_length": 29,
"unique_tokens": 0.7941176470588235
}
},
{
"prompt": "There was a girl who liked to",
"output": " pretend. She pretended to be a princess, a dragon, a spider and a rocket. She had a lot of fun.",
"metrics": {
"ttft_ms": 3.0783910042373464,
"tps": 307.4201536077138,
"total_latency_ms": 94.33343799901195,
"tokens_generated": 29,
"perplexity": 2.1322834024643504,
"avg_token_prob": 0.6839070910277466,
"repetition_rate": 0.3157894736842105,
"coherence_length": 29,
"unique_tokens": 0.6896551724137931
}
},
{
"prompt": "A baby bird fell from the",
"output": " tree. The bird was hurt and needed help. The baby bird's mom heard it and came to help. She gently picked the bird up and gently took it to the vet. The bird was very happy and thanked the tree for its help.",
"metrics": {
"ttft_ms": 3.0794210033491254,
"tps": 311.6053891534489,
"total_latency_ms": 166.8777300073998,
"tokens_generated": 52,
"perplexity": 2.536216849263299,
"avg_token_prob": 0.6277516074906947,
"repetition_rate": 0.11904761904761904,
"coherence_length": 38,
"unique_tokens": 0.5769230769230769
}
},
{
"prompt": "Once upon a time a king",
"output": " wanted to build something special. He had an idea that he could make special designs. He got down his designs and started to try and create his designs.",
"metrics": {
"ttft_ms": 3.1735039956402034,
"tps": 309.45790157440774,
"total_latency_ms": 122.79537800350226,
"tokens_generated": 38,
"perplexity": 4.701280722439184,
"avg_token_prob": 0.5065986556851735,
"repetition_rate": 0.17857142857142858,
"coherence_length": 23,
"unique_tokens": 0.6578947368421053
}
},
{
"prompt": "The flowers in the garden were",
"output": " so happy to see these. But then it became hot again.",
"metrics": {
"ttft_ms": 3.0917209951439872,
"tps": 299.73738944101285,
"total_latency_ms": 46.70755298866425,
"tokens_generated": 14,
"perplexity": 11.358549591120362,
"avg_token_prob": 0.2597356433359285,
"repetition_rate": 0.25,
"coherence_length": 14,
"unique_tokens": 0.9285714285714286
}
},
{
"prompt": "One night the stars were",
"output": " talking about a magical garden and a magical thing. The garden's secret was to stay strong and brave.",
"metrics": {
"ttft_ms": 3.105502008111216,
"tps": 306.21926454933174,
"total_latency_ms": 71.84394499927294,
"tokens_generated": 22,
"perplexity": 9.146528577261066,
"avg_token_prob": 0.3103238119257857,
"repetition_rate": 0.08333333333333333,
"coherence_length": 22,
"unique_tokens": 0.7727272727272727
}
},
{
"prompt": "There was a fish who wanted to",
"output": " find somewhere special, so he asked his friends to help him. Together they planned an oasis in the oasis.",
"metrics": {
"ttft_ms": 3.0940419965190813,
"tps": 307.7385726666518,
"total_latency_ms": 97.48534199025016,
"tokens_generated": 30,
"perplexity": 4.743910887556641,
"avg_token_prob": 0.4884407021679855,
"repetition_rate": 0.15,
"coherence_length": 26,
"unique_tokens": 0.8666666666666667
}
},
{
"prompt": "A little bear went to find",
"output": " the rabbit. He found the rabbit and gave him a carrot to eat. The rabbit ate the carrot and hopped around. The bear felt very full and full.",
"metrics": {
"ttft_ms": 3.1144519889494404,
"tps": 309.19535987053234,
"total_latency_ms": 103.4944379935041,
"tokens_generated": 32,
"perplexity": 3.6881983529932163,
"avg_token_prob": 0.49279923655205604,
"repetition_rate": 0.3181818181818182,
"coherence_length": 32,
"unique_tokens": 0.625
}
},
{
"prompt": "Once there was a cloud that",
"output": " was very dry outside. The cloud was so dry it could stretch out all the dry.",
"metrics": {
"ttft_ms": 3.066421006224118,
"tps": 304.9871700313906,
"total_latency_ms": 65.57652899937239,
"tokens_generated": 20,
"perplexity": 5.724063935907925,
"avg_token_prob": 0.40092495135918615,
"repetition_rate": 0.1,
"coherence_length": 20,
"unique_tokens": 0.8
}
},
{
"prompt": "The rabbit was looking for",
"output": " his friend. He saw a big carrot in a nearby bush. Ben hopped over the bush and carefully placed the carrot in the bush.",
"metrics": {
"ttft_ms": 3.0958910065237433,
"tps": 308.0449107976339,
"total_latency_ms": 90.89583699824288,
"tokens_generated": 28,
"perplexity": 4.895826618220884,
"avg_token_prob": 0.45619641306558184,
"repetition_rate": 0.2777777777777778,
"coherence_length": 28,
"unique_tokens": 0.6785714285714286
}
},
{
"prompt": "One day a new friend came to",
"output": " the town. His name was Sam and he was very friendly. Sam had a new game and was very excited to play.",
"metrics": {
"ttft_ms": 3.093342005740851,
"tps": 307.0688841348004,
"total_latency_ms": 81.41495700692758,
"tokens_generated": 25,
"perplexity": 3.1914202906207927,
"avg_token_prob": 0.5210180674464657,
"repetition_rate": 0.26666666666666666,
"coherence_length": 25,
"unique_tokens": 0.72
}
},
{
"prompt": "There was a tree that could",
"output": " not reach the sky. The little bird knew it needed help. So, the tree thought of a plan.",
"metrics": {
"ttft_ms": 3.0694809975102544,
"tps": 305.79612789735484,
"total_latency_ms": 71.94335700478405,
"tokens_generated": 22,
"perplexity": 4.085900060187435,
"avg_token_prob": 0.45406296043454303,
"repetition_rate": 0.16666666666666666,
"coherence_length": 22,
"unique_tokens": 0.8636363636363636
}
},
{
"prompt": "A kitten and a puppy were",
"output": " all together. One day the kitten got stuck in a tree. He tried to get it down, but it was too high.",
"metrics": {
"ttft_ms": 3.074401000048965,
"tps": 307.26337152953283,
"total_latency_ms": 87.87249799934216,
"tokens_generated": 27,
"perplexity": 2.8434049346272503,
"avg_token_prob": 0.5479151140898466,
"repetition_rate": 0.058823529411764705,
"coherence_length": 27,
"unique_tokens": 0.8888888888888888
}
},
{
"prompt": "Lily was a girl who",
"output": " loved animals. She had a big, white dog named Buddy who loved to play with his ball. Buddy was a good dog, but he was very shy. One day, Buddy met a new friend named Buddy. Buddy was also shy and did not shy at first. Buddy liked to play with balls and they played together all day.",
"metrics": {
"ttft_ms": 3.067780999117531,
"tps": 311.97567062111915,
"total_latency_ms": 266.04638699791394,
"tokens_generated": 83,
"perplexity": 2.4473507747328727,
"avg_token_prob": 0.6081537952247474,
"repetition_rate": 0.1780821917808219,
"coherence_length": 22,
"unique_tokens": 0.5180722891566265
}
},
{
"prompt": "Tom was a boy who loved",
"output": " to play. He had many toys, but his favorite was a big red car. He liked to push buttons and make vroom-vroom noises. He liked to pretend he was going on an adventure in the world.",
"metrics": {
"ttft_ms": 3.123861999483779,
"tps": 310.2341254285682,
"total_latency_ms": 151.49848500732332,
"tokens_generated": 47,
"perplexity": 2.0490936133315567,
"avg_token_prob": 0.6963343010478033,
"repetition_rate": 0.02702702702702703,
"coherence_length": 32,
"unique_tokens": 0.7872340425531915
}
},
{
"prompt": "The old man had a",
"output": " lovely house. Inside the house was a family of four. The father had a dog, and he was so glad to be together.",
"metrics": {
"ttft_ms": 3.166802998748608,
"tps": 307.82446384670027,
"total_latency_ms": 97.45814099733252,
"tokens_generated": 30,
"perplexity": 4.801265538314021,
"avg_token_prob": 0.42605917971400964,
"repetition_rate": 0.15,
"coherence_length": 30,
"unique_tokens": 0.8
}
},
{
"prompt": "A brave knight went to",
"output": " the edge of town, but he was not very successful. He sulked with fear and tried to hit the edge of town. The edge seemed happy and awe of the townspeople.",
"metrics": {
"ttft_ms": 3.088782003032975,
"tps": 311.0060886055187,
"total_latency_ms": 167.19929900136776,
"tokens_generated": 52,
"perplexity": 4.632447259163944,
"avg_token_prob": 0.4947699609812226,
"repetition_rate": 0.11904761904761904,
"coherence_length": 28,
"unique_tokens": 0.6730769230769231
}
},
{
"prompt": "The princess wanted to",
"output": " learn more, so she said, \"I can show you all the time to the test\". The tutor was very excited and said, \"Yes, I'll teach you how to do it\".",
"metrics": {
"ttft_ms": 3.20212499354966,
"tps": 310.6702515673988,
"total_latency_ms": 138.41041999694426,
"tokens_generated": 43,
"perplexity": 3.458249524010498,
"avg_token_prob": 0.5144718543372371,
"repetition_rate": 0.09090909090909091,
"coherence_length": 28,
"unique_tokens": 0.7674418604651163
}
},
{
"prompt": "A wise owl told the",
"output": " little girl that it's not nice to take things that don't belong to us.",
"metrics": {
"ttft_ms": 3.087252000113949,
"tps": 302.59425985590684,
"total_latency_ms": 56.180840998422354,
"tokens_generated": 17,
"perplexity": 2.1173237879224427,
"avg_token_prob": 0.5960211964944998,
"repetition_rate": 0.2857142857142857,
"coherence_length": 17,
"unique_tokens": 0.8823529411764706
}
},
{
"prompt": "The farmer had many",
"output": " friends. He would look for them all day long, and his friends would watch him with joy.",
"metrics": {
"ttft_ms": 3.120162000413984,
"tps": 303.95078573986194,
"total_latency_ms": 65.80012600170448,
"tokens_generated": 20,
"perplexity": 4.492487266908206,
"avg_token_prob": 0.416559866696064,
"repetition_rate": 0.0,
"coherence_length": 20,
"unique_tokens": 0.85
}
},
{
"prompt": "A young fox was very",
"output": " worried. He came to the cage and asked the cop why he was so sad. The cop said he had lost his hat and he needed it for a long time.",
"metrics": {
"ttft_ms": 3.0746410047868267,
"tps": 310.1843688620785,
"total_latency_ms": 119.28389601234812,
"tokens_generated": 37,
"perplexity": 3.149315035811557,
"avg_token_prob": 0.5287123534852933,
"repetition_rate": 0.2222222222222222,
"coherence_length": 37,
"unique_tokens": 0.7567567567567568
}
},
{
"prompt": "The teacher said to the",
"output": " little girl, \"It looks like you need a seat to sit on.\"",
"metrics": {
"ttft_ms": 3.0934810056351125,
"tps": 301.1157090129122,
"total_latency_ms": 53.13571999431588,
"tokens_generated": 16,
"perplexity": 3.3834278743394974,
"avg_token_prob": 0.47894586031051245,
"repetition_rate": 0.0,
"coherence_length": 16,
"unique_tokens": 1.0
}
},
{
"prompt": "Mom told her that",
"output": " it's important to always be kind and make others happy. From that day on, Lily always remembered to be kind to others and even happier to make them happy too.",
"metrics": {
"ttft_ms": 3.1020219903439283,
"tps": 309.2843676642856,
"total_latency_ms": 113.1644650013186,
"tokens_generated": 35,
"perplexity": 2.49145121322887,
"avg_token_prob": 0.6055856720017295,
"repetition_rate": 0.08,
"coherence_length": 35,
"unique_tokens": 0.6857142857142857
}
},
{
"prompt": "Dad was going to",
"output": " the table but his daughter had forgotten to hold the remote too tightly.",
"metrics": {
"ttft_ms": 3.119831992080435,
"tps": 302.44814583070627,
"total_latency_ms": 62.820685998303816,
"tokens_generated": 19,
"perplexity": 10.222662939970043,
"avg_token_prob": 0.3941892774368171,
"repetition_rate": 0.0,
"coherence_length": 19,
"unique_tokens": 0.9473684210526315
}
},
{
"prompt": "The baby was crying because",
"output": " he was so sad.",
"metrics": {
"ttft_ms": 3.0578910082112998,
"tps": 270.28111068415916,
"total_latency_ms": 18.49925800343044,
"tokens_generated": 5,
"perplexity": 2.493387712763218,
"avg_token_prob": 0.4525824561715126,
"repetition_rate": 0.0,
"coherence_length": 5,
"unique_tokens": 1.0
}
},
{
"prompt": "A kind woman gave the",
"output": " kids a big hug. From that day on, the kids learned to always be kind to others.",
"metrics": {
"ttft_ms": 3.067751007620245,
"tps": 303.74286998571415,
"total_latency_ms": 65.84516700240783,
"tokens_generated": 20,
"perplexity": 3.189661107637553,
"avg_token_prob": 0.5068282327570376,
"repetition_rate": 0.1,
"coherence_length": 20,
"unique_tokens": 0.85
}
},
{
"prompt": "The big bear was",
"output": " big and black. He had a mean smile and a bushy tail. He liked to roar at the children. He liked to kick and bite.",
"metrics": {
"ttft_ms": 3.0829809984425083,
"tps": 308.44543059323377,
"total_latency_ms": 103.74606600089464,
"tokens_generated": 32,
"perplexity": 4.998311385014472,
"avg_token_prob": 0.47917947988025844,
"repetition_rate": 0.2727272727272727,
"coherence_length": 23,
"unique_tokens": 0.6875
}
},
{
"prompt": "A clever mouse found",
"output": " a tree and sat down with his friend, a bird named Billy.",
"metrics": {
"ttft_ms": 3.085581003688276,
"tps": 299.61923529850804,
"total_latency_ms": 46.725972002604976,
"tokens_generated": 14,
"perplexity": 5.989792330906451,
"avg_token_prob": 0.3673692471968631,
"repetition_rate": 0.0,
"coherence_length": 14,
"unique_tokens": 0.9285714285714286
}
},
{
"prompt": "The old cat always",
"output": " stayed safe in the woods. One day, it found a box and it was very excited to see what was inside.",
"metrics": {
"ttft_ms": 3.0703709926456213,
"tps": 306.3708829452348,
"total_latency_ms": 78.33642599871382,
"tokens_generated": 24,
"perplexity": 4.2781675081331585,
"avg_token_prob": 0.4414284898340702,
"repetition_rate": 0.14285714285714285,
"coherence_length": 24,
"unique_tokens": 0.875
}
},
{
"prompt": "A tall giraffe could",
"output": " hold the string of the tree. She watched it hop on the branch as it spun around and around.",
"metrics": {
"ttft_ms": 3.1282829877454787,
"tps": 303.1568740652589,
"total_latency_ms": 75.8683109888807,
"tokens_generated": 23,
"perplexity": 6.161735224093023,
"avg_token_prob": 0.3891358539306869,
"repetition_rate": 0.23076923076923078,
"coherence_length": 23,
"unique_tokens": 0.782608695652174
}
},
{
"prompt": "The little duck went",
"output": " to the shop with his mommy. He saw many things, but he couldn't find anything he liked.",
"metrics": {
"ttft_ms": 3.092650993494317,
"tps": 305.33555122874327,
"total_latency_ms": 68.77679299213924,
"tokens_generated": 21,
"perplexity": 3.7836348957474315,
"avg_token_prob": 0.462347094244747,
"repetition_rate": 0.09090909090909091,
"coherence_length": 21,
"unique_tokens": 0.9047619047619048
}
},
{
"prompt": "A strong lion was",
"output": " there, he was so happy! He ran to the jungle and jumped on it. He had a fun day exploring and he discovered all sorts of exciting things.",
"metrics": {
"ttft_ms": 3.065390992560424,
"tps": 309.9158239210036,
"total_latency_ms": 116.16057400533464,
"tokens_generated": 36,
"perplexity": 5.43357496076665,
"avg_token_prob": 0.3897642449954072,
"repetition_rate": 0.0,
"coherence_length": 36,
"unique_tokens": 0.8888888888888888
}
},
{
"prompt": "The funny monkey liked to",
"output": " make funny sounds. He had a funny hat on his head and looked silly. They laughed and had fun.",
"metrics": {
"ttft_ms": 3.071331011597067,
"tps": 305.446150657541,
"total_latency_ms": 72.02578900614753,
"tokens_generated": 22,
"perplexity": 4.70548828143968,
"avg_token_prob": 0.44234097359256574,
"repetition_rate": 0.16666666666666666,
"coherence_length": 22,
"unique_tokens": 0.7727272727272727
}
},
{
"prompt": "The dog ran to the",
"output": " other side of the park and sniffed the air. The dog looked at the ball and then at Ben. It bumped into the carpet and made a lot of noise.",
"metrics": {
"ttft_ms": 3.0639509932370856,
"tps": 310.40804861387153,
"total_latency_ms": 128.86263799737208,
"tokens_generated": 40,
"perplexity": 3.6984200492355757,
"avg_token_prob": 0.5339644756792795,
"repetition_rate": 0.1,
"coherence_length": 40,
"unique_tokens": 0.75
}
},
{
"prompt": "She picked up the",
"output": " stone and threw it in the trash. Then, she took a deep breath and put the stone in the trash.",
"metrics": {
"ttft_ms": 3.083750998484902,
"tps": 308.04219625691684,
"total_latency_ms": 90.89663799386472,
"tokens_generated": 28,
"perplexity": 2.338004903194961,
"avg_token_prob": 0.6331489578146359,
"repetition_rate": 0.05555555555555555,
"coherence_length": 23,
"unique_tokens": 0.6785714285714286
}
},
{
"prompt": "He walked to the big",
"output": " tree and saw a little bird stuck in a tree. The bird had hurt its wing and couldn't fly anymore.",
"metrics": {
"ttft_ms": 3.0705719982506707,
"tps": 306.9395895260373,
"total_latency_ms": 78.19128199480474,
"tokens_generated": 24,
"perplexity": 2.0363989273331824,
"avg_token_prob": 0.6612530656158924,
"repetition_rate": 0.07142857142857142,
"coherence_length": 24,
"unique_tokens": 0.7916666666666666
}
},
{
"prompt": "They went to play in the",
"output": " yard. They had a lot of fun. They learned to share and be nice. They made new friends.",
"metrics": {
"ttft_ms": 3.0747920100111514,
"tps": 304.83126798021334,
"total_latency_ms": 72.17107400356326,
"tokens_generated": 22,
"perplexity": 2.6811005923005204,
"avg_token_prob": 0.5990688394674141,
"repetition_rate": 0.25,
"coherence_length": 22,
"unique_tokens": 0.7727272727272727
}
},
{
"prompt": "The cat jumped on the",
"output": " big chair and started to eat the food. But then, the big dog came into the room and bit the little girl on the arm. The big dog started to bark and bit the little girl's arm. The little girl fell down and started to cry.",
"metrics": {
"ttft_ms": 3.057670997804962,
"tps": 311.68439214286997,
"total_latency_ms": 170.04380500293337,
"tokens_generated": 53,
"perplexity": 2.4771343104383,
"avg_token_prob": 0.5875354993536517,
"repetition_rate": 0.16279069767441862,
"coherence_length": 35,
"unique_tokens": 0.5283018867924528
}
},
{
"prompt": "She opened the door and",
"output": " called for a nosy cat. A kind and friendly dog came out from behind the door. The cat was also curious and wanted to see the pup.",
"metrics": {
"ttft_ms": 3.085790987825021,
"tps": 308.5748466229264,
"total_latency_ms": 103.7025549885584,
"tokens_generated": 32,
"perplexity": 4.86017695941391,
"avg_token_prob": 0.3917207001764892,
"repetition_rate": 0.0,
"coherence_length": 32,
"unique_tokens": 0.84375
}
},
{
"prompt": "He found a box with",
"output": " glitter and decided to take it home. He put the glitter on his folder, and when he was done, he put it on.",
"metrics": {
"ttft_ms": 3.1144820095505565,
"tps": 308.6521944188714,
"total_latency_ms": 106.91646000486799,
"tokens_generated": 33,
"perplexity": 3.524668933845503,
"avg_token_prob": 0.5129551284634919,
"repetition_rate": 0.13043478260869565,
"coherence_length": 13,
"unique_tokens": 0.6666666666666666
}
},
{
"prompt": "They ran as fast as",
"output": " they could. They saw a big box. It was empty. They saw a man. He is running after them.",
"metrics": {
"ttft_ms": 3.082011011429131,
"tps": 306.78464266617067,
"total_latency_ms": 84.75000500038732,
"tokens_generated": 26,
"perplexity": 3.873872587169916,
"avg_token_prob": 0.5384018115625993,
"repetition_rate": 0.1875,
"coherence_length": 14,
"unique_tokens": 0.7307692307692307
}
},
{
"prompt": "The bird flew to the",
"output": " tree and saw the man working. He saw the man working hard to make the tree better. It was a big, shiny branch. The man put the bird in the tree and watched it. The bird was happy and flew away. The man felt good that he could help his friend.",
"metrics": {
"ttft_ms": 3.1046310032252222,
"tps": 311.6703303385287,
"total_latency_ms": 192.51110599725507,
"tokens_generated": 60,
"perplexity": 3.345182892010602,
"avg_token_prob": 0.49836862429816153,
"repetition_rate": 0.22,
"coherence_length": 9,
"unique_tokens": 0.6166666666666667
}
},
{
"prompt": "She gave her friend a",
"output": " big hug and they were all so glad for the nice hot day.",
"metrics": {
"ttft_ms": 3.0825020076008514,
"tps": 299.6299313273726,
"total_latency_ms": 46.72430400387384,
"tokens_generated": 14,
"perplexity": 9.085097889624834,
"avg_token_prob": 0.3727869594023408,
"repetition_rate": 0.0,
"coherence_length": 14,
"unique_tokens": 1.0
}
},
{
"prompt": "He tried to climb the",
"output": " tree by himself, but it was hard. He called for help and his mom came quickly but it was too late. The leak had fallen apart and Timmy had to stay in the ground as a million pieces of wood. Timmy was very sad and wanted to play with his favorite toy, a big, fancy bear.",
"metrics": {
"ttft_ms": 3.2001139916246757,
"tps": 311.8793107520706,
"total_latency_ms": 227.65216400148347,
"tokens_generated": 71,
"perplexity": 5.04822476929757,
"avg_token_prob": 0.5034108456314799,
"repetition_rate": 0.03278688524590164,
"coherence_length": 18,
"unique_tokens": 0.7605633802816901
}
},
{
"prompt": "They built a house with",
"output": " a big pile of food. They were very happy and proud.",
"metrics": {
"ttft_ms": 3.1131330033531412,
"tps": 297.0757853865091,
"total_latency_ms": 47.126022007432766,
"tokens_generated": 14,
"perplexity": 3.433792946388224,
"avg_token_prob": 0.4451331926509738,
"repetition_rate": 0.25,
"coherence_length": 14,
"unique_tokens": 0.9285714285714286
}
},
{
"prompt": "The fish swam to the",
"output": " other side of the pond and started swimming around happily. The other fish laughed and cheered as the fish swam around it. It was a great adventure and everyone was happy.",
"metrics": {
"ttft_ms": 3.087000994128175,
"tps": 308.9337095864849,
"total_latency_ms": 110.0559729966335,
"tokens_generated": 34,
"perplexity": 3.602159189205308,
"avg_token_prob": 0.47271773261683325,
"repetition_rate": 0.16666666666666666,
"coherence_length": 34,
"unique_tokens": 0.7352941176470589
}
},
{
"prompt": "She put the ball in the",
"output": " bathtub and was very happy. She could play with it again.",
"metrics": {
"ttft_ms": 3.0901920108590275,
"tps": 300.6279384557176,
"total_latency_ms": 53.221933005261235,
"tokens_generated": 16,
"perplexity": 3.3247877753491517,
"avg_token_prob": 0.5193824980627088,
"repetition_rate": 0.16666666666666666,
"coherence_length": 16,
"unique_tokens": 0.9375
}
},
{
"prompt": "He looked under the",
"output": " bed, in the closet, and in the toy chest. He did not find them. He started to cry.",
"metrics": {
"ttft_ms": 3.0838120001135394,
"tps": 307.03528242248046,
"total_latency_ms": 81.42386699910276,
"tokens_generated": 25,
"perplexity": 2.1342706136711747,
"avg_token_prob": 0.6884382022298479,
"repetition_rate": 0.2,
"coherence_length": 25,
"unique_tokens": 0.76
}
},
{
"prompt": "They shared the cake and",
"output": " ate it with the cat. They had a nice day.",
"metrics": {
"ttft_ms": 3.081670991377905,
"tps": 295.98437992563476,
"total_latency_ms": 40.54267999890726,
"tokens_generated": 12,
"perplexity": 4.684810421284052,
"avg_token_prob": 0.41022055445668787,
"repetition_rate": 0.5,
"coherence_length": 12,
"unique_tokens": 0.9166666666666666
}
},
{
"prompt": "The frog jumped into the",
"output": " pond, but it was dirty! He couldn't swim and was scared.",
"metrics": {
"ttft_ms": 3.092851009569131,
"tps": 300.04417850591466,
"total_latency_ms": 49.992637999821454,
"tokens_generated": 15,
"perplexity": 6.49280920418637,
"avg_token_prob": 0.35916809742411715,
"repetition_rate": 0.2,
"coherence_length": 15,
"unique_tokens": 0.9333333333333333
}
},
{
"prompt": "She drew a picture of",
"output": " a yellow sun and a green tree with a yellow bird on the top. She drew a big green tree with yellow leaves. She said, \"Look, mom, I drew this. It is the best sun.\"",
"metrics": {
"ttft_ms": 3.081700997427106,
"tps": 227.07363072700022,
"total_latency_ms": 198.1736049929168,
"tokens_generated": 45,
"perplexity": 3.1584458090373606,
"avg_token_prob": 0.5147035023369624,
"repetition_rate": 0.08571428571428572,
"coherence_length": 20,
"unique_tokens": 0.6222222222222222
}
},
{
"prompt": "He made a wish and",
"output": " waved the flag to the kids and started to play pirates. They had so much fun together!",
"metrics": {
"ttft_ms": 3.1114919984247535,
"tps": 303.8773280874912,
"total_latency_ms": 75.68843699118588,
"tokens_generated": 23,
"perplexity": 5.270039774914218,
"avg_token_prob": 0.4314354603702668,
"repetition_rate": 0.0,
"coherence_length": 23,
"unique_tokens": 0.9130434782608695
}
},
{
"prompt": "They danced in the",
"output": " sun. They saw the sun. They saw the birds and the sun and the flowers. They felt happy and free. They thanked their mom for taking them to the beach. They said they wanted to dance. They danced to the beat.",
"metrics": {
"ttft_ms": 3.07564101240132,
"tps": 309.5577894092315,
"total_latency_ms": 158.29031501198187,
"tokens_generated": 49,
"perplexity": 3.198854127142223,
"avg_token_prob": 0.4923974376544356,
"repetition_rate": 0.3076923076923077,
"coherence_length": 5,
"unique_tokens": 0.5306122448979592
}
},
{
"prompt": "She was very happy because",
"output": " the tent was perfect.",
"metrics": {
"ttft_ms": 3.0890710040694103,
"tps": 275.5878368283138,
"total_latency_ms": 21.771643005195074,
"tokens_generated": 6,
"perplexity": 10.648928874488538,
"avg_token_prob": 0.32455805582659586,
"repetition_rate": 0.0,
"coherence_length": 6,
"unique_tokens": 1.0
}
},
{
"prompt": "He was sad because his",
"output": " mom didn't understand, so she kept telling him that he needed to be obedient and listen to her.",
"metrics": {
"ttft_ms": 3.076352004427463,
"tps": 304.3193567589267,
"total_latency_ms": 78.86452000821009,
"tokens_generated": 24,
"perplexity": 4.27923512653107,
"avg_token_prob": 0.5115590107860044,
"repetition_rate": 0.07142857142857142,
"coherence_length": 24,
"unique_tokens": 0.9583333333333334
}
},
{
"prompt": "The girl felt scared when",
"output": " she heard a knock on her door. She opened the door and saw a man standing there. He was wearing a big hat and an old, harsh sound. He said \"I have a special delivery for you\".",
"metrics": {
"ttft_ms": 3.0853209900669754,
"tps": 309.51151159918857,
"total_latency_ms": 161.54488000029232,
"tokens_generated": 50,
"perplexity": 3.3698045790650943,
"avg_token_prob": 0.5324389314023303,
"repetition_rate": 0.05,
"coherence_length": 50,
"unique_tokens": 0.84
}
},
{
"prompt": "They were excited to",
"output": " start the game. They were going to the park.",
"metrics": {
"ttft_ms": 3.09383099374827,
"tps": 294.35064060601945,
"total_latency_ms": 37.37039599218406,
"tokens_generated": 11,
"perplexity": 4.030431166947352,
"avg_token_prob": 0.43095147776572656,
"repetition_rate": 1.0,
"coherence_length": 11,
"unique_tokens": 0.8181818181818182
}
},
{
"prompt": "He was angry because",
"output": " it had been taken by a man. He called the nurse. He said the judge University was a bad man.",
"metrics": {
"ttft_ms": 3.0870010086800903,
"tps": 307.03617210686565,
"total_latency_ms": 107.47919300047215,
"tokens_generated": 33,
"perplexity": 6.170845142785543,
"avg_token_prob": 0.41246182014754806,
"repetition_rate": 0.13043478260869565,
"coherence_length": 33,
"unique_tokens": 0.8181818181818182
}
},
{
"prompt": "She felt proud when she",
"output": " showed her mom the powder.",
"metrics": {
"ttft_ms": 3.112731996225193,
"tps": 285.9147527772792,
"total_latency_ms": 27.980368002317846,
"tokens_generated": 8,
"perplexity": 4.874408530879595,
"avg_token_prob": 0.4377849427983165,
"repetition_rate": 0.0,
"coherence_length": 8,
"unique_tokens": 1.0
}
},
{
"prompt": "The boy was surprised to see",
"output": " it shinning in the sky like an angel. He smiled and said, \"Thank you, little boy.\"",
"metrics": {
"ttft_ms": 3.105311989202164,
"tps": 305.5522087502514,
"total_latency_ms": 81.819077997352,
"tokens_generated": 25,
"perplexity": 4.64584540946717,
"avg_token_prob": 0.44825011615802607,
"repetition_rate": 0.06666666666666667,
"coherence_length": 25,
"unique_tokens": 0.92
}
},
{
"prompt": "They were tired after",
"output": " a long day of playing, and then they said goodbye and headed back home. The fat cat was glad that he had gone to the cave, and all he had had to do was to wait there with his best friend.",
"metrics": {
"ttft_ms": 3.073681000387296,
"tps": 310.1420829476504,
"total_latency_ms": 151.54344600159675,
"tokens_generated": 47,
"perplexity": 5.025313467549466,
"avg_token_prob": 0.4492420233230708,
"repetition_rate": 0.16216216216216217,
"coherence_length": 47,
"unique_tokens": 0.7872340425531915
}
},
{
"prompt": "She was kind to the",
"output": " little girl and made her feel better.",
"metrics": {
"ttft_ms": 3.0812219920335338,
"tps": 287.3837286027016,
"total_latency_ms": 27.83734499826096,
"tokens_generated": 8,
"perplexity": 2.590356337005428,
"avg_token_prob": 0.5621132322897514,
"repetition_rate": 0.0,
"coherence_length": 8,
"unique_tokens": 1.0
}
},
{
"prompt": "He was brave and",
"output": " he wanted to go on an adventure! He climbed a big mountain and soon he was out of the forest.",
"metrics": {
"ttft_ms": 3.0640009936178103,
"tps": 305.66992190122954,
"total_latency_ms": 75.24456399551127,
"tokens_generated": 23,
"perplexity": 4.013197789804503,
"avg_token_prob": 0.44126233311059576,
"repetition_rate": 0.0,
"coherence_length": 23,
"unique_tokens": 0.9565217391304348
}
},
{
"prompt": "The dog was lonely because",
"output": " nobody had any friends. He was alone and cried. The boy felt sad and lonely.",
"metrics": {
"ttft_ms": 3.1653429905418307,
"tps": 302.78297521614644,
"total_latency_ms": 66.05391199991573,
"tokens_generated": 20,
"perplexity": 4.695942748512594,
"avg_token_prob": 0.3526226578812514,
"repetition_rate": 0.3,
"coherence_length": 20,
"unique_tokens": 0.85
}
},
{
"prompt": "She was curious about the",
"output": " new place. She said hello to the lady and asked her name.",
"metrics": {
"ttft_ms": 3.0669609986944124,
"tps": 298.8877001301167,
"total_latency_ms": 46.84033499506768,
"tokens_generated": 14,
"perplexity": 3.773987980484865,
"avg_token_prob": 0.43168318395813304,
"repetition_rate": 0.0,
"coherence_length": 14,
"unique_tokens": 0.9285714285714286
}
},
{
"prompt": "He felt sorry for the",
"output": " dog. He wanted to play with the dog, but he did not like it either.",
"metrics": {
"ttft_ms": 3.076220993534662,
"tps": 303.64091113187163,
"total_latency_ms": 65.86727699323092,
"tokens_generated": 20,
"perplexity": 3.393809018839907,
"avg_token_prob": 0.5692052010313741,
"repetition_rate": 0.0,
"coherence_length": 20,
"unique_tokens": 0.9
}
},
{
"prompt": "They were grateful for",
"output": " the lion and the zebra. They decided to keep the zebra as their pet. They hoped to see its friends there.",
"metrics": {
"ttft_ms": 3.106702002696693,
"tps": 307.2220342493842,
"total_latency_ms": 97.64924600312952,
"tokens_generated": 30,
"perplexity": 3.086030815551165,
"avg_token_prob": 0.5542233138074798,
"repetition_rate": 0.3,
"coherence_length": 13,
"unique_tokens": 0.6666666666666666
}
},
{
"prompt": "The cat was sleepy and",
"output": " felt much better. The cat was happy and went back to sleep. The end.",
"metrics": {
"ttft_ms": 3.0910509958630428,
"tps": 300.7574079928954,
"total_latency_ms": 56.52396100049373,
"tokens_generated": 17,
"perplexity": 2.5350561230137187,
"avg_token_prob": 0.6065332637582388,
"repetition_rate": 0.42857142857142855,
"coherence_length": 17,
"unique_tokens": 0.8235294117647058
}
},
{
"prompt": "Mom said to the boy",
"output": ", \"What are you doing? I want you to punish!\"",
"metrics": {
"ttft_ms": 3.0927309999242425,
"tps": 300.1362138571992,
"total_latency_ms": 49.97730799368583,
"tokens_generated": 15,
"perplexity": 3.4839419237737945,
"avg_token_prob": 0.5291094688000157,
"repetition_rate": 0.0,
"coherence_length": 15,
"unique_tokens": 0.9333333333333333
}
},
{
"prompt": "Can I have a",
"output": " cookie?\" asked Lily.",
"metrics": {
"ttft_ms": 3.0784010014031082,
"tps": 277.30865111869764,
"total_latency_ms": 21.6365410014987,
"tokens_generated": 6,
"perplexity": 2.1206786897781593,
"avg_token_prob": 0.6417255694312709,
"repetition_rate": 0.0,
"coherence_length": 6,
"unique_tokens": 1.0
}
},
{
"prompt": "Please help me find my",
"output": " way home.\"",
"metrics": {
"ttft_ms": 3.0943620076868683,
"tps": 240.97047493670394,
"total_latency_ms": 12.449657995603047,
"tokens_generated": 3,
"perplexity": 1.5792263736263417,
"avg_token_prob": 0.6717569977045059,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "Where is the big",
"output": " red ball?\"",
"metrics": {
"ttft_ms": 3.074751002714038,
"tps": 242.4162894150064,
"total_latency_ms": 12.375405989587307,
"tokens_generated": 3,
"perplexity": 2.9606571584861467,
"avg_token_prob": 0.47103328723460436,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "I want to go to the",
"output": " park. I saw the dog and I am scared. I want to go home.\"",
"metrics": {
"ttft_ms": 3.1418519938597456,
"tps": 301.15312061251376,
"total_latency_ms": 56.44968900014646,
"tokens_generated": 17,
"perplexity": 3.3943230685285206,
"avg_token_prob": 0.49815227791097844,
"repetition_rate": 0.2857142857142857,
"coherence_length": 17,
"unique_tokens": 0.8235294117647058
}
},
{
"prompt": "Let us play with the",
"output": " cube!\u00e2\u20ac",
"metrics": {
"ttft_ms": 3.076951004914008,
"tps": 269.07182431810355,
"total_latency_ms": 18.582399003207684,
"tokens_generated": 5,
"perplexity": 6.134807141189395,
"avg_token_prob": 0.5818403238275399,
"repetition_rate": 0.0,
"coherence_length": 5,
"unique_tokens": 1.0
}
},
{
"prompt": "Do you want to be my",
"output": " friend?\" Max asked.",
"metrics": {
"ttft_ms": 3.081531001953408,
"tps": 269.6855773838992,
"total_latency_ms": 18.54010899842251,
"tokens_generated": 5,
"perplexity": 3.323196131394541,
"avg_token_prob": 0.5927301327853153,
"repetition_rate": 0.0,
"coherence_length": 5,
"unique_tokens": 1.0
}
},
{
"prompt": "Come and see the",
"output": " horses. I like them!\"",
"metrics": {
"ttft_ms": 3.071811006520875,
"tps": 288.0279421756241,
"total_latency_ms": 27.775082999141887,
"tokens_generated": 8,
"perplexity": 10.473610125074051,
"avg_token_prob": 0.2495244611054659,
"repetition_rate": 0.0,
"coherence_length": 8,
"unique_tokens": 1.0
}
},
{
"prompt": "I am going to make a",
"output": " pie!\"",
"metrics": {
"ttft_ms": 3.0734610045328736,
"tps": 215.22304898683487,
"total_latency_ms": 9.2926850047661,
"tokens_generated": 2,
"perplexity": 11.790211441149461,
"avg_token_prob": 0.2445784149070581,
"repetition_rate": 0.0,
"coherence_length": 2,
"unique_tokens": 1.0
}
},
{
"prompt": "Why is the sky so",
"output": " blue, so blue?\" asked Mia.",
"metrics": {
"ttft_ms": 3.077221001149155,
"tps": 287.44694395345607,
"total_latency_ms": 27.831223007524386,
"tokens_generated": 8,
"perplexity": 5.010786068064446,
"avg_token_prob": 0.4444640437141061,
"repetition_rate": 0.0,
"coherence_length": 8,
"unique_tokens": 0.875
}
},
{
"prompt": "What is in the box",
"output": "?\u00e2\u20ac",
"metrics": {
"ttft_ms": 3.1016510038170964,
"tps": 242.33050205905798,
"total_latency_ms": 12.379787003737874,
"tokens_generated": 3,
"perplexity": 2.1950676175586543,
"avg_token_prob": 0.6735592596232891,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "Can you help the little",
"output": " girl get the ball?\" The pony replied, \"Yes, I can help you. But you must be careful\".",
"metrics": {
"ttft_ms": 3.085820993874222,
"tps": 305.80659695649325,
"total_latency_ms": 81.75101599772461,
"tokens_generated": 25,
"perplexity": 3.5508995927539675,
"avg_token_prob": 0.5164458125453586,
"repetition_rate": 0.13333333333333333,
"coherence_length": 25,
"unique_tokens": 0.92
}
},
{
"prompt": "I love you said the",
"output": " parade.",
"metrics": {
"ttft_ms": 3.0924309976398945,
"tps": 257.67517738192714,
"total_latency_ms": 15.523419991950504,
"tokens_generated": 4,
"perplexity": 4.025496701107276,
"avg_token_prob": 0.34057336747646333,
"repetition_rate": 0.0,
"coherence_length": 4,
"unique_tokens": 1.0
}
},
{
"prompt": "Look at the pretty",
"output": " flowers!\" Timmy said.",
"metrics": {
"ttft_ms": 3.0968420032877475,
"tps": 270.1936227905999,
"total_latency_ms": 18.505248008295894,
"tokens_generated": 5,
"perplexity": 2.6448171430839222,
"avg_token_prob": 0.5048398207873106,
"repetition_rate": 0.0,
"coherence_length": 5,
"unique_tokens": 1.0
}
},
{
"prompt": "Tell me a story about",
"output": " the old man who had a bad idea. He wanted to make the old man happy. He thought, \"I have to go to the store and buy a new car. I will be happy.\"",
"metrics": {
"ttft_ms": 3.067001001909375,
"tps": 309.0175341194725,
"total_latency_ms": 129.44249300926458,
"tokens_generated": 40,
"perplexity": 3.8240860882679457,
"avg_token_prob": 0.3947237283900017,
"repetition_rate": 0.1,
"coherence_length": 13,
"unique_tokens": 0.725
}
}
] |