File size: 52,885 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. Her name was Abigail and she was three years old. Her mummy and daddy said she was very brave.",
"metrics": {
"ttft_ms": 241.79959000321105,
"tps": 104.18743530444145,
"total_latency_ms": 307.13876300433185,
"tokens_generated": 32,
"perplexity": 2.444454727231884,
"avg_token_prob": 0.619636050651245,
"repetition_rate": 0.045454545454545456,
"coherence_length": 32,
"unique_tokens": 0.78125
}
},
{
"prompt": "One day a small bird",
"output": " came to the line with the other birds. The birds were very happy and thanked the birds.",
"metrics": {
"ttft_ms": 1.8285569967702031,
"tps": 526.7933872476021,
"total_latency_ms": 43.660381008521654,
"tokens_generated": 23,
"perplexity": 4.463312210557854,
"avg_token_prob": 0.45253183665530133,
"repetition_rate": 0.3076923076923077,
"coherence_length": 20,
"unique_tokens": 0.6956521739130435
}
},
{
"prompt": "There was a big red",
"output": " balloon and a loud horn. It was so loud that everyone was coming out of the tower. The little boy was scared and he jumped out of the hospital! The doctor was very kind and he said, \"Don't worry, I'll protect you.\"",
"metrics": {
"ttft_ms": 1.7976870003622025,
"tps": 532.932739273914,
"total_latency_ms": 127.59583900333382,
"tokens_generated": 68,
"perplexity": 3.312998386807566,
"avg_token_prob": 0.535603261910433,
"repetition_rate": 0.05172413793103448,
"coherence_length": 33,
"unique_tokens": 0.7941176470588235
}
},
{
"prompt": "A little boy went to the",
"output": " park. He saw a big tree with a ladder leaning against it. This time, he was more careful.",
"metrics": {
"ttft_ms": 1.7666159983491525,
"tps": 536.0886670529558,
"total_latency_ms": 55.96089200116694,
"tokens_generated": 30,
"perplexity": 2.536932104187527,
"avg_token_prob": 0.5963349441486981,
"repetition_rate": 0.05,
"coherence_length": 30,
"unique_tokens": 0.9
}
},
{
"prompt": "Once there was a happy",
"output": " little sheep named Susie. Susie loved to play outside in the garden. She would splash in the puddles and make a wet vast. One day, she was playing in the garden and she missed it. She started to dig very deep.",
"metrics": {
"ttft_ms": 1.7611259972909465,
"tps": 543.922980828056,
"total_latency_ms": 115.82522199023515,
"tokens_generated": 63,
"perplexity": 4.005707479277669,
"avg_token_prob": 0.48993039558604323,
"repetition_rate": 0.09433962264150944,
"coherence_length": 8,
"unique_tokens": 0.7142857142857143
}
},
{
"prompt": "In a small house lived a",
"output": " family. They were very nice and helped each other. They were happy.",
"metrics": {
"ttft_ms": 1.7916960059665143,
"tps": 521.8877095286982,
"total_latency_ms": 30.65793600399047,
"tokens_generated": 16,
"perplexity": 3.2398434446223243,
"avg_token_prob": 0.4386487565934658,
"repetition_rate": 0.6666666666666666,
"coherence_length": 11,
"unique_tokens": 0.75
}
},
{
"prompt": "One morning the sun was",
"output": " bright. So, the sun started to set and the sky grew bigger and stronger.",
"metrics": {
"ttft_ms": 1.7571960052009672,
"tps": 530.839419329851,
"total_latency_ms": 39.55998600577004,
"tokens_generated": 21,
"perplexity": 3.8001400387820374,
"avg_token_prob": 0.4598751858046109,
"repetition_rate": 0.18181818181818182,
"coherence_length": 21,
"unique_tokens": 0.8571428571428571
}
},
{
"prompt": "There was a very old",
"output": " castle in the field and it was a special place with lots of trees and lovely fields. Everyone said it was so cool.",
"metrics": {
"ttft_ms": 1.7828059935709462,
"tps": 539.257980986685,
"total_latency_ms": 66.75840000389144,
"tokens_generated": 36,
"perplexity": 4.268847723236579,
"avg_token_prob": 0.47840580741900046,
"repetition_rate": 0.038461538461538464,
"coherence_length": 22,
"unique_tokens": 0.7777777777777778
}
},
{
"prompt": "A tiny cat found a",
"output": " marble. The cat looked at the marble and said, \"I can help you find a new marble. I look like a colorful butterfly.\" The cat looked at the marble and said, \"Okay, I will help you. But you have to be careful and not go near the marble.\"",
"metrics": {
"ttft_ms": 1.761366002028808,
"tps": 552.9496101146923,
"total_latency_ms": 132.01926299370825,
"tokens_generated": 73,
"perplexity": 2.7886169056534564,
"avg_token_prob": 0.6157592570014311,
"repetition_rate": 0.07936507936507936,
"coherence_length": 9,
"unique_tokens": 0.5616438356164384
}
},
{
"prompt": "Once upon a time in a",
"output": " small village, there lived a girl named Mia. Mia was a good friend and wanted to build for her toy. But she had no less.",
"metrics": {
"ttft_ms": 1.7491550097474828,
"tps": 554.4380548201495,
"total_latency_ms": 59.51972400362138,
"tokens_generated": 33,
"perplexity": 6.446868836800261,
"avg_token_prob": 0.40827144770874463,
"repetition_rate": 0.13043478260869565,
"coherence_length": 33,
"unique_tokens": 0.8787878787878788
}
},
{
"prompt": "The little girl loved to",
"output": " have wisdom.",
"metrics": {
"ttft_ms": 1.7420649965060875,
"tps": 496.0377741704646,
"total_latency_ms": 12.095853002392687,
"tokens_generated": 6,
"perplexity": 6.7572343922868585,
"avg_token_prob": 0.4828842614577817,
"repetition_rate": 0.0,
"coherence_length": 6,
"unique_tokens": 1.0
}
},
{
"prompt": "One day it started to",
"output": " rain. The rain was so wet that the rain felt so cold. Suddenly, a hurricane started to glow and the sky was soft. The tree was not dry. It looked like a painting.",
"metrics": {
"ttft_ms": 1.7103639984270558,
"tps": 558.5551831235884,
"total_latency_ms": 89.51666999200825,
"tokens_generated": 50,
"perplexity": 5.328778310161702,
"avg_token_prob": 0.43690161412472234,
"repetition_rate": 0.125,
"coherence_length": 50,
"unique_tokens": 0.74
}
},
{
"prompt": "There was a friendly",
"output": " bear who was always very reliable.",
"metrics": {
"ttft_ms": 1.7023639957187697,
"tps": 525.4967612237893,
"total_latency_ms": 19.029613002203405,
"tokens_generated": 10,
"perplexity": 4.893910074164215,
"avg_token_prob": 0.414623679169877,
"repetition_rate": 0.0,
"coherence_length": 10,
"unique_tokens": 1.0
}
},
{
"prompt": "A boy named Tom had a",
"output": " pipe that he used to paint. He loved to paint and create beautiful pictures. One day, Tom went for a walk in the forest. He saw a bird and wanted to paint it.",
"metrics": {
"ttft_ms": 1.699793996522203,
"tps": 557.3071491494773,
"total_latency_ms": 87.92279100453015,
"tokens_generated": 49,
"perplexity": 2.6016226025870095,
"avg_token_prob": 0.6079315635934472,
"repetition_rate": 0.1282051282051282,
"coherence_length": 14,
"unique_tokens": 0.6938775510204082
}
},
{
"prompt": "Once there was a magic",
"output": "al wand. A magical wand and a princess was always ready for some adventure and the wand was always gentle.",
"metrics": {
"ttft_ms": 1.7259449959965423,
"tps": 553.8352630671163,
"total_latency_ms": 59.58450499747414,
"tokens_generated": 33,
"perplexity": 5.837290962569007,
"avg_token_prob": 0.4336578726549359,
"repetition_rate": 0.0,
"coherence_length": 7,
"unique_tokens": 0.7272727272727273
}
},
{
"prompt": "In the park there was a",
"output": " kind man who had a hat. He said to the children: \"Friend today!\" and the children all smiled. They were so proud of themselves.",
"metrics": {
"ttft_ms": 1.6988040006253868,
"tps": 555.1051831715544,
"total_latency_ms": 73.8598760071909,
"tokens_generated": 41,
"perplexity": 4.418921638305482,
"avg_token_prob": 0.4695770603637876,
"repetition_rate": 0.06451612903225806,
"coherence_length": 24,
"unique_tokens": 0.8048780487804879
}
},
{
"prompt": "A small dog was playing in the",
"output": " park.",
"metrics": {
"ttft_ms": 1.7185350006911904,
"tps": 387.0318022404046,
"total_latency_ms": 5.167534007341601,
"tokens_generated": 2,
"perplexity": 4.160841246607168,
"avg_token_prob": 0.4866570842762788,
"repetition_rate": 0.0,
"coherence_length": 2,
"unique_tokens": 1.0
}
},
{
"prompt": "One day the wind was very",
"output": " strong and it wouldn't fly away. It blew so hard that it flew away into the sky. Everyone looked for it and it made it float away, but the wind carrifted and the leaves came to a big, deep pond. Everyone in the pond was so excited! The duck was swimming and swimming close to the water. But then one day, a new person came along. The old swan was able to fly away and it started to float away. The people were happy and proud of the children.",
"metrics": {
"ttft_ms": 1.715045000310056,
"tps": 550.64320633383,
"total_latency_ms": 241.53571399801876,
"tokens_generated": 133,
"perplexity": 4.474801862537477,
"avg_token_prob": 0.4741125295187152,
"repetition_rate": 0.10569105691056911,
"coherence_length": 57,
"unique_tokens": 0.6090225563909775
}
},
{
"prompt": "There was a girl who liked to",
"output": " play. She looked and looked but there was nothing to match. She asked her mom, \"Mommy, can I play with you?\"",
"metrics": {
"ttft_ms": 1.7466749995946884,
"tps": 549.7729784388329,
"total_latency_ms": 56.38691099011339,
"tokens_generated": 31,
"perplexity": 3.3187276735423232,
"avg_token_prob": 0.5273471583932405,
"repetition_rate": 0.047619047619047616,
"coherence_length": 31,
"unique_tokens": 0.8387096774193549
}
},
{
"prompt": "A baby bird fell from the",
"output": " tree. It wanted to see the ostrich. It flew to the tree and got closer. It tried to catch the ostrich's feathers, but it was too fast. The ostrich could not catch it.",
"metrics": {
"ttft_ms": 1.7296650039497763,
"tps": 557.8867933917643,
"total_latency_ms": 96.79383100592531,
"tokens_generated": 54,
"perplexity": 2.938318128607031,
"avg_token_prob": 0.6113005717189729,
"repetition_rate": 0.20454545454545456,
"coherence_length": 26,
"unique_tokens": 0.5740740740740741
}
},
{
"prompt": "Once upon a time a king",
"output": "dom. It was a happy king of the king and queen and always followed the person.",
"metrics": {
"ttft_ms": 1.7302449996350333,
"tps": 548.7929137117887,
"total_latency_ms": 49.198886001249775,
"tokens_generated": 27,
"perplexity": 3.400789130418742,
"avg_token_prob": 0.5600067071333926,
"repetition_rate": 0.17647058823529413,
"coherence_length": 27,
"unique_tokens": 0.8148148148148148
}
},
{
"prompt": "The flowers in the garden were",
"output": " very happy that they had found something. They decided to never take the purple flower anymore, and they had lots of fun together. And they all lived happily ever after.",
"metrics": {
"ttft_ms": 1.6997740021906793,
"tps": 556.1477447175932,
"total_latency_ms": 71.92333400598727,
"tokens_generated": 40,
"perplexity": 3.9164112572595826,
"avg_token_prob": 0.5131933435104878,
"repetition_rate": 0.06666666666666667,
"coherence_length": 40,
"unique_tokens": 0.875
}
},
{
"prompt": "One night the stars were",
"output": " so bright. They looked up and saw a beautiful light shone. It was bright and warm. They wanted to get closer and take a closer look.",
"metrics": {
"ttft_ms": 1.7110339977080002,
"tps": 552.151448973758,
"total_latency_ms": 59.766210993984714,
"tokens_generated": 33,
"perplexity": 3.6044282383002773,
"avg_token_prob": 0.4455016242778477,
"repetition_rate": 0.13043478260869565,
"coherence_length": 33,
"unique_tokens": 0.7272727272727273
}
},
{
"prompt": "There was a fish who wanted to",
"output": " help him. She showed him how to balancely and practice.",
"metrics": {
"ttft_ms": 1.7006139969453216,
"tps": 542.3654808723353,
"total_latency_ms": 35.03172799537424,
"tokens_generated": 19,
"perplexity": 4.289401556676192,
"avg_token_prob": 0.5387473048525863,
"repetition_rate": 0.0,
"coherence_length": 19,
"unique_tokens": 0.8947368421052632
}
},
{
"prompt": "A little bear went to find",
"output": " his mom. She looked in the garden, under the bushes, and even in the bushes. She was very happy to see the little bear.",
"metrics": {
"ttft_ms": 1.703834001091309,
"tps": 554.7889194880229,
"total_latency_ms": 59.48208199697547,
"tokens_generated": 33,
"perplexity": 2.4961508680611324,
"avg_token_prob": 0.5294938058975864,
"repetition_rate": 0.30434782608695654,
"coherence_length": 18,
"unique_tokens": 0.6666666666666666
}
},
{
"prompt": "Once there was a cloud that",
"output": " was very long. Every day the weather would go out and play. It was so happy when it got a chance.",
"metrics": {
"ttft_ms": 1.744815002894029,
"tps": 549.7619804895977,
"total_latency_ms": 50.93113200564403,
"tokens_generated": 28,
"perplexity": 4.7070486066191455,
"avg_token_prob": 0.43902413914750876,
"repetition_rate": 0.0,
"coherence_length": 28,
"unique_tokens": 0.8928571428571429
}
},
{
"prompt": "The rabbit was looking for",
"output": " a new and exciting place to explore.",
"metrics": {
"ttft_ms": 1.719474996207282,
"tps": 526.1509380888247,
"total_latency_ms": 19.005952999577858,
"tokens_generated": 10,
"perplexity": 2.724612431036915,
"avg_token_prob": 0.5593056423081593,
"repetition_rate": 0.0,
"coherence_length": 10,
"unique_tokens": 1.0
}
},
{
"prompt": "One day a new friend came to",
"output": " the garden. This is a big pale crocodile. It has a long tail and big teeth. It is a small shovel. It has a round head and long tail. It is cool.",
"metrics": {
"ttft_ms": 1.7278449959121644,
"tps": 557.6675552714936,
"total_latency_ms": 98.62506699573714,
"tokens_generated": 55,
"perplexity": 3.3461725522066645,
"avg_token_prob": 0.5402017459855415,
"repetition_rate": 0.08888888888888889,
"coherence_length": 38,
"unique_tokens": 0.6181818181818182
}
},
{
"prompt": "There was a tree that could",
"output": " be found.",
"metrics": {
"ttft_ms": 1.750815994455479,
"tps": 431.0437104545198,
"total_latency_ms": 6.959851001738571,
"tokens_generated": 3,
"perplexity": 5.3250645345535546,
"avg_token_prob": 0.2664560042321682,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "A kitten and a puppy were",
"output": " the best of friends. Everyday they would go outside and play together. Every day they would play and pet the kitten and take care of everyone. They would have so much fun together.",
"metrics": {
"ttft_ms": 1.7028239963110536,
"tps": 554.985717628915,
"total_latency_ms": 73.87577499321196,
"tokens_generated": 41,
"perplexity": 3.644209741718878,
"avg_token_prob": 0.5396090314104749,
"repetition_rate": 0.25806451612903225,
"coherence_length": 41,
"unique_tokens": 0.6829268292682927
}
},
{
"prompt": "Lily was a girl who",
"output": " liked to bounce. She had a ball, a swing, and a doll. She wanted to play with her doll, but she was afraid of the dog. She wanted to try to balance on the ball, but she was too slow. She did not know how to balance on the ball.",
"metrics": {
"ttft_ms": 1.7296450096182525,
"tps": 560.3456666513108,
"total_latency_ms": 130.27672799944412,
"tokens_generated": 73,
"perplexity": 2.470941036802686,
"avg_token_prob": 0.6194580317242071,
"repetition_rate": 0.07936507936507936,
"coherence_length": 38,
"unique_tokens": 0.547945205479452
}
},
{
"prompt": "Tom was a boy who loved",
"output": " to ride his bike. He was very happy. He said, \"I want to go first like you. Can I go?\"",
"metrics": {
"ttft_ms": 1.7103540012612939,
"tps": 551.6684974000459,
"total_latency_ms": 56.19316699448973,
"tokens_generated": 31,
"perplexity": 3.179664339276028,
"avg_token_prob": 0.5167140068951994,
"repetition_rate": 0.14285714285714285,
"coherence_length": 31,
"unique_tokens": 0.8387096774193549
}
},
{
"prompt": "The old man had a",
"output": " very important job, he needed to borrow some things from his neighbor. He was so excited to find a place to use the old man's later. He sat next to the old man and watched the old man.",
"metrics": {
"ttft_ms": 1.7064949934137985,
"tps": 559.0731378785766,
"total_latency_ms": 96.58843600482214,
"tokens_generated": 54,
"perplexity": 4.518824117805477,
"avg_token_prob": 0.43221353906291454,
"repetition_rate": 0.13636363636363635,
"coherence_length": 45,
"unique_tokens": 0.7407407407407407
}
},
{
"prompt": "A brave knight went to",
"output": " the door. He opened it and saw a very big, shiny box. Inside the box, he found lots of toys, and even a toy car. The knight was very happy and he played with the toys all day.",
"metrics": {
"ttft_ms": 1.7250749951926991,
"tps": 549.5584606668868,
"total_latency_ms": 87.34284600359388,
"tokens_generated": 48,
"perplexity": 2.7747799264206843,
"avg_token_prob": 0.5271619638827231,
"repetition_rate": 0.07894736842105263,
"coherence_length": 48,
"unique_tokens": 0.7083333333333334
}
},
{
"prompt": "The princess wanted to",
"output": " play. She started to push the button. The little girl did not know what to do. She got frustrated and tried to fix the button. She pushed and pushed, but she could not reach it.",
"metrics": {
"ttft_ms": 1.7220139998244122,
"tps": 557.832894807536,
"total_latency_ms": 102.18113799055573,
"tokens_generated": 57,
"perplexity": 2.920851067305807,
"avg_token_prob": 0.6079175990106988,
"repetition_rate": 0.0851063829787234,
"coherence_length": 35,
"unique_tokens": 0.6491228070175439
}
},
{
"prompt": "A wise owl told the",
"output": " monkey what he saw and asked for help to fix the wire. The wise owl took the wire and the broken wing of the gas came back. The wise old owl was so happy and grateful that he gave the wise old owl a big hug.",
"metrics": {
"ttft_ms": 1.7139150004368275,
"tps": 559.3016608427142,
"total_latency_ms": 123.36812999274116,
"tokens_generated": 69,
"perplexity": 3.0973903558027196,
"avg_token_prob": 0.5544383220840245,
"repetition_rate": 0.1016949152542373,
"coherence_length": 25,
"unique_tokens": 0.6521739130434783
}
},
{
"prompt": "The farmer had many",
"output": " friends who helped him a lot.",
"metrics": {
"ttft_ms": 1.6988640127237886,
"tps": 515.9482505933072,
"total_latency_ms": 15.505431001656689,
"tokens_generated": 8,
"perplexity": 5.362230501685009,
"avg_token_prob": 0.47616867446858024,
"repetition_rate": 0.0,
"coherence_length": 8,
"unique_tokens": 1.0
}
},
{
"prompt": "A young fox was very",
"output": " kind and helpful. One day, the fox decided to take a walk in the forest. He found a big box and put the fox in it.",
"metrics": {
"ttft_ms": 1.6974440077319741,
"tps": 552.9588921458852,
"total_latency_ms": 59.67893901106436,
"tokens_generated": 33,
"perplexity": 2.982443557678019,
"avg_token_prob": 0.5600513479097143,
"repetition_rate": 0.13043478260869565,
"coherence_length": 27,
"unique_tokens": 0.7272727272727273
}
},
{
"prompt": "The teacher said to the",
"output": " little girl, \"I know why you're here, but you have to be very obedient and listen to me. That would be important to me.\"",
"metrics": {
"ttft_ms": 1.7001539963530377,
"tps": 554.9008293782525,
"total_latency_ms": 68.48070499836467,
"tokens_generated": 38,
"perplexity": 3.2644463229700706,
"avg_token_prob": 0.5343270023854879,
"repetition_rate": 0.17857142857142858,
"coherence_length": 38,
"unique_tokens": 0.8157894736842105
}
},
{
"prompt": "Mom told her that",
"output": " it was important to be careful and not touch things that they don't know.",
"metrics": {
"ttft_ms": 1.8194570002378896,
"tps": 540.6957004529305,
"total_latency_ms": 31.44097499898635,
"tokens_generated": 17,
"perplexity": 2.0607025176540343,
"avg_token_prob": 0.5996898385799594,
"repetition_rate": 0.0,
"coherence_length": 17,
"unique_tokens": 0.9411764705882353
}
},
{
"prompt": "Dad was going to",
"output": " get my laundry. Then it's time for dinner!\"",
"metrics": {
"ttft_ms": 1.7102240090025589,
"tps": 540.9507126169723,
"total_latency_ms": 29.577556008007377,
"tokens_generated": 16,
"perplexity": 5.480728062165653,
"avg_token_prob": 0.478305448038394,
"repetition_rate": 0.0,
"coherence_length": 16,
"unique_tokens": 1.0
}
},
{
"prompt": "The baby was crying because",
"output": " the baby was very sad and didn't know what to do. But then the baby had an idea. He told the baby about why he wanted to make sure the baby was happy and he took his baby to the baby. She said, \"Don't worry, baby. Maybe if you need help, the baby will, then we can go to the park and play on the swings.\" So the mommy set off on her baby's bike and they both went to the park.",
"metrics": {
"ttft_ms": 1.7028840084094554,
"tps": 560.353303544661,
"total_latency_ms": 219.5043720130343,
"tokens_generated": 123,
"perplexity": 2.798766250849196,
"avg_token_prob": 0.6022607577169472,
"repetition_rate": 0.1415929203539823,
"coherence_length": 17,
"unique_tokens": 0.5528455284552846
}
},
{
"prompt": "A kind woman gave the",
"output": " bird a big hug. The bird was very happy and thanked Lily for teaching her how to fly. From that day on, Lily wasn't so fearful anymore and loved to fly high in the sky.",
"metrics": {
"ttft_ms": 1.7022940010065213,
"tps": 557.3382737926574,
"total_latency_ms": 84.32939600606915,
"tokens_generated": 47,
"perplexity": 2.0541861881528765,
"avg_token_prob": 0.6722163072505888,
"repetition_rate": 0.0,
"coherence_length": 47,
"unique_tokens": 0.8297872340425532
}
},
{
"prompt": "The big bear was",
"output": " so happy that he shouted, \"I'm so perfect!\"",
"metrics": {
"ttft_ms": 1.7140550044132397,
"tps": 541.4339430508566,
"total_latency_ms": 29.551158004323952,
"tokens_generated": 16,
"perplexity": 2.89523540607224,
"avg_token_prob": 0.5573813858825494,
"repetition_rate": 0.16666666666666666,
"coherence_length": 16,
"unique_tokens": 0.9375
}
},
{
"prompt": "A clever mouse found",
"output": " the piano.",
"metrics": {
"ttft_ms": 1.711554010398686,
"tps": 496.3332140589346,
"total_latency_ms": 12.088653005775996,
"tokens_generated": 6,
"perplexity": 3.91177663759019,
"avg_token_prob": 0.3259270020893642,
"repetition_rate": 0.0,
"coherence_length": 6,
"unique_tokens": 1.0
}
},
{
"prompt": "The old cat always",
"output": " smiled and never felt as ever after.",
"metrics": {
"ttft_ms": 1.6936540050664917,
"tps": 516.9795138170311,
"total_latency_ms": 15.474500993150286,
"tokens_generated": 8,
"perplexity": 7.958251531327771,
"avg_token_prob": 0.3050040165997214,
"repetition_rate": 0.0,
"coherence_length": 8,
"unique_tokens": 1.0
}
},
{
"prompt": "A tall giraffe could",
"output": " see a long sticky crow at the doctor's.\"",
"metrics": {
"ttft_ms": 1.6940740024438128,
"tps": 535.6303828272249,
"total_latency_ms": 28.00438601116184,
"tokens_generated": 15,
"perplexity": 17.29670690345053,
"avg_token_prob": 0.31093290279386565,
"repetition_rate": 0.0,
"coherence_length": 15,
"unique_tokens": 1.0
}
},
{
"prompt": "The little duck went",
"output": " to the frog and said, \"Duck, you are so wet! You made me sad. Can you help me clean it up?\"",
"metrics": {
"ttft_ms": 1.695842991466634,
"tps": 554.7430495970535,
"total_latency_ms": 57.68436400103383,
"tokens_generated": 32,
"perplexity": 3.0154546573450443,
"avg_token_prob": 0.5084394461362425,
"repetition_rate": 0.09090909090909091,
"coherence_length": 32,
"unique_tokens": 0.90625
}
},
{
"prompt": "A strong lion was",
"output": " given the little mouse to a friend. The lion and the mouse became friends. They all lived happily together.",
"metrics": {
"ttft_ms": 1.7167939950013533,
"tps": 552.3149243765988,
"total_latency_ms": 50.69571500644088,
"tokens_generated": 28,
"perplexity": 3.3802643994383406,
"avg_token_prob": 0.475534137065426,
"repetition_rate": 0.1111111111111111,
"coherence_length": 28,
"unique_tokens": 0.8214285714285714
}
},
{
"prompt": "The funny monkey liked to",
"output": " climb. At the end of the day, the boy thanked the monkey for his help. He was so happy that he ran home.",
"metrics": {
"ttft_ms": 1.7084739956771955,
"tps": 553.0030895586365,
"total_latency_ms": 56.05755299620796,
"tokens_generated": 31,
"perplexity": 2.9575888286639236,
"avg_token_prob": 0.5799636099545751,
"repetition_rate": 0.14285714285714285,
"coherence_length": 31,
"unique_tokens": 0.8387096774193549
}
},
{
"prompt": "The dog ran to the",
"output": " fridge and licked it. It licked Mia's face and wagged its tail. It licked her finger and licked her finger. Mia laughed and said, \"That's better. I'm happy to see you.\"",
"metrics": {
"ttft_ms": 1.7270649987040088,
"tps": 560.7175412753306,
"total_latency_ms": 105.22231900540646,
"tokens_generated": 59,
"perplexity": 2.278070441624472,
"avg_token_prob": 0.644404270259353,
"repetition_rate": 0.22448979591836735,
"coherence_length": 10,
"unique_tokens": 0.6271186440677966
}
},
{
"prompt": "She picked up the",
"output": " map and opened it. It was a big green veil. It was pink and shiny. It had flowers and stars and houses and cars. It was very beautiful.",
"metrics": {
"ttft_ms": 1.7231149977305904,
"tps": 557.5356701335535,
"total_latency_ms": 75.33150298695546,
"tokens_generated": 42,
"perplexity": 3.645512140536825,
"avg_token_prob": 0.4931632576044649,
"repetition_rate": 0.28125,
"coherence_length": 15,
"unique_tokens": 0.6904761904761905
}
},
{
"prompt": "He walked to the big",
"output": " tree and looked at the calendar. He saw the calendar, shaped like a ball. He picked it up and tried to attach it to his mouth. But the cale was too strong and he could not open it. He tried to grab it but it was too hard. He was sad.",
"metrics": {
"ttft_ms": 1.7226350028067827,
"tps": 561.5625134010361,
"total_latency_ms": 135.3366690018447,
"tokens_generated": 76,
"perplexity": 2.6798988424010997,
"avg_token_prob": 0.583504012986933,
"repetition_rate": 0.18181818181818182,
"coherence_length": 13,
"unique_tokens": 0.5921052631578947
}
},
{
"prompt": "They went to play in the",
"output": " mud, but they had to be careful when they played inside. They were very happy and clean. They did not have fun anymore.",
"metrics": {
"ttft_ms": 1.713284000288695,
"tps": 552.1230983568431,
"total_latency_ms": 54.335708991857246,
"tokens_generated": 30,
"perplexity": 3.9563402056478774,
"avg_token_prob": 0.49281571794586676,
"repetition_rate": 0.2,
"coherence_length": 30,
"unique_tokens": 0.8666666666666667
}
},
{
"prompt": "The cat jumped on the",
"output": " slide. The cat grabbed the red ball and hitly popped her finger with her nose. Lily was scared and ran away.",
"metrics": {
"ttft_ms": 1.70606400934048,
"tps": 553.7055933618709,
"total_latency_ms": 55.986431005294435,
"tokens_generated": 31,
"perplexity": 6.277601354382264,
"avg_token_prob": 0.43463749361580994,
"repetition_rate": 0.09523809523809523,
"coherence_length": 31,
"unique_tokens": 0.8709677419354839
}
},
{
"prompt": "She opened the door and",
"output": " said, \"I'm sorry, Timmy. I was just playing with my cars. I was just playing. It was fun.\"",
"metrics": {
"ttft_ms": 1.7013149918057024,
"tps": 551.3991857228443,
"total_latency_ms": 48.96633999305777,
"tokens_generated": 27,
"perplexity": 3.2365593925528255,
"avg_token_prob": 0.4805196920808937,
"repetition_rate": 0.4117647058823529,
"coherence_length": 17,
"unique_tokens": 0.7037037037037037
}
},
{
"prompt": "He found a box with",
"output": " a lid on it. He pressed a button and the box came loose. It started to make a loud noise. The box started to shake. Tom was scared. He ran out of the room and backed away.",
"metrics": {
"ttft_ms": 1.701154003967531,
"tps": 558.5366613725956,
"total_latency_ms": 93.10042401193641,
"tokens_generated": 52,
"perplexity": 3.125619446093032,
"avg_token_prob": 0.5407551691146955,
"repetition_rate": 0.11904761904761904,
"coherence_length": 52,
"unique_tokens": 0.7307692307692307
}
},
{
"prompt": "They ran as fast as",
"output": " they could into the pond. They saw a big splash and a frog jumped out. They had fun in the pond from the shore.",
"metrics": {
"ttft_ms": 1.7529960023239255,
"tps": 555.3027470964157,
"total_latency_ms": 64.8295010032598,
"tokens_generated": 36,
"perplexity": 3.4427456856393555,
"avg_token_prob": 0.5687186874144843,
"repetition_rate": 0.07692307692307693,
"coherence_length": 28,
"unique_tokens": 0.7777777777777778
}
},
{
"prompt": "The bird flew to the",
"output": " carousel and found the rich man and it was able to take a nap.",
"metrics": {
"ttft_ms": 1.6953539889073,
"tps": 546.5983273270685,
"total_latency_ms": 38.419436998083256,
"tokens_generated": 21,
"perplexity": 7.622250594766832,
"avg_token_prob": 0.34683900423855946,
"repetition_rate": 0.18181818181818182,
"coherence_length": 21,
"unique_tokens": 0.9047619047619048
}
},
{
"prompt": "She gave her friend a",
"output": " hug. She said, \"Okay, let's go home. But we must wave at the passport.\"",
"metrics": {
"ttft_ms": 1.7214550025528297,
"tps": 551.1411012195666,
"total_latency_ms": 50.803687001462094,
"tokens_generated": 28,
"perplexity": 3.519092291594512,
"avg_token_prob": 0.49865971535347914,
"repetition_rate": 0.0,
"coherence_length": 28,
"unique_tokens": 0.9285714285714286
}
},
{
"prompt": "He tried to climb the",
"output": " tree, but the hurricane was too strong. They were too full and the cat was too strong.",
"metrics": {
"ttft_ms": 1.7114240035880357,
"tps": 550.549385461874,
"total_latency_ms": 45.4091870051343,
"tokens_generated": 25,
"perplexity": 3.735152609374138,
"avg_token_prob": 0.5556484692228528,
"repetition_rate": 0.13333333333333333,
"coherence_length": 21,
"unique_tokens": 0.76
}
},
{
"prompt": "They built a house with",
"output": " a door and a key for a door and a window. They add a flag and some stickers. They make a house with stickers and a door and a window. They are happy and excited.",
"metrics": {
"ttft_ms": 1.7390150023857132,
"tps": 557.8038892103336,
"total_latency_ms": 82.46625900210347,
"tokens_generated": 46,
"perplexity": 2.7056331124890924,
"avg_token_prob": 0.5855451353207637,
"repetition_rate": 0.3055555555555556,
"coherence_length": 7,
"unique_tokens": 0.4782608695652174
}
},
{
"prompt": "The fish swam to the",
"output": " water and was surprised to see the water swimming towards the shark.",
"metrics": {
"ttft_ms": 1.714333993731998,
"tps": 544.9784177604785,
"total_latency_ms": 36.698700991109945,
"tokens_generated": 20,
"perplexity": 3.5578849666358274,
"avg_token_prob": 0.5081398059569654,
"repetition_rate": 0.1,
"coherence_length": 20,
"unique_tokens": 0.9
}
},
{
"prompt": "She put the ball in the",
"output": " park. She put the ball on her doll. She wanted to play with her doll. She looked in the window and saw a big, black rock. She was very happy.",
"metrics": {
"ttft_ms": 1.7361350037390366,
"tps": 556.3223531889365,
"total_latency_ms": 68.30572200124152,
"tokens_generated": 38,
"perplexity": 3.5313151188299905,
"avg_token_prob": 0.5075226852383751,
"repetition_rate": 0.21428571428571427,
"coherence_length": 15,
"unique_tokens": 0.7368421052631579
}
},
{
"prompt": "He looked under the",
"output": " slide, but he could not find it anywhere.",
"metrics": {
"ttft_ms": 1.7238750006072223,
"tps": 535.2717065797781,
"total_latency_ms": 22.418521009967662,
"tokens_generated": 12,
"perplexity": 2.419164152704352,
"avg_token_prob": 0.6026948613043015,
"repetition_rate": 0.0,
"coherence_length": 12,
"unique_tokens": 1.0
}
},
{
"prompt": "They shared the cake and",
"output": " it was the best crowd!",
"metrics": {
"ttft_ms": 1.7131050117313862,
"tps": 521.3541441327061,
"total_latency_ms": 17.262738008867018,
"tokens_generated": 9,
"perplexity": 5.00093034478911,
"avg_token_prob": 0.36363627929240466,
"repetition_rate": 0.0,
"coherence_length": 9,
"unique_tokens": 1.0
}
},
{
"prompt": "The frog jumped into the",
"output": " pond, but then he remembered his mom had said. He ran to the pond and jumped in.",
"metrics": {
"ttft_ms": 1.7065949941752478,
"tps": 548.3425034904071,
"total_latency_ms": 43.76826499355957,
"tokens_generated": 24,
"perplexity": 3.175714517780913,
"avg_token_prob": 0.47809472247958185,
"repetition_rate": 0.0,
"coherence_length": 24,
"unique_tokens": 0.8333333333333334
}
},
{
"prompt": "She drew a picture of",
"output": " her plane and her toys. She looked at the paper and saw the picture of a flower. It was about a butterfly! Sara was so happy. She ran to her mom and said, \"Look, mom, I found a butterfly!\"",
"metrics": {
"ttft_ms": 1.7098849930334836,
"tps": 560.7271734624948,
"total_latency_ms": 103.43711299356073,
"tokens_generated": 58,
"perplexity": 3.064994098639911,
"avg_token_prob": 0.5467656834398286,
"repetition_rate": 0.14583333333333334,
"coherence_length": 52,
"unique_tokens": 0.6724137931034483
}
},
{
"prompt": "He made a wish and",
"output": " shared it with all their friends.",
"metrics": {
"ttft_ms": 1.7111240013036877,
"tps": 515.071905519623,
"total_latency_ms": 15.531811994151212,
"tokens_generated": 8,
"perplexity": 3.30097837757511,
"avg_token_prob": 0.5130411918378539,
"repetition_rate": 0.0,
"coherence_length": 8,
"unique_tokens": 1.0
}
},
{
"prompt": "They danced in the",
"output": " rain, clapped their hands and cheered. They forgot all about the poor bug! They only saw the bird and the cloud. They were very happy and their special feathers.",
"metrics": {
"ttft_ms": 1.7043840052792802,
"tps": 557.7834017582576,
"total_latency_ms": 82.46928799781017,
"tokens_generated": 46,
"perplexity": 5.049033925273963,
"avg_token_prob": 0.4711160437659697,
"repetition_rate": 0.08333333333333333,
"coherence_length": 46,
"unique_tokens": 0.782608695652174
}
},
{
"prompt": "She was very happy because",
"output": " she had her mom forgotten to keep her for everything she needed. She learnt that sometimes it is important to listen to music, even if it feels old and makes you feel important inside.",
"metrics": {
"ttft_ms": 1.6994449979392812,
"tps": 559.5755318231041,
"total_latency_ms": 92.92758000083268,
"tokens_generated": 52,
"perplexity": 5.128966190425016,
"avg_token_prob": 0.49602994913859116,
"repetition_rate": 0.11904761904761904,
"coherence_length": 52,
"unique_tokens": 0.7884615384615384
}
},
{
"prompt": "He was sad because his",
"output": " toy car was broken. His mommy came in and saw what happened. She hugged Timmy and told him not to worry.",
"metrics": {
"ttft_ms": 1.715384001727216,
"tps": 552.2052474279465,
"total_latency_ms": 50.70578400045633,
"tokens_generated": 28,
"perplexity": 2.4358200502058667,
"avg_token_prob": 0.6362584229430248,
"repetition_rate": 0.1111111111111111,
"coherence_length": 28,
"unique_tokens": 0.8928571428571429
}
},
{
"prompt": "The girl felt scared when",
"output": " she looked down at the cloud. It was a huge giraffe!",
"metrics": {
"ttft_ms": 1.714183992589824,
"tps": 545.1136956598355,
"total_latency_ms": 34.85511399048846,
"tokens_generated": 19,
"perplexity": 5.319100956558631,
"avg_token_prob": 0.472662806417793,
"repetition_rate": 0.0,
"coherence_length": 19,
"unique_tokens": 1.0
}
},
{
"prompt": "They were excited to",
"output": " see what they could find.",
"metrics": {
"ttft_ms": 1.6929239936871454,
"tps": 498.1861045200376,
"total_latency_ms": 12.043691996950656,
"tokens_generated": 6,
"perplexity": 1.9265738077001073,
"avg_token_prob": 0.5581509087766919,
"repetition_rate": 0.0,
"coherence_length": 6,
"unique_tokens": 1.0
}
},
{
"prompt": "He was angry because",
"output": " all the patients had worked together.",
"metrics": {
"ttft_ms": 1.695943996310234,
"tps": 535.1117832245193,
"total_latency_ms": 22.425221002777107,
"tokens_generated": 12,
"perplexity": 5.477188181689293,
"avg_token_prob": 0.4081131890057944,
"repetition_rate": 0.0,
"coherence_length": 12,
"unique_tokens": 1.0
}
},
{
"prompt": "She felt proud when she",
"output": " saw the sight.",
"metrics": {
"ttft_ms": 1.695974002359435,
"tps": 484.83823544715597,
"total_latency_ms": 10.312718004570343,
"tokens_generated": 5,
"perplexity": 5.8716579068517625,
"avg_token_prob": 0.31037922327717143,
"repetition_rate": 0.0,
"coherence_length": 5,
"unique_tokens": 1.0
}
},
{
"prompt": "The boy was surprised to see",
"output": " that the sun was shining through the rising thing. He ran over and picked up a few of his hand. As he did this, the sun set was full of wonderful, contentment. All the other children began to play with the other children!",
"metrics": {
"ttft_ms": 1.7084849969251081,
"tps": 560.8898561328908,
"total_latency_ms": 128.36744899686892,
"tokens_generated": 72,
"perplexity": 4.281721643152959,
"avg_token_prob": 0.49009927591206887,
"repetition_rate": 0.04838709677419355,
"coherence_length": 65,
"unique_tokens": 0.7361111111111112
}
},
{
"prompt": "They were tired after",
"output": " playing, and they had to take a nap.",
"metrics": {
"ttft_ms": 1.723465000395663,
"tps": 528.4193537164691,
"total_latency_ms": 20.816799995373003,
"tokens_generated": 11,
"perplexity": 3.0518235423301387,
"avg_token_prob": 0.5080324386556944,
"repetition_rate": 0.0,
"coherence_length": 11,
"unique_tokens": 1.0
}
},
{
"prompt": "She was kind to the",
"output": " boy, and he saw that he had found the perfect place to look heaviest. The uncle was also very happy.",
"metrics": {
"ttft_ms": 1.7002639942802489,
"tps": 553.8800013315749,
"total_latency_ms": 57.774246990447864,
"tokens_generated": 32,
"perplexity": 6.674228970911198,
"avg_token_prob": 0.34161416518812376,
"repetition_rate": 0.045454545454545456,
"coherence_length": 32,
"unique_tokens": 0.90625
}
},
{
"prompt": "He was brave and",
"output": " strong. He tried to stand the ball down and take it back to the yard.",
"metrics": {
"ttft_ms": 1.7236349958693609,
"tps": 543.7822407319237,
"total_latency_ms": 34.940457000629976,
"tokens_generated": 19,
"perplexity": 5.282422702787215,
"avg_token_prob": 0.41406108243390916,
"repetition_rate": 0.2222222222222222,
"coherence_length": 19,
"unique_tokens": 0.8421052631578947
}
},
{
"prompt": "The dog was lonely because",
"output": " he had no friends to play with. He sat on a bench and listened to the story. The end.",
"metrics": {
"ttft_ms": 1.699824002571404,
"tps": 548.5562040376368,
"total_latency_ms": 49.22011600865517,
"tokens_generated": 27,
"perplexity": 2.6396735741588078,
"avg_token_prob": 0.6393334636065576,
"repetition_rate": 0.058823529411764705,
"coherence_length": 27,
"unique_tokens": 0.8888888888888888
}
},
{
"prompt": "She was curious about the",
"output": " jewel. She got off the table and put it on her bed. She put away her car and her car. She went to the table and looked at the jewel. It was still dark and cold. It had a flashlight and a scratch on it.",
"metrics": {
"ttft_ms": 1.7087849992094561,
"tps": 560.3669421480987,
"total_latency_ms": 121.34905699349474,
"tokens_generated": 68,
"perplexity": 3.3827913557377873,
"avg_token_prob": 0.5413242641269512,
"repetition_rate": 0.1896551724137931,
"coherence_length": 30,
"unique_tokens": 0.6029411764705882
}
},
{
"prompt": "He felt sorry for the",
"output": " patch. He remembered how he liked to build, how to build the mix and how to make a cake. He tried to make the mix, but it was too hard. He thought and thought, and finally, his family had an idea.",
"metrics": {
"ttft_ms": 1.717723993351683,
"tps": 559.7463558169914,
"total_latency_ms": 107.19140799483284,
"tokens_generated": 60,
"perplexity": 4.12342743751435,
"avg_token_prob": 0.4892715503934954,
"repetition_rate": 0.22,
"coherence_length": 15,
"unique_tokens": 0.6166666666666667
}
},
{
"prompt": "They were grateful for",
"output": " their family for the night they slept well. They were happy.",
"metrics": {
"ttft_ms": 1.7394550086464733,
"tps": 540.2133720119632,
"total_latency_ms": 31.4690470113419,
"tokens_generated": 17,
"perplexity": 6.36898813820913,
"avg_token_prob": 0.38169185002334416,
"repetition_rate": 0.14285714285714285,
"coherence_length": 17,
"unique_tokens": 0.9411764705882353
}
},
{
"prompt": "The cat was sleepy and",
"output": " had a softer.",
"metrics": {
"ttft_ms": 1.7142049910034984,
"tps": 483.197811037622,
"total_latency_ms": 10.347728995839134,
"tokens_generated": 5,
"perplexity": 16.899743120595694,
"avg_token_prob": 0.1627387776049242,
"repetition_rate": 0.0,
"coherence_length": 5,
"unique_tokens": 1.0
}
},
{
"prompt": "Mom said to the boy",
"output": ", \"I don't feel good. The boy is mean.\"",
"metrics": {
"ttft_ms": 1.7178749985760078,
"tps": 535.8248585462375,
"total_latency_ms": 24.26165899669286,
"tokens_generated": 13,
"perplexity": 4.341278691125171,
"avg_token_prob": 0.4489516535374735,
"repetition_rate": 0.0,
"coherence_length": 13,
"unique_tokens": 1.0
}
},
{
"prompt": "Can I have a",
"output": " phone in the jungle?\" He asked the man.",
"metrics": {
"ttft_ms": 1.712383993435651,
"tps": 538.1642206872211,
"total_latency_ms": 27.87253299902659,
"tokens_generated": 15,
"perplexity": 6.50096440679451,
"avg_token_prob": 0.45989282193477266,
"repetition_rate": 0.2,
"coherence_length": 15,
"unique_tokens": 0.9333333333333333
}
},
{
"prompt": "Please help me find my",
"output": " way home.\"",
"metrics": {
"ttft_ms": 1.7144540033768862,
"tps": 434.1201663498982,
"total_latency_ms": 6.910529002198018,
"tokens_generated": 3,
"perplexity": 1.7739344795433123,
"avg_token_prob": 0.5969027727842331,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "Where is the big",
"output": "gest and best of all you have the most orange in their fort.",
"metrics": {
"ttft_ms": 1.6990440053632483,
"tps": 544.1176977419098,
"total_latency_ms": 33.081077999668196,
"tokens_generated": 18,
"perplexity": 7.62921279731722,
"avg_token_prob": 0.37455820605330364,
"repetition_rate": 0.0,
"coherence_length": 18,
"unique_tokens": 1.0
}
},
{
"prompt": "I want to go to the",
"output": " park.\"",
"metrics": {
"ttft_ms": 1.7115450027631596,
"tps": 387.3976451901058,
"total_latency_ms": 5.162653993465938,
"tokens_generated": 2,
"perplexity": 3.2701797317295513,
"avg_token_prob": 0.5022207361956438,
"repetition_rate": 0.0,
"coherence_length": 2,
"unique_tokens": 1.0
}
},
{
"prompt": "Let us play with the",
"output": " chubby toy car!\". The man smiled and let them use the toy car as a reward.",
"metrics": {
"ttft_ms": 1.7174240056192502,
"tps": 548.9240698653142,
"total_latency_ms": 43.72189400601201,
"tokens_generated": 24,
"perplexity": 6.31375633689583,
"avg_token_prob": 0.45945864711422474,
"repetition_rate": 0.0,
"coherence_length": 24,
"unique_tokens": 0.875
}
},
{
"prompt": "Do you want to be my",
"output": " best friend?\"",
"metrics": {
"ttft_ms": 1.7080249963328242,
"tps": 434.08304303457857,
"total_latency_ms": 6.911119999131188,
"tokens_generated": 3,
"perplexity": 3.7722364631445,
"avg_token_prob": 0.6820130101405084,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "Come and see the",
"output": " tough cat!\"",
"metrics": {
"ttft_ms": 1.7034839984262362,
"tps": 485.3635229332557,
"total_latency_ms": 10.30155700573232,
"tokens_generated": 5,
"perplexity": 7.54686790330455,
"avg_token_prob": 0.3167256362115343,
"repetition_rate": 0.0,
"coherence_length": 5,
"unique_tokens": 1.0
}
},
{
"prompt": "I am going to make a",
"output": " card for the iron. I can use it to make it look like a castle.\"",
"metrics": {
"ttft_ms": 1.697464002063498,
"tps": 545.7013061658238,
"total_latency_ms": 40.31509500055108,
"tokens_generated": 22,
"perplexity": 4.091243592811338,
"avg_token_prob": 0.43810203317147883,
"repetition_rate": 0.08333333333333333,
"coherence_length": 22,
"unique_tokens": 0.9090909090909091
}
},
{
"prompt": "Why is the sky so",
"output": " big?\"",
"metrics": {
"ttft_ms": 1.7149839986814186,
"tps": 388.26560392273285,
"total_latency_ms": 5.151113000465557,
"tokens_generated": 2,
"perplexity": 2.3578435071909256,
"avg_token_prob": 0.5287723491589228,
"repetition_rate": 0.0,
"coherence_length": 2,
"unique_tokens": 1.0
}
},
{
"prompt": "What is in the box",
"output": "?\" her mom said, \"It's a new jar that is a card that makes the key go in the box. People from all around the house to see what is in the boxes.\"",
"metrics": {
"ttft_ms": 1.7105150036513805,
"tps": 558.1822614460214,
"total_latency_ms": 82.4103580089286,
"tokens_generated": 46,
"perplexity": 4.767537783245296,
"avg_token_prob": 0.44936049508644227,
"repetition_rate": 0.1388888888888889,
"coherence_length": 41,
"unique_tokens": 0.8043478260869565
}
},
{
"prompt": "Can you help the little",
"output": " bird?\" The little bird was very happy and said, \"Yes, I can help you.\" The little bird flew high into the sky and looked for the biggest bird he could find. They searched high and low, and finally found the biggest bird he was and the little bird was very happy.",
"metrics": {
"ttft_ms": 1.7471759929321706,
"tps": 560.7404659947615,
"total_latency_ms": 119.48486699839123,
"tokens_generated": 67,
"perplexity": 2.318911889137082,
"avg_token_prob": 0.6239561711725614,
"repetition_rate": 0.10526315789473684,
"coherence_length": 19,
"unique_tokens": 0.5970149253731343
}
},
{
"prompt": "I love you said the",
"output": " star was ready. You are my sweet jewels.\"",
"metrics": {
"ttft_ms": 1.733625991619192,
"tps": 541.4415199519332,
"total_latency_ms": 31.39766599633731,
"tokens_generated": 17,
"perplexity": 4.62535670702459,
"avg_token_prob": 0.4262263657809753,
"repetition_rate": 0.0,
"coherence_length": 17,
"unique_tokens": 1.0
}
},
{
"prompt": "Look at the pretty",
"output": " penny!\"",
"metrics": {
"ttft_ms": 1.7004440014716238,
"tps": 466.26442856702386,
"total_latency_ms": 8.578822991694324,
"tokens_generated": 4,
"perplexity": 6.254460717173479,
"avg_token_prob": 0.22915860563516616,
"repetition_rate": 0.0,
"coherence_length": 4,
"unique_tokens": 1.0
}
},
{
"prompt": "Tell me a story about",
"output": " a frog who lived in a big pond. They were very happy together.",
"metrics": {
"ttft_ms": 1.7304549983236939,
"tps": 542.3142174833457,
"total_latency_ms": 33.19108999858145,
"tokens_generated": 18,
"perplexity": 2.310761490680641,
"avg_token_prob": 0.623036225718495,
"repetition_rate": 0.125,
"coherence_length": 18,
"unique_tokens": 0.8888888888888888
}
}
] |