File size: 52,275 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 named Sunny. She went to the pool with her mommy and daddy. The pool was very hot and wet, so she asked her mommy, \"Can you help us pick up your pool. The pool is so deep that there are many water in the water and take a look around. When we help the pool, the pool was very happy.",
"metrics": {
"ttft_ms": 244.7804109979188,
"tps": 232.48556153459154,
"total_latency_ms": 434.43558100261725,
"tokens_generated": 101,
"perplexity": 3.4791796017657197,
"avg_token_prob": 0.5436820859630482,
"repetition_rate": 0.12087912087912088,
"coherence_length": 23,
"unique_tokens": 0.6237623762376238
}
},
{
"prompt": "One day a small bird",
"output": " came to the sky. The bird wanted to fly away, but it was too heavy for the bird to rescue.",
"metrics": {
"ttft_ms": 1.8339670059503987,
"tps": 551.5656578697918,
"total_latency_ms": 58.016665003378876,
"tokens_generated": 32,
"perplexity": 1.9903133595800888,
"avg_token_prob": 0.67342656094468,
"repetition_rate": 0.045454545454545456,
"coherence_length": 32,
"unique_tokens": 0.8125
}
},
{
"prompt": "There was a big red",
"output": " shark.",
"metrics": {
"ttft_ms": 1.698784006293863,
"tps": 435.29430011852486,
"total_latency_ms": 6.891889002872631,
"tokens_generated": 3,
"perplexity": 17.102115613500295,
"avg_token_prob": 0.1426427363185212,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "A little boy went to the",
"output": " park to play. He saw a big slide. The slide was blue and the slide was cold. He ran to the slide.",
"metrics": {
"ttft_ms": 1.6815129929454997,
"tps": 559.2677817838859,
"total_latency_ms": 64.36987999768462,
"tokens_generated": 36,
"perplexity": 2.4225155530843647,
"avg_token_prob": 0.6237772569450474,
"repetition_rate": 0.34615384615384615,
"coherence_length": 13,
"unique_tokens": 0.5555555555555556
}
},
{
"prompt": "Once there was a happy",
"output": " little girl. She wanted to go to the store with her mom. Her mom said she was very creative and knew she could do everything.",
"metrics": {
"ttft_ms": 1.7966770101338625,
"tps": 557.9016133103067,
"total_latency_ms": 68.11236801149789,
"tokens_generated": 38,
"perplexity": 2.79282232260067,
"avg_token_prob": 0.5665346618550711,
"repetition_rate": 0.03571428571428571,
"coherence_length": 38,
"unique_tokens": 0.868421052631579
}
},
{
"prompt": "In a small house lived a",
"output": " puppy named Spot. They liked to play together in the woods. One day, they saw a big rock near the rock. The rock was green and smelled fun.",
"metrics": {
"ttft_ms": 1.6998640057863668,
"tps": 560.4833917418904,
"total_latency_ms": 85.64036099414807,
"tokens_generated": 48,
"perplexity": 2.3521343380008726,
"avg_token_prob": 0.6424846200424493,
"repetition_rate": 0.10526315789473684,
"coherence_length": 48,
"unique_tokens": 0.8333333333333334
}
},
{
"prompt": "One morning the sun was",
"output": " shining, when he noticed something strange. A little boy named Joe got upset and started to shrink! He had caused all the secrets! Joe was so sad and he ran away.",
"metrics": {
"ttft_ms": 1.727655006106943,
"tps": 564.083346702221,
"total_latency_ms": 106.3672599993879,
"tokens_generated": 60,
"perplexity": 3.375316265340397,
"avg_token_prob": 0.5158744235599383,
"repetition_rate": 0.02,
"coherence_length": 49,
"unique_tokens": 0.7833333333333333
}
},
{
"prompt": "There was a very old",
"output": " bear and he had an idea.",
"metrics": {
"ttft_ms": 1.719374005915597,
"tps": 531.4131885346128,
"total_latency_ms": 18.817749005393125,
"tokens_generated": 10,
"perplexity": 4.438213839624825,
"avg_token_prob": 0.4875718761574138,
"repetition_rate": 0.0,
"coherence_length": 10,
"unique_tokens": 1.0
}
},
{
"prompt": "A tiny cat found a",
"output": " balloon and wanted to play with it. She thought and thought and thought.",
"metrics": {
"ttft_ms": 1.7335150041617453,
"tps": 550.6120065386185,
"total_latency_ms": 38.13937900122255,
"tokens_generated": 21,
"perplexity": 3.099029603347217,
"avg_token_prob": 0.5057729279453104,
"repetition_rate": 0.6363636363636364,
"coherence_length": 15,
"unique_tokens": 0.6666666666666666
}
},
{
"prompt": "Once upon a time in a",
"output": " cheerful little forest, there lived a brave lion named Lucy. Today, Lucy was a very gifted girl, and she wanted to learn more about the world.",
"metrics": {
"ttft_ms": 1.6682129935361445,
"tps": 563.8287400112727,
"total_latency_ms": 97.54735098977108,
"tokens_generated": 55,
"perplexity": 2.514937420013627,
"avg_token_prob": 0.6370321236276401,
"repetition_rate": 0.1111111111111111,
"coherence_length": 29,
"unique_tokens": 0.8181818181818182
}
},
{
"prompt": "The little girl loved to",
"output": " play in the garden. She would hide behind the trees and the flowers and pick the flowers.",
"metrics": {
"ttft_ms": 1.7211949889315292,
"tps": 557.2000490389507,
"total_latency_ms": 53.84062699158676,
"tokens_generated": 30,
"perplexity": 2.402116263876163,
"avg_token_prob": 0.6049018290359527,
"repetition_rate": 0.3,
"coherence_length": 25,
"unique_tokens": 0.7333333333333333
}
},
{
"prompt": "One day it started to",
"output": " go for a walk. It was very soon running and jumping out of sight.",
"metrics": {
"ttft_ms": 1.710654003545642,
"tps": 555.0242246011858,
"total_latency_ms": 45.043079007882625,
"tokens_generated": 25,
"perplexity": 3.75726741127704,
"avg_token_prob": 0.5367088002833322,
"repetition_rate": 0.06666666666666667,
"coherence_length": 25,
"unique_tokens": 0.92
}
},
{
"prompt": "There was a friendly",
"output": " bear, but he was also very curious. He asked if he could join in and they said yes.",
"metrics": {
"ttft_ms": 1.6911540005821735,
"tps": 556.3884830886914,
"total_latency_ms": 55.716465998557396,
"tokens_generated": 31,
"perplexity": 2.005832235278691,
"avg_token_prob": 0.6344147606287152,
"repetition_rate": 0.0,
"coherence_length": 31,
"unique_tokens": 0.9032258064516129
}
},
{
"prompt": "A boy named Tom had a",
"output": " big sister named Sally. He liked to play with his toys and run around in the park. One day, Tom saw a little bird who was sad because he lost his favorite toy.",
"metrics": {
"ttft_ms": 1.7422250093659386,
"tps": 562.6831568276201,
"total_latency_ms": 88.8599550089566,
"tokens_generated": 50,
"perplexity": 1.9503275032889917,
"avg_token_prob": 0.6797042783422798,
"repetition_rate": 0.0,
"coherence_length": 50,
"unique_tokens": 0.92
}
},
{
"prompt": "Once there was a magic",
"output": "al duck. He wanted to help others when he needed it. But it was too heavy for him to buy. He wanted to find one too.",
"metrics": {
"ttft_ms": 1.7145739984698594,
"tps": 562.3054721020065,
"total_latency_ms": 69.35731899284292,
"tokens_generated": 39,
"perplexity": 3.8678499032839215,
"avg_token_prob": 0.5326484109624289,
"repetition_rate": 0.20689655172413793,
"coherence_length": 31,
"unique_tokens": 0.6923076923076923
}
},
{
"prompt": "In the park there was a",
"output": " group of older kids who were playing in the park. They had to explore the park, but they had to prepare a big group in the park. The group of kids liked to play in the sandbox, and they all wanted to play with the other kids.",
"metrics": {
"ttft_ms": 1.7564549925737083,
"tps": 566.7903948234435,
"total_latency_ms": 137.61701100156642,
"tokens_generated": 78,
"perplexity": 2.8469369683062675,
"avg_token_prob": 0.5664035963672626,
"repetition_rate": 0.1323529411764706,
"coherence_length": 37,
"unique_tokens": 0.5769230769230769
}
},
{
"prompt": "A small dog was playing in the",
"output": " park. He had a lot of fun, but he wanted to stay. Suddenly, he heard a loud roar! He quickly ran over to try and peeked inside.",
"metrics": {
"ttft_ms": 1.6985239926725626,
"tps": 564.8593795227677,
"total_latency_ms": 88.51760599645786,
"tokens_generated": 50,
"perplexity": 2.7775885217202845,
"avg_token_prob": 0.5725229040664785,
"repetition_rate": 0.05,
"coherence_length": 50,
"unique_tokens": 0.78
}
},
{
"prompt": "One day the wind was very",
"output": " gently and made it to the sky. Everyone in the sun would spread out on the windows and watch them and they would do lots of fun things.",
"metrics": {
"ttft_ms": 1.671663994784467,
"tps": 563.7545207317165,
"total_latency_ms": 81.59579800849315,
"tokens_generated": 46,
"perplexity": 3.747163733441334,
"avg_token_prob": 0.518732829851673,
"repetition_rate": 0.1111111111111111,
"coherence_length": 46,
"unique_tokens": 0.8260869565217391
}
},
{
"prompt": "There was a girl who liked to",
"output": " explore. One day, she wanted to go outside and explore. She opened her drawers and began to jog around. She was so excited that she almost dressed her dress and shoes.",
"metrics": {
"ttft_ms": 1.6810330125736073,
"tps": 564.0215497731908,
"total_latency_ms": 108.15189601271413,
"tokens_generated": 61,
"perplexity": 2.744878846392499,
"avg_token_prob": 0.5967493603013516,
"repetition_rate": 0.0784313725490196,
"coherence_length": 14,
"unique_tokens": 0.6721311475409836
}
},
{
"prompt": "A baby bird fell from the",
"output": " tree.\"",
"metrics": {
"ttft_ms": 1.7012240132316947,
"tps": 389.6681058913336,
"total_latency_ms": 5.132573001901619,
"tokens_generated": 2,
"perplexity": 7.948639965597329,
"avg_token_prob": 0.4596440941095352,
"repetition_rate": 0.0,
"coherence_length": 2,
"unique_tokens": 1.0
}
},
{
"prompt": "Once upon a time a king",
"output": ". He lived in the jungle, and the king and the king were very happy.",
"metrics": {
"ttft_ms": 1.7808069969760254,
"tps": 549.1278940676754,
"total_latency_ms": 41.884596008458175,
"tokens_generated": 23,
"perplexity": 2.654787109855793,
"avg_token_prob": 0.5474674326057235,
"repetition_rate": 0.38461538461538464,
"coherence_length": 15,
"unique_tokens": 0.7391304347826086
}
},
{
"prompt": "The flowers in the garden were",
"output": " very happy.",
"metrics": {
"ttft_ms": 1.6842440090840682,
"tps": 439.44982034122427,
"total_latency_ms": 6.826718003139831,
"tokens_generated": 3,
"perplexity": 2.372591582134224,
"avg_token_prob": 0.4536142535507679,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "One night the stars were",
"output": " sitting in the middle of the map. The stars opened up and out came a beautiful old man with a big flag. The water was so loud that it made the stars twinkling again.",
"metrics": {
"ttft_ms": 1.674222992733121,
"tps": 568.1477565660579,
"total_latency_ms": 112.64675299753435,
"tokens_generated": 64,
"perplexity": 3.1751070812262214,
"avg_token_prob": 0.5573203071450384,
"repetition_rate": 0.07407407407407407,
"coherence_length": 53,
"unique_tokens": 0.78125
}
},
{
"prompt": "There was a fish who wanted to",
"output": " fish to be different. He fished stepping, but he stared at it with big eyes. Then he saw a bright long, green stones that looked like a squirrel. He was so happy!",
"metrics": {
"ttft_ms": 1.677203006693162,
"tps": 567.5399297152409,
"total_latency_ms": 112.76739599998109,
"tokens_generated": 64,
"perplexity": 5.0145148663051815,
"avg_token_prob": 0.4451010952600672,
"repetition_rate": 0.037037037037037035,
"coherence_length": 64,
"unique_tokens": 0.78125
}
},
{
"prompt": "A little bear went to find",
"output": " a friend.",
"metrics": {
"ttft_ms": 1.6912939900066704,
"tps": 439.513623238451,
"total_latency_ms": 6.825726988608949,
"tokens_generated": 3,
"perplexity": 6.579906385881654,
"avg_token_prob": 0.17042673751711845,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "Once there was a cloud that",
"output": " lit someone else, he would go out to play. He would fly high up in the sky, then even fly the water around here, and everyone was so happy.",
"metrics": {
"ttft_ms": 1.6581919917371124,
"tps": 567.4126857953004,
"total_latency_ms": 86.35689900256693,
"tokens_generated": 49,
"perplexity": 5.985283262395485,
"avg_token_prob": 0.39845010903314687,
"repetition_rate": 0.02564102564102564,
"coherence_length": 49,
"unique_tokens": 0.7959183673469388
}
},
{
"prompt": "The rabbit was looking for",
"output": " something to eat. He saw a little rabbit hopping around, and he became very glad. The rabbit had gone and was so happy to be back home. The rabbit thanked the rabbit and said goodbye. The rabbit watched as the rabbit and the rabbit slowly crawled away to enjoy the food he had with his friends. They had come to the enormous rabbit against the rabbit who helped him find his way out.",
"metrics": {
"ttft_ms": 1.69328399351798,
"tps": 561.3743514954419,
"total_latency_ms": 268.98271999380086,
"tokens_generated": 151,
"perplexity": 2.7753593522229485,
"avg_token_prob": 0.6315859929316886,
"repetition_rate": 0.19148936170212766,
"coherence_length": 30,
"unique_tokens": 0.5033112582781457
}
},
{
"prompt": "One day a new friend came to",
"output": " her house. After the new picnic, the new apple was ready to share. The new friend was so excited. He asked the new friend for help and the new friend and the new friend said, \"I'm so happy we can help you!\" The new friend smiled and said, \"Thank you!\"",
"metrics": {
"ttft_ms": 1.7107040039263666,
"tps": 566.8659061397719,
"total_latency_ms": 134.0705079928739,
"tokens_generated": 76,
"perplexity": 3.015170502116456,
"avg_token_prob": 0.5353033160518661,
"repetition_rate": 0.19696969696969696,
"coherence_length": 42,
"unique_tokens": 0.618421052631579
}
},
{
"prompt": "There was a tree that could",
"output": " make a sound. One day, the sky turned wide and it was a small hole in the ground.",
"metrics": {
"ttft_ms": 1.6723629960324615,
"tps": 560.8981100934707,
"total_latency_ms": 57.05135999596678,
"tokens_generated": 32,
"perplexity": 3.109959187394783,
"avg_token_prob": 0.5465985865219298,
"repetition_rate": 0.0,
"coherence_length": 32,
"unique_tokens": 0.875
}
},
{
"prompt": "A kitten and a puppy were",
"output": " very happy. They played together all day long, and was very happy.",
"metrics": {
"ttft_ms": 1.6754329990362749,
"tps": 542.8778844824958,
"total_latency_ms": 31.31459299765993,
"tokens_generated": 17,
"perplexity": 2.745048272404325,
"avg_token_prob": 0.5640256419008236,
"repetition_rate": 0.0,
"coherence_length": 14,
"unique_tokens": 0.8235294117647058
}
},
{
"prompt": "Lily was a girl who",
"output": " loved to do things. She saw other kids playing with toys and stories. She played with them all day long.",
"metrics": {
"ttft_ms": 1.6886040102690458,
"tps": 559.8615025560426,
"total_latency_ms": 55.370836998918094,
"tokens_generated": 31,
"perplexity": 3.3594405922834256,
"avg_token_prob": 0.5754864213231485,
"repetition_rate": 0.09523809523809523,
"coherence_length": 31,
"unique_tokens": 0.8387096774193549
}
},
{
"prompt": "Tom was a boy who loved",
"output": " to climb. He loved to see new things and hear the birds singing. One day, he saw something very important. It was a poster farmer who was making things that he could see.",
"metrics": {
"ttft_ms": 1.702574998489581,
"tps": 567.3815866590807,
"total_latency_ms": 102.22397300822195,
"tokens_generated": 58,
"perplexity": 2.9931962161887338,
"avg_token_prob": 0.5636125095346469,
"repetition_rate": 0.0625,
"coherence_length": 58,
"unique_tokens": 0.7586206896551724
}
},
{
"prompt": "The old man had a",
"output": " tricky happy smile and thanked his Grandma with a big smile. From that day on, the elderly man was always by Lily's encouraging friend and to go on adventures.",
"metrics": {
"ttft_ms": 1.6982729866867885,
"tps": 568.7210755285339,
"total_latency_ms": 107.2582019987749,
"tokens_generated": 61,
"perplexity": 3.575645302145975,
"avg_token_prob": 0.5522002941185248,
"repetition_rate": 0.0,
"coherence_length": 61,
"unique_tokens": 0.8360655737704918
}
},
{
"prompt": "A brave knight went to",
"output": " the stove to buy a bear. He saw many people and animals, watching the people, and lots of people came to see the stove. He started to buy them to buy them all.",
"metrics": {
"ttft_ms": 1.728364994050935,
"tps": 562.0814234629555,
"total_latency_ms": 119.19981199025642,
"tokens_generated": 67,
"perplexity": 3.7839530015017857,
"avg_token_prob": 0.5363541069082738,
"repetition_rate": 0.21052631578947367,
"coherence_length": 31,
"unique_tokens": 0.5522388059701493
}
},
{
"prompt": "The princess wanted to",
"output": " build a new castle.",
"metrics": {
"ttft_ms": 1.7177049885503948,
"tps": 535.7176864619693,
"total_latency_ms": 20.533202987280674,
"tokens_generated": 11,
"perplexity": 2.6602768454926027,
"avg_token_prob": 0.5680408948101103,
"repetition_rate": 0.0,
"coherence_length": 11,
"unique_tokens": 1.0
}
},
{
"prompt": "A wise owl told the",
"output": " truth: \"It's okay Ella, I can tell you a joke!\"",
"metrics": {
"ttft_ms": 1.7168240010505542,
"tps": 556.4752617484397,
"total_latency_ms": 46.72265199769754,
"tokens_generated": 26,
"perplexity": 3.24375430465228,
"avg_token_prob": 0.5353746134744681,
"repetition_rate": 0.0,
"coherence_length": 26,
"unique_tokens": 0.9615384615384616
}
},
{
"prompt": "The farmer had many",
"output": " animals and magic and made everyone laugh. The wise owl was so proud of the farm and used its big bone as the cow.",
"metrics": {
"ttft_ms": 1.685042996541597,
"tps": 565.5587808810888,
"total_latency_ms": 81.33548899786547,
"tokens_generated": 46,
"perplexity": 4.991924101729816,
"avg_token_prob": 0.47829152722446683,
"repetition_rate": 0.027777777777777776,
"coherence_length": 46,
"unique_tokens": 0.8478260869565217
}
},
{
"prompt": "A young fox was very",
"output": " foolish, but he was happy to have a new friend. He had learned a new lesson to his friends and was grateful for the delicate visits.",
"metrics": {
"ttft_ms": 1.675084000453353,
"tps": 565.8655489393252,
"total_latency_ms": 86.59300798899494,
"tokens_generated": 49,
"perplexity": 3.242620093911352,
"avg_token_prob": 0.5162711975816637,
"repetition_rate": 0.10256410256410256,
"coherence_length": 49,
"unique_tokens": 0.8163265306122449
}
},
{
"prompt": "The teacher said to the",
"output": " girl, \"Do you want to go outside and play?\" The girl nodded her head and said, \"I want to go outside and play.\"",
"metrics": {
"ttft_ms": 1.693304002401419,
"tps": 562.7574845845409,
"total_latency_ms": 62.193753008614294,
"tokens_generated": 35,
"perplexity": 2.0872451689213776,
"avg_token_prob": 0.6645816270158522,
"repetition_rate": 0.04,
"coherence_length": 27,
"unique_tokens": 0.6857142857142857
}
},
{
"prompt": "Mom told her that",
"output": " it was a wise old call.",
"metrics": {
"ttft_ms": 1.680843997746706,
"tps": 538.4721196553712,
"total_latency_ms": 20.428169998922385,
"tokens_generated": 11,
"perplexity": 8.09494792154369,
"avg_token_prob": 0.2975003140551659,
"repetition_rate": 0.0,
"coherence_length": 11,
"unique_tokens": 1.0
}
},
{
"prompt": "Dad was going to",
"output": " rain.",
"metrics": {
"ttft_ms": 1.7425550031475723,
"tps": 434.0994370953352,
"total_latency_ms": 6.910858995979652,
"tokens_generated": 3,
"perplexity": 4.965371676631161,
"avg_token_prob": 0.31489772954955697,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "The baby was crying because",
"output": " it was sad because the elevator was too lazy and couldn't move. But then, the dog brought the baby to Tim and Sally. Tim felt better and they both played together.",
"metrics": {
"ttft_ms": 1.6789829969638959,
"tps": 567.3169876840318,
"total_latency_ms": 102.23561299790163,
"tokens_generated": 58,
"perplexity": 4.139590658375599,
"avg_token_prob": 0.5407929856510699,
"repetition_rate": 0.08333333333333333,
"coherence_length": 58,
"unique_tokens": 0.7931034482758621
}
},
{
"prompt": "A kind woman gave the",
"output": " woman a big hug and said it was the best way to share. The little boy was so happy to have his wool back and thanked the kind woman. From that day on, the little boy and the nice lady were both very happy. They all lived happily ever after.",
"metrics": {
"ttft_ms": 1.6926240059547126,
"tps": 568.8578839127529,
"total_latency_ms": 137.11684799636714,
"tokens_generated": 78,
"perplexity": 2.4770642242918846,
"avg_token_prob": 0.6336674716620547,
"repetition_rate": 0.04411764705882353,
"coherence_length": 38,
"unique_tokens": 0.7435897435897436
}
},
{
"prompt": "The big bear was",
"output": " now rough, but he still wanted to eat it fast. So, he travelled through the woods, and eventually entered the big bear.",
"metrics": {
"ttft_ms": 1.6800840094219893,
"tps": 566.3672723465348,
"total_latency_ms": 90.04757599905133,
"tokens_generated": 51,
"perplexity": 3.681671489063484,
"avg_token_prob": 0.5475351850002951,
"repetition_rate": 0.024390243902439025,
"coherence_length": 51,
"unique_tokens": 0.803921568627451
}
},
{
"prompt": "A clever mouse found",
"output": " a candle that made the house look pretty. The candle said, \"Please come with us!\" They both laughed and shared their corn together.",
"metrics": {
"ttft_ms": 1.6974040045170113,
"tps": 566.9295802685876,
"total_latency_ms": 91.72214999853168,
"tokens_generated": 52,
"perplexity": 3.714957099057854,
"avg_token_prob": 0.5338248825074121,
"repetition_rate": 0.07142857142857142,
"coherence_length": 19,
"unique_tokens": 0.8076923076923077
}
},
{
"prompt": "The old cat always",
"output": " loved to hold onto things.",
"metrics": {
"ttft_ms": 1.6886139928828925,
"tps": 536.0052697706321,
"total_latency_ms": 18.656532993190922,
"tokens_generated": 10,
"perplexity": 3.9942324432064815,
"avg_token_prob": 0.4709642545574091,
"repetition_rate": 0.0,
"coherence_length": 10,
"unique_tokens": 0.9
}
},
{
"prompt": "A tall giraffe could",
"output": " be her best friend!",
"metrics": {
"ttft_ms": 1.6926740063354373,
"tps": 505.77263589346467,
"total_latency_ms": 11.863038002047688,
"tokens_generated": 6,
"perplexity": 7.362475649998418,
"avg_token_prob": 0.4114995097874531,
"repetition_rate": 0.0,
"coherence_length": 6,
"unique_tokens": 1.0
}
},
{
"prompt": "The little duck went",
"output": " to the pond to find some fish. The rabbit said, \"Let's play and play with the other animals!\" The little duck was very happy, and they all said, \"Yay! Thank you!\"",
"metrics": {
"ttft_ms": 1.6837639996083453,
"tps": 569.1045223917331,
"total_latency_ms": 101.91449499689043,
"tokens_generated": 58,
"perplexity": 2.520648696660346,
"avg_token_prob": 0.603585357004303,
"repetition_rate": 0.0625,
"coherence_length": 46,
"unique_tokens": 0.7931034482758621
}
},
{
"prompt": "A strong lion was",
"output": " called compassionate. He was a guardian who always wanted to sail his boat in common. One day, he woke up feeling sick.",
"metrics": {
"ttft_ms": 1.6755440010456368,
"tps": 568.0842017303484,
"total_latency_ms": 86.2548190052621,
"tokens_generated": 49,
"perplexity": 4.16796601007847,
"avg_token_prob": 0.5095151768834331,
"repetition_rate": 0.0,
"coherence_length": 49,
"unique_tokens": 0.8367346938775511
}
},
{
"prompt": "The funny monkey liked to",
"output": " play pretend. She had a big pot that was made of string.",
"metrics": {
"ttft_ms": 1.693294005235657,
"tps": 550.7479693918219,
"total_latency_ms": 36.314251003204845,
"tokens_generated": 20,
"perplexity": 5.102642248194123,
"avg_token_prob": 0.43839402971345753,
"repetition_rate": 0.1,
"coherence_length": 20,
"unique_tokens": 0.9
}
},
{
"prompt": "The dog ran to the",
"output": " kitchen, and into the living room. He was so happy that he could see the children and they all played together.",
"metrics": {
"ttft_ms": 1.6841339966049418,
"tps": 565.4365335800491,
"total_latency_ms": 65.43616799172014,
"tokens_generated": 37,
"perplexity": 2.853536474173403,
"avg_token_prob": 0.5729545884471583,
"repetition_rate": 0.0,
"coherence_length": 37,
"unique_tokens": 0.918918918918919
}
},
{
"prompt": "She picked up the",
"output": " cone with it. She started to move the box and the tape. She tried to pick it, but it was too heavy.",
"metrics": {
"ttft_ms": 1.702445006230846,
"tps": 562.9367380727849,
"total_latency_ms": 65.72674600465689,
"tokens_generated": 37,
"perplexity": 4.241482358944828,
"avg_token_prob": 0.4975009266605699,
"repetition_rate": 0.07407407407407407,
"coherence_length": 37,
"unique_tokens": 0.8108108108108109
}
},
{
"prompt": "He walked to the big",
"output": " tree and said, \"Hello, bird. What are you doing with the sky?\"",
"metrics": {
"ttft_ms": 1.6814730042824522,
"tps": 555.1625970681563,
"total_latency_ms": 41.42930399393663,
"tokens_generated": 23,
"perplexity": 2.6814963124483913,
"avg_token_prob": 0.6106544673675671,
"repetition_rate": 0.0,
"coherence_length": 23,
"unique_tokens": 0.9565217391304348
}
},
{
"prompt": "They went to play in the",
"output": " park. They had a great time.",
"metrics": {
"ttft_ms": 1.735505007673055,
"tps": 533.6296898718255,
"total_latency_ms": 18.73958700161893,
"tokens_generated": 10,
"perplexity": 1.8187173654721382,
"avg_token_prob": 0.6277793063358827,
"repetition_rate": 0.0,
"coherence_length": 10,
"unique_tokens": 0.9
}
},
{
"prompt": "The cat jumped on the",
"output": " paper and landed on the cat's legs. The cat jumped out and disappeared, and the cat was scared.",
"metrics": {
"ttft_ms": 1.6899540059966967,
"tps": 565.4493004448481,
"total_latency_ms": 70.74020600703079,
"tokens_generated": 40,
"perplexity": 2.844231021125524,
"avg_token_prob": 0.5903424000503813,
"repetition_rate": 0.1,
"coherence_length": 34,
"unique_tokens": 0.725
}
},
{
"prompt": "She opened the door and",
"output": " saw that there was lots of toys and fake. There was a big, green sticking out of the ground.",
"metrics": {
"ttft_ms": 1.691664001555182,
"tps": 559.7121567582917,
"total_latency_ms": 57.17224400723353,
"tokens_generated": 32,
"perplexity": 4.981527712941671,
"avg_token_prob": 0.4438038087083083,
"repetition_rate": 0.09090909090909091,
"coherence_length": 32,
"unique_tokens": 0.8125
}
},
{
"prompt": "He found a box with",
"output": " a lock on it. Timmy was so excited to open it! As he opened it, he saw a magical fairy who lived in and was very happy to find out what it was.",
"metrics": {
"ttft_ms": 1.6707930044503883,
"tps": 567.4386347799697,
"total_latency_ms": 88.11525499913841,
"tokens_generated": 50,
"perplexity": 2.897254200518505,
"avg_token_prob": 0.5963403913181038,
"repetition_rate": 0.175,
"coherence_length": 19,
"unique_tokens": 0.76
}
},
{
"prompt": "They ran as fast as",
"output": " they could.",
"metrics": {
"ttft_ms": 1.6810340021038428,
"tps": 444.3559020948721,
"total_latency_ms": 6.751345004886389,
"tokens_generated": 3,
"perplexity": 1.374876699048941,
"avg_token_prob": 0.795992337167263,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "The bird flew to the",
"output": " ground and kept walking. The bird flew into the sky, and in a tall tree. It was so cool, it could see the whole park, glowing brightly colored on the bottom of her home.",
"metrics": {
"ttft_ms": 1.699223998002708,
"tps": 568.1180662988871,
"total_latency_ms": 116.17303499951959,
"tokens_generated": 66,
"perplexity": 4.354519683109762,
"avg_token_prob": 0.49295369480430745,
"repetition_rate": 0.07142857142857142,
"coherence_length": 66,
"unique_tokens": 0.7878787878787878
}
},
{
"prompt": "She gave her friend a",
"output": " big hug and said she was sorry for being so helpful. From that day on, he made sure to always ask for help when he saw even more adventurous and a nice friend.",
"metrics": {
"ttft_ms": 1.676422994933091,
"tps": 567.9754582057554,
"total_latency_ms": 93.3138910040725,
"tokens_generated": 53,
"perplexity": 3.129674281629432,
"avg_token_prob": 0.6143066425747411,
"repetition_rate": 0.046511627906976744,
"coherence_length": 53,
"unique_tokens": 0.8490566037735849
}
},
{
"prompt": "He tried to climb the",
"output": " tree, but he was too strong. Spot was very sad and cried if he tried to climb the tree.",
"metrics": {
"ttft_ms": 1.8080269946949556,
"tps": 559.354272725534,
"total_latency_ms": 55.42104800406378,
"tokens_generated": 31,
"perplexity": 2.794494484555046,
"avg_token_prob": 0.575993806734914,
"repetition_rate": 0.09523809523809523,
"coherence_length": 31,
"unique_tokens": 0.8387096774193549
}
},
{
"prompt": "They built a house with",
"output": " a bright cake!\" the cat said.",
"metrics": {
"ttft_ms": 1.6814330010674894,
"tps": 534.7226009082716,
"total_latency_ms": 20.571414002915844,
"tokens_generated": 11,
"perplexity": 18.285194198569343,
"avg_token_prob": 0.2672563666856149,
"repetition_rate": 0.0,
"coherence_length": 11,
"unique_tokens": 0.9090909090909091
}
},
{
"prompt": "The fish swam to the",
"output": " frog and pushed it back. Pete followed the pond and a frog croaked into the pond. They found some frogs and cleaned them in the shade.",
"metrics": {
"ttft_ms": 1.6748039925005287,
"tps": 569.2982573757147,
"total_latency_ms": 101.87981299532112,
"tokens_generated": 58,
"perplexity": 4.113159111086309,
"avg_token_prob": 0.5057254729741174,
"repetition_rate": 0.0625,
"coherence_length": 25,
"unique_tokens": 0.603448275862069
}
},
{
"prompt": "She put the ball in the",
"output": " pocket and rubbed it onto the pocket. She said to her mom, \"Can I have it, mom?\"",
"metrics": {
"ttft_ms": 1.6770840011304244,
"tps": 563.1702248539103,
"total_latency_ms": 62.148172000888735,
"tokens_generated": 35,
"perplexity": 2.7958250277480756,
"avg_token_prob": 0.5727307523807718,
"repetition_rate": 0.12,
"coherence_length": 15,
"unique_tokens": 0.7428571428571429
}
},
{
"prompt": "He looked under the",
"output": " tree. He noticed something moving in the wind. It was an old, it was something strange.",
"metrics": {
"ttft_ms": 1.6793940012576059,
"tps": 562.5853621197787,
"total_latency_ms": 55.10274900007062,
"tokens_generated": 31,
"perplexity": 3.7113617675096746,
"avg_token_prob": 0.5506945960878511,
"repetition_rate": 0.047619047619047616,
"coherence_length": 31,
"unique_tokens": 0.8709677419354839
}
},
{
"prompt": "They shared the cake and",
"output": " washed it in silence. They checked the cake and caught it. They were happy and proud. They thanked the cake for making it for the rest of the day. And they all lived happily ever after.",
"metrics": {
"ttft_ms": 1.6627120057819411,
"tps": 569.3149591566823,
"total_latency_ms": 112.41580599744339,
"tokens_generated": 64,
"perplexity": 2.462366417762602,
"avg_token_prob": 0.643015324537499,
"repetition_rate": 0.14814814814814814,
"coherence_length": 34,
"unique_tokens": 0.71875
}
},
{
"prompt": "The frog jumped into the",
"output": " wall, and it started to die.",
"metrics": {
"ttft_ms": 1.7187939956784248,
"tps": 528.8987362291773,
"total_latency_ms": 18.90721099334769,
"tokens_generated": 10,
"perplexity": 8.174416417362583,
"avg_token_prob": 0.3353981377387589,
"repetition_rate": 0.0,
"coherence_length": 10,
"unique_tokens": 1.0
}
},
{
"prompt": "She drew a picture of",
"output": " a dog. Lily loved cats and Max bark and runs away to pay for his toy raccoon.",
"metrics": {
"ttft_ms": 1.676714004133828,
"tps": 559.3049131275408,
"total_latency_ms": 55.42593900463544,
"tokens_generated": 31,
"perplexity": 6.277694727009991,
"avg_token_prob": 0.4045663520664675,
"repetition_rate": 0.19047619047619047,
"coherence_length": 31,
"unique_tokens": 0.8387096774193549
}
},
{
"prompt": "He made a wish and",
"output": " the bird perched on its jacket. The bird flew away and the bird was now better. The bird was sad because it could not swim in the rain.",
"metrics": {
"ttft_ms": 1.6714240045985207,
"tps": 566.0276423283988,
"total_latency_ms": 83.03481400071178,
"tokens_generated": 47,
"perplexity": 3.688464489215949,
"avg_token_prob": 0.5484610109997448,
"repetition_rate": 0.08108108108108109,
"coherence_length": 28,
"unique_tokens": 0.7659574468085106
}
},
{
"prompt": "They danced in the",
"output": " park and wondered how they were. They saw the park and the bear, the horns, the bear, and the animals. They giggled and thought they were amazing.",
"metrics": {
"ttft_ms": 1.6721029969630763,
"tps": 569.4788179837483,
"total_latency_ms": 96.57953599526081,
"tokens_generated": 55,
"perplexity": 3.3797440367070584,
"avg_token_prob": 0.5594969747139008,
"repetition_rate": 0.17777777777777778,
"coherence_length": 27,
"unique_tokens": 0.6363636363636364
}
},
{
"prompt": "She was very happy because",
"output": " she found a pretty place to skate. She was very excited and read it all by herself.",
"metrics": {
"ttft_ms": 1.6758839919930324,
"tps": 558.967023610665,
"total_latency_ms": 59.037471990450285,
"tokens_generated": 33,
"perplexity": 3.3125351384824677,
"avg_token_prob": 0.5669502801234451,
"repetition_rate": 0.0,
"coherence_length": 33,
"unique_tokens": 0.9090909090909091
}
},
{
"prompt": "He was sad because his",
"output": " toy car was under a big tree. He just wanted to play with it.",
"metrics": {
"ttft_ms": 1.7131240019807592,
"tps": 549.6739638474372,
"total_latency_ms": 34.56594499584753,
"tokens_generated": 19,
"perplexity": 3.5222620663568884,
"avg_token_prob": 0.4953259125351906,
"repetition_rate": 0.1111111111111111,
"coherence_length": 19,
"unique_tokens": 0.9473684210526315
}
},
{
"prompt": "The girl felt scared when",
"output": " she spotted a stranger in the hallway. She knew she shouldn't touch herself. She looked around, but she couldn't see anything. She was not there were lying on the ground.",
"metrics": {
"ttft_ms": 1.6786430060165003,
"tps": 567.6853847876441,
"total_latency_ms": 109.21542400319595,
"tokens_generated": 62,
"perplexity": 3.4375731133987983,
"avg_token_prob": 0.5804370750030059,
"repetition_rate": 0.019230769230769232,
"coherence_length": 62,
"unique_tokens": 0.8064516129032258
}
},
{
"prompt": "They were excited to",
"output": " see the letters in.",
"metrics": {
"ttft_ms": 1.7876060010166839,
"tps": 519.4724235161956,
"total_latency_ms": 15.40024000860285,
"tokens_generated": 8,
"perplexity": 5.8411743919721895,
"avg_token_prob": 0.3813811539827536,
"repetition_rate": 0.0,
"coherence_length": 8,
"unique_tokens": 1.0
}
},
{
"prompt": "He was angry because",
"output": " he wanted to destroy more.",
"metrics": {
"ttft_ms": 1.6702040011296049,
"tps": 529.2635086391446,
"total_latency_ms": 18.894180000643246,
"tokens_generated": 10,
"perplexity": 3.4663412485118648,
"avg_token_prob": 0.5562512803484093,
"repetition_rate": 0.0,
"coherence_length": 10,
"unique_tokens": 1.0
}
},
{
"prompt": "She felt proud when she",
"output": " returned to her. The little girl had been so happy to be celebrated with her. She had been feeling cheered for a long time, and she enjoyed the special treat of her celebration!",
"metrics": {
"ttft_ms": 1.6670229961164296,
"tps": 567.1281566947962,
"total_latency_ms": 123.42889199499041,
"tokens_generated": 70,
"perplexity": 3.4159442811741356,
"avg_token_prob": 0.5478980914807655,
"repetition_rate": 0.03333333333333333,
"coherence_length": 29,
"unique_tokens": 0.7
}
},
{
"prompt": "The boy was surprised to see",
"output": " the delicate bird up in his ear. The bird smiled, and said, \"Hi! I'm always here to protect my ears.\" The bird began to dance and sing. The bird laughed a lot. It reminded them that it's important to tell the people we come and heat them too. From that day on, the bird and the bird were best friends and went on many adventures together.",
"metrics": {
"ttft_ms": 1.725164009258151,
"tps": 567.4895142337315,
"total_latency_ms": 218.50624000944663,
"tokens_generated": 124,
"perplexity": 3.426166285992554,
"avg_token_prob": 0.5714318722849712,
"repetition_rate": 0.07017543859649122,
"coherence_length": 52,
"unique_tokens": 0.6774193548387096
}
},
{
"prompt": "They were tired after",
"output": " the stars. They ran to the slide, even on the slide. They slid down fast and laugh. They slid down and laugh. They are happy.",
"metrics": {
"ttft_ms": 1.6943630034802482,
"tps": 564.6047516389984,
"total_latency_ms": 85.01522500591818,
"tokens_generated": 48,
"perplexity": 2.4683722192741735,
"avg_token_prob": 0.6214201786431807,
"repetition_rate": 0.34210526315789475,
"coherence_length": 17,
"unique_tokens": 0.5416666666666666
}
},
{
"prompt": "She was kind to the",
"output": " cat and the cat was so happy.",
"metrics": {
"ttft_ms": 1.722305009025149,
"tps": 531.2299459680531,
"total_latency_ms": 18.82424000359606,
"tokens_generated": 10,
"perplexity": 3.175773357902911,
"avg_token_prob": 0.40984987501393666,
"repetition_rate": 0.0,
"coherence_length": 10,
"unique_tokens": 0.8
}
},
{
"prompt": "He was brave and",
"output": " hopped slowly to the slide. He looked down and couldn't believe his eyes.",
"metrics": {
"ttft_ms": 1.7230950033990666,
"tps": 552.3411523200101,
"total_latency_ms": 52.50378299388103,
"tokens_generated": 29,
"perplexity": 3.1754596055243316,
"avg_token_prob": 0.5659757218401258,
"repetition_rate": 0.05263157894736842,
"coherence_length": 29,
"unique_tokens": 0.8620689655172413
}
},
{
"prompt": "The dog was lonely because",
"output": " he had no friends. One day, he saw a little boy walking by the river with him. The boy felt sad for the rat and asked, \"Why are you sad?\"",
"metrics": {
"ttft_ms": 1.7719059978844598,
"tps": 560.2240094318678,
"total_latency_ms": 76.7550109885633,
"tokens_generated": 43,
"perplexity": 2.5050519147693877,
"avg_token_prob": 0.6059975164561447,
"repetition_rate": 0.0,
"coherence_length": 43,
"unique_tokens": 0.813953488372093
}
},
{
"prompt": "She was curious about the",
"output": " power of bee. As soon as they got closer, Lily held out her hand and looked at his paw. She noticed that the powder was right in front of the power to make her guitar blossom sounds.",
"metrics": {
"ttft_ms": 1.7363149963784963,
"tps": 565.6683526356853,
"total_latency_ms": 127.28306200006045,
"tokens_generated": 72,
"perplexity": 4.121166313416123,
"avg_token_prob": 0.5096509225589976,
"repetition_rate": 0.03225806451612903,
"coherence_length": 53,
"unique_tokens": 0.7638888888888888
}
},
{
"prompt": "He felt sorry for the",
"output": " bird and wanted to help. He gave the bird some food to the bird and said, \"Thank you, squirrel! We are very happy to help!\"",
"metrics": {
"ttft_ms": 1.6860840114532039,
"tps": 560.4714598550278,
"total_latency_ms": 73.15269899845589,
"tokens_generated": 41,
"perplexity": 2.386371448460959,
"avg_token_prob": 0.5869674533383832,
"repetition_rate": 0.12903225806451613,
"coherence_length": 41,
"unique_tokens": 0.8048780487804879
}
},
{
"prompt": "They were grateful for",
"output": " the man's kindness. They thanked the man and went back to their mess. They had a lot of fun. But then, something magical happened. Molly's mouth went over to get a closer look. She could see far away, but she was not sure if that was close.",
"metrics": {
"ttft_ms": 1.7581360007170588,
"tps": 566.7050477234981,
"total_latency_ms": 149.9898409965681,
"tokens_generated": 85,
"perplexity": 3.478721675258412,
"avg_token_prob": 0.5330662530641136,
"repetition_rate": 0.02666666666666667,
"coherence_length": 20,
"unique_tokens": 0.7411764705882353
}
},
{
"prompt": "The cat was sleepy and",
"output": " not hurt.",
"metrics": {
"ttft_ms": 1.725384994642809,
"tps": 488.42458145347905,
"total_latency_ms": 10.236995003651828,
"tokens_generated": 5,
"perplexity": 6.902223899717452,
"avg_token_prob": 0.3931284057131658,
"repetition_rate": 0.0,
"coherence_length": 5,
"unique_tokens": 1.0
}
},
{
"prompt": "Mom said to the boy",
"output": ", \u00e2\u20ac\u0153That\u00e2\u20ac\u2122s a great idea!\u00e2\u20ac",
"metrics": {
"ttft_ms": 1.6872950072865933,
"tps": 553.3519339316729,
"total_latency_ms": 43.37203600152861,
"tokens_generated": 24,
"perplexity": 1.4090462527151841,
"avg_token_prob": 0.8203459683060647,
"repetition_rate": 0.0,
"coherence_length": 24,
"unique_tokens": 0.7916666666666666
}
},
{
"prompt": "Can I have a",
"output": " toy, please?\"",
"metrics": {
"ttft_ms": 1.668864002567716,
"tps": 516.0547582295301,
"total_latency_ms": 13.564452005084604,
"tokens_generated": 7,
"perplexity": 2.3214008932004795,
"avg_token_prob": 0.6969510859344155,
"repetition_rate": 0.0,
"coherence_length": 7,
"unique_tokens": 1.0
}
},
{
"prompt": "Please help me find my",
"output": " way.\"",
"metrics": {
"ttft_ms": 1.6787130007287487,
"tps": 440.5068354516985,
"total_latency_ms": 6.81033699947875,
"tokens_generated": 3,
"perplexity": 2.0426535503991854,
"avg_token_prob": 0.6643843166530132,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "Where is the big",
"output": " wheel?\"",
"metrics": {
"ttft_ms": 1.685303999693133,
"tps": 470.90063641845626,
"total_latency_ms": 8.49436099815648,
"tokens_generated": 4,
"perplexity": 3.2648115334134213,
"avg_token_prob": 0.5500802187249064,
"repetition_rate": 0.0,
"coherence_length": 4,
"unique_tokens": 1.0
}
},
{
"prompt": "I want to go to the",
"output": " store,\" Ben said.",
"metrics": {
"ttft_ms": 1.7060240061255172,
"tps": 504.35815875826574,
"total_latency_ms": 11.896308002178557,
"tokens_generated": 6,
"perplexity": 3.8421907324493167,
"avg_token_prob": 0.490151603573135,
"repetition_rate": 0.0,
"coherence_length": 6,
"unique_tokens": 1.0
}
},
{
"prompt": "Let us play with the",
"output": " ball!\"",
"metrics": {
"ttft_ms": 1.6766929911682382,
"tps": 442.3763511732783,
"total_latency_ms": 6.7815560032613575,
"tokens_generated": 3,
"perplexity": 1.9467457529725223,
"avg_token_prob": 0.5554913058876991,
"repetition_rate": 0.0,
"coherence_length": 3,
"unique_tokens": 1.0
}
},
{
"prompt": "Do you want to be my",
"output": " friend?\" she asked.",
"metrics": {
"ttft_ms": 1.7113250069087371,
"tps": 489.58817303274947,
"total_latency_ms": 10.212665001745336,
"tokens_generated": 5,
"perplexity": 1.9577063751066568,
"avg_token_prob": 0.7511638716484109,
"repetition_rate": 0.0,
"coherence_length": 5,
"unique_tokens": 1.0
}
},
{
"prompt": "Come and see the",
"output": " page there is so many food. The pot tricks and the pots look neat, two spikes, and beautiful flowers.",
"metrics": {
"ttft_ms": 1.6892629937501624,
"tps": 564.4932702027838,
"total_latency_ms": 81.48901400272734,
"tokens_generated": 46,
"perplexity": 7.36168973173371,
"avg_token_prob": 0.41536466100629654,
"repetition_rate": 0.16666666666666666,
"coherence_length": 46,
"unique_tokens": 0.782608695652174
}
},
{
"prompt": "I am going to make a",
"output": " big castle with lots of other fish.\" Lily did not believe him. She knew the big fish was too big and heavy. So, she took a deep breath and started to follow.",
"metrics": {
"ttft_ms": 1.6863750061020255,
"tps": 565.980078257575,
"total_latency_ms": 113.07818500790745,
"tokens_generated": 64,
"perplexity": 3.200762065118172,
"avg_token_prob": 0.5954819735426169,
"repetition_rate": 0.018518518518518517,
"coherence_length": 30,
"unique_tokens": 0.78125
}
},
{
"prompt": "Why is the sky so",
"output": " beautiful?",
"metrics": {
"ttft_ms": 1.6905239899642766,
"tps": 503.366726961341,
"total_latency_ms": 11.91973898676224,
"tokens_generated": 6,
"perplexity": 3.319722793006219,
"avg_token_prob": 0.6049245659794126,
"repetition_rate": 0.0,
"coherence_length": 6,
"unique_tokens": 1.0
}
},
{
"prompt": "What is in the box",
"output": "?\" Tom asked. The box was big and had a loud voice. It had a picture of a rainbow. Tom and Mia were scared.",
"metrics": {
"ttft_ms": 1.7151539941551164,
"tps": 562.2732765153715,
"total_latency_ms": 71.13978499546647,
"tokens_generated": 40,
"perplexity": 3.307247465183177,
"avg_token_prob": 0.5384798793167602,
"repetition_rate": 0.13333333333333333,
"coherence_length": 40,
"unique_tokens": 0.8
}
},
{
"prompt": "Can you help the little",
"output": " bird?\"",
"metrics": {
"ttft_ms": 1.6757529956521466,
"tps": 394.5029178368682,
"total_latency_ms": 5.069670994998887,
"tokens_generated": 2,
"perplexity": 1.8420795804486685,
"avg_token_prob": 0.6335048129161199,
"repetition_rate": 0.0,
"coherence_length": 2,
"unique_tokens": 1.0
}
},
{
"prompt": "I love you said the",
"output": " words.\u00e2\u20ac",
"metrics": {
"ttft_ms": 1.6675929946359247,
"tps": 504.2665996507494,
"total_latency_ms": 11.898468001163565,
"tokens_generated": 6,
"perplexity": 2.5129352074053535,
"avg_token_prob": 0.6023203964744296,
"repetition_rate": 0.0,
"coherence_length": 6,
"unique_tokens": 1.0
}
},
{
"prompt": "Look at the pretty",
"output": " flowers,\" said Mom.",
"metrics": {
"ttft_ms": 1.6705529997125268,
"tps": 515.4387529283161,
"total_latency_ms": 13.580662998720072,
"tokens_generated": 7,
"perplexity": 4.251002535630351,
"avg_token_prob": 0.4229812945704907,
"repetition_rate": 0.0,
"coherence_length": 7,
"unique_tokens": 1.0
}
},
{
"prompt": "Tell me a story about",
"output": " a queen who loved you admiring all the wonderful things it had found.",
"metrics": {
"ttft_ms": 1.6649129975121468,
"tps": 554.7164789859846,
"total_latency_ms": 45.06806800782215,
"tokens_generated": 25,
"perplexity": 3.602434101945533,
"avg_token_prob": 0.5587415976378207,
"repetition_rate": 0.0,
"coherence_length": 25,
"unique_tokens": 0.96
}
}
] |