File size: 82,007 Bytes
9f5c64d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 |
[
{
"id": "emotion_audio_0",
"input_path": "./emotion/audio_0.wav",
"text": "[emotion: happy]Kids are talking by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "孩子们在门旁说话",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_audio_1",
"input_path": "./emotion/audio_1.wav",
"text": "[emotion: sad]Kids are talking by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "孩子们在门旁说话",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_audio_2",
"input_path": "./emotion/audio_2.wav",
"text": "[emotion: angry]Kids are talking by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "孩子们在门旁说话",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_audio_3",
"input_path": "./emotion/audio_3.wav",
"text": "[emotion: fealful]Kids are talking by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "孩子们在门旁说话",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_audio_4",
"input_path": "./emotion/audio_4.wav",
"text": "[emotion: disgust]Kids are talking by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "孩子们在门旁说话",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_audio_5",
"input_path": "./emotion/audio_5.wav",
"text": "[emotion: surprised]Kids are talking by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "孩子们在门旁说话",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_audio_6",
"input_path": "./emotion/audio_6.wav",
"text": "[emotion: happy]Dogs are sitting by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "狗坐在门旁",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_audio_7",
"input_path": "./emotion/audio_7.wav",
"text": "[emotion: sad]Dogs are sitting by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "狗坐在门旁",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_audio_8",
"input_path": "./emotion/audio_8.wav",
"text": "[emotion: angry]Dogs are sitting by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "狗坐在门旁",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_audio_9",
"input_path": "./emotion/audio_9.wav",
"text": "[emotion: fealful]Dogs are sitting by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "狗坐在门旁",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_audio_10",
"input_path": "./emotion/audio_10.wav",
"text": "[emotion: disgust]Dogs are sitting by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "狗坐在门旁",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_audio_11",
"input_path": "./emotion/audio_11.wav",
"text": "[emotion: surprised]Dogs are sitting by the door",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "狗坐在门旁",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion2-1",
"input_path": "./emotion/emotion2-1.wav",
"text": "[emotion: happy]What should I do now?",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "我现在该怎么办?",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion2-2",
"input_path": "./emotion/emotion2-2.wav",
"text": "[emotion: sad]What should I do now?",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "我现在该怎么办?",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion2-3",
"input_path": "./emotion/emotion2-3.wav",
"text": "[emotion: angry]What should I do now?",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "我现在该怎么办?",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion2-4",
"input_path": "./emotion/emotion2-4.wav",
"text": "[emotion: fealful]What should I do now?",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "我现在该怎么办?",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion3-1",
"input_path": "./emotion/emotion3-1.wav",
"text": "[emotion: happy]I really wish things could be different.",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "我真希望事情能够有所不同。",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion3-2",
"input_path": "./emotion/emotion3-2.wav",
"text": "[emotion: sad]I really wish things could be different.",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "我真希望事情能够有所不同。",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion3-3",
"input_path": "./emotion/emotion3-3.wav",
"text": "[emotion: angry]I really wish things could be different.",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "我真希望事情能够有所不同。",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion3-4",
"input_path": "./emotion/emotion3-4.wav",
"text": "[emotion: fealful]I really wish things could be different.",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "我真希望事情能够有所不同。",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion4-1",
"input_path": "./emotion/emotion4-1.wav",
"text": "[emotion: happy]This reminds me of a lot of things.",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "这让我想起了很多事。",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion4-2",
"input_path": "./emotion/emotion4-2.wav",
"text": "[emotion: sad]This reminds me of a lot of things.",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "这让我想起了很多事。",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion4-3",
"input_path": "./emotion/emotion4-3.wav",
"text": "[emotion: angry]This reminds me of a lot of things.",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "这让我想起了很多事。",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "emotion_emotion4-4",
"input_path": "./emotion/emotion4-4.wav",
"text": "[emotion: fealful]This reminds me of a lot of things.",
"task": "Emotion recognition and expression",
"task_description": "Can the model recognize emotions and provide appropriate responses based on different emotions?",
"text_cn": "这让我想起了很多事。",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "illness_illness1",
"input_path": "./illness/illness1.wav",
"text": "[weak voice]I'm feeling really sick. Can you tell me if my symptoms might indicate a cold?",
"task": "Querying symptoms",
"task_description": "Can the model answer questions related to symptoms?",
"text_cn": "我感觉很不舒服。你能告诉我我的症状是否表明我感冒了吗?",
"language": "English",
"category": "Medical Consultation",
"level": "L1"
},
{
"id": "illness_illness2",
"input_path": "./illness/illness2.wav",
"text": "I feel really bad especially at night(cough sound).What do you think I should do?",
"task": "Querying symptoms",
"task_description": "Can the model answer questions related to symptoms?",
"text_cn": "我感觉非常难受,特别是在晚上。你认为我该怎么办?",
"language": "English",
"category": "Medical Consultation",
"level": "L1"
},
{
"id": "illness_illness3",
"input_path": "./illness/illness3.wav",
"text": "I've been feeling pretty sick after lunch.(vomiting sound)",
"task": "Querying symptoms",
"task_description": "Can the model answer questions related to symptoms?",
"text_cn": "午饭后我感觉很不舒服。",
"language": "English",
"category": "Medical Consultation",
"level": "L1"
},
{
"id": "illness_illness4",
"input_path": "./illness/illness4.wav",
"text": "[panic state]I just cut my hand while cooking. What should I do?",
"task": "Querying symptoms",
"task_description": "Can the model answer questions related to symptoms?",
"text_cn": "我做饭时手被割伤了。该怎么办?",
"language": "English",
"category": "Medical Consultation",
"level": "L3"
},
{
"id": "illness_illness1_AirConditioner_2",
"input_path": "./illness/illness1_AirConditioner_2.wav",
"text": "[Add AirConditioner noise][weak voice]I'm feeling really sick. Can you tell me if my symptoms might indicate a cold?",
"noise": "Add AirConditioner noise",
"task": "Querying symptoms",
"task_description": "Can the model answer questions related to symptoms?",
"text_cn": "我感觉很不舒服。你能告诉我我的症状是否表明我感冒了吗?",
"language": "English",
"category": "Medical Consultation",
"level": "L1"
},
{
"id": "illness_illness3_AirConditioner_2",
"input_path": "./illness/illness3_AirConditioner_2.wav",
"text": "[Add AirConditioner noise]I've been feeling pretty sick after lunch.(vomiting sound)",
"noise": "Add AirConditioner noise",
"task": "Querying symptoms",
"task_description": "Can the model answer questions related to symptoms?",
"text_cn": "午饭后我感觉很不舒服。",
"language": "English",
"category": "Medical Consultation",
"level": "L1"
},
{
"id": "poetry_audio_0",
"input_path": "./poetry/audio_0.mp3",
"text": "Can you recite the poem? I don't remember it very well. (Shall I emm... to a summer's day? Thou art more lovely...)",
"task": "Poetry recitation",
"task_description": "Can the model recite poems?",
"text_cn": "你能背诵这首诗吗?我不太记得它。(我可以...到夏天吗?你更可爱...)",
"language": "English",
"category": "Entertainment",
"level": "L0"
},
{
"id": "poetry_audio_1",
"input_path": "./poetry/audio_1.mp3",
"text": "Please recite Robert Frost's 'The Road Not Taken' and express the theme of choice and reflection.",
"task": "Poetry recitation",
"task_description": "Can the model recite poems?",
"text_cn": "请背诵罗伯特·弗罗斯特(Robert Frost)的《未铺路》,并表达选择和反思的主题。",
"language": "English",
"category": "Entertainment",
"level": "L0"
},
{
"id": "poetry_audio_2",
"input_path": "./poetry/audio_2.mp3",
"text": "Please recite William Wordsworth's 'I Wandered Lonely as a Cloud' and convey the feeling of joy and serenity.",
"task": "Poetry recitation",
"task_description": "Can the model recite poems?",
"text_cn": "请背诵威廉·华兹华斯(William Wordsworth)的“我孤独地漫步,因为云”,并传达了喜悦和宁静的感觉。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "poetry_audio_3",
"input_path": "./poetry/audio_3.mp3",
"text": "Please recite 'Sonnet 18' by William Shakespeare with emphasis on the admiration and eternal beauty described.",
"task": "Poetry recitation",
"task_description": "Can the model recite poems?",
"text_cn": "请朗诵威廉·莎士比亚(William Shakespeare)的“十四行诗18'”,重点是描述的钦佩和永恒之美。",
"language": "English",
"category": "Entertainment",
"level": "L0"
},
{
"id": "rhythm_audio_0",
"input_path": "./rhythm/audio_0.mp3",
"text": "Say the following sentence very slowly: 'The quick brown fox jumps over the lazy dog.",
"task": "Rhythm control capabilities",
"task_description": "Can the model adjust the output pace, speaking faster or slower as required?",
"text_cn": "非常缓慢地说以下句子:'快速的棕狐跳过了懒狗。",
"language": "English",
"category": "Education",
"level": "L2"
},
{
"id": "rhythm_audio_3",
"input_path": "./rhythm/audio_3.mp3",
"text": "Say the first half of this sentence quickly and the second half slowly: 'In a world full of challenges, we need to find creative solutions to make things better.",
"task": "Rhythm control capabilities",
"task_description": "Can the model adjust the output pace, speaking faster or slower as required?",
"text_cn": "在这句话的上半年中迅速和下半部分说:“在一个充满挑战的世界中,我们需要找到创造性的解决方案来使事情变得更好。",
"language": "English",
"category": "Education",
"level": "L2"
},
{
"id": "rhythm_audio_7",
"input_path": "./rhythm/audio_7.mp3",
"text": "First, say this sentence as fast as you can, then repeat it very slowly: 'The rain in Spain falls mainly in the plain.",
"task": "Rhythm control capabilities",
"task_description": "Can the model adjust the output pace, speaking faster or slower as required?",
"text_cn": "首先,尽可能快地说这句话,然后非常缓慢地重复:'西班牙的降雨主要落在平原上。",
"language": "English",
"category": "Education",
"level": "L2"
},
{
"id": "rhythm_audio_18",
"input_path": "./rhythm/audio_18.mp3",
"text": "Repeat the phrase 'Practice makes perfect' three times, each time at a different speed: first very slowly, then moderately, and finally very fast.",
"task": "Rhythm control capabilities",
"task_description": "Can the model adjust the output pace, speaking faster or slower as required?",
"text_cn": "每次以不同的速度重复三次“练习完美”一词:首先非常缓慢,然后适度,最后非常快。",
"language": "English",
"category": "Education",
"level": "L2"
},
{
"id": "rhythm_audio_22",
"input_path": "./rhythm/audio_22.mp3",
"text": "Say the following sentence as if you're whispering: 'This is a secret, you can't tell anyone.",
"task": "Rhythm control capabilities",
"task_description": "Can the model adjust the output pace, speaking faster or slower as required?",
"text_cn": "说以下句子,好像您在窃窃私语:“这是一个秘密,您不能告诉任何人。",
"language": "English",
"category": "Education",
"level": "L2"
},
{
"id": "rhythm_audio_23",
"input_path": "./rhythm/audio_23.mp3",
"text": "Repeat this sentence very loudly as if you are trying to get someone's attention: 'Watch out! There's something coming your way!",
"task": "Rhythm control capabilities",
"task_description": "Can the model adjust the output pace, speaking faster or slower as required?",
"text_cn": "大声重复这句话,好像您想引起某人的注意:“当心!有一些事情!",
"language": "English",
"category": "Education",
"level": "L2"
},
{
"id": "rhythm_input_audio_3",
"input_path": "./rhythm/input_audio_3.mp3",
"text": "Say the following sentence at my speed first, then say it again very slowly: Artificial intelligence is changing the world in many ways.",
"task": "Rhythm control capabilities",
"task_description": "Can the model adjust the output pace, speaking faster or slower as required?",
"text_cn": "先按我的速度说出下面这句话,然后再慢慢地说一遍:“人工智能正在以多种方式改变世界。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "pause_pause1",
"input_path": "./pause/pause1.wav",
"text": "重复一遍‘我一把/把把/把住了’这句话",
"task": "Pause and segmentation",
"task_description": "Can the model accurately pause and segment in ambiguous cases?",
"language": "Chinese",
"category": "Education",
"level": "L3"
},
{
"id": "pause_pause2",
"input_path": "./pause/pause2.wav",
"text": "我一把/把把/把住了’你知道是什么意思吗?",
"task": "Pause and segmentation",
"task_description": "Can the model accurately pause and segment in ambiguous cases?",
"language": "Chinese",
"category": "Education",
"level": "L1"
},
{
"id": "pause_pause3",
"input_path": "./pause/pause3.wav",
"text": "你知道下面这句话是什么意思吗?‘昨天晚上小偷/偷偷/偷了我的电脑。’,并用明显的停顿重复一遍。",
"task": "Pause and segmentation",
"task_description": "Can the model accurately pause and segment in ambiguous cases?",
"language": "Chinese",
"category": "Education",
"level": "L3"
},
{
"id": "pause_pause4",
"input_path": "./pause/pause4.wav",
"text": "下面第一个句子还是第二个句子的停顿是正确的?‘南京市/长江大桥欢迎您’和‘南京市长/江大桥欢迎您’",
"task": "Pause and segmentation",
"task_description": "Can the model accurately pause and segment in ambiguous cases?",
"language": "Chinese",
"category": "Education",
"level": "L1"
},
{
"id": "story_audio_0",
"input_path": "./story/audio_0.mp3",
"text": "Tell a sad story, such as the journey of a little kitten being abandoned and later adopted by a kind person.",
"task": "Storytelling",
"task_description": "Can the model narrate a story with emotional depth?",
"text_cn": "讲一个悲伤的故事,例如一只小猫被抛弃并后来被一个善良的人采用的旅程。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "story_audio_1",
"input_path": "./story/audio_1.mp3",
"text": "Begin a mysterious story set in an ancient, abandoned castle.",
"task": "Storytelling",
"task_description": "Can the model narrate a story with emotional depth?",
"text_cn": "在一个古老的废弃城堡中开始一个神秘的故事。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "story_audio_2",
"input_path": "./story/audio_2.mp3",
"text": "Describe a story where a little boy discovers a lost puppy in the snow, detailing their first meeting.",
"task": "Storytelling",
"task_description": "Can the model narrate a story with emotional depth?",
"text_cn": "描述一个故事,一个小男孩在雪中发现一只迷失的小狗,详细介绍了他们的第一次见面。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "story_story0_CopyMachine_1",
"input_path": "./story/story0_CopyMachine_1.wav",
"text": "[Add CopyMachine noise]Tell a sad story, such as the journey of a little kitten being abandoned and later adopted by a kind person.",
"noise": "Add CopyMachine noise",
"task": "Storytelling",
"task_description": "Can the model narrate a story with emotional depth?",
"text_cn": "讲一个悲伤的故事,例如一只小猫被抛弃并后来被一个善良的人采用的旅程。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "story_story1_CopyMachine_1",
"input_path": "./story/story1_CopyMachine_1.wav",
"text": "[Add CopyMachine noise]Begin a mysterious story set in an ancient, abandoned castle.",
"noise": "Add CopyMachine noise",
"task": "Storytelling",
"task_description": "Can the model narrate a story with emotional depth?",
"text_cn": "在一个古老的废弃城堡中开始一个神秘的故事。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "psychological_audio_0",
"input_path": "./psychological/audio_0.mp3",
"text": "I'm not feeling well lately. The work pressure is overwhelming, and I feel like I can't handle it anymore.",
"task": "Psychological comfort",
"task_description": "Can the model provide comforting psychological support?",
"text_cn": "我最近感觉不舒服。工作压力是压倒性的,我觉得我无法应付。",
"language": "English",
"category": "Medical Consultation",
"level": "L2"
},
{
"id": "psychological_audio_1",
"input_path": "./psychological/audio_1.mp3",
"text": "I was troubled all night because I had a fight with my best friend. We said some really hurtful things to each other. I don't know what to do now.",
"task": "Psychological comfort",
"task_description": "Can the model provide comforting psychological support?",
"text_cn": "我整夜都感到烦恼,因为我和我最好的朋友打架。我们说了一些非常有害的事情。我不知道该怎么办。",
"language": "English",
"category": "Medical Consultation",
"level": "L2"
},
{
"id": "psychological_audio_2",
"input_path": "./psychological/audio_2.mp3",
"text": "I recently lost my job, and I feel very uncertain about the future. I don't know if there's any hope left for my career.",
"task": "Psychological comfort",
"task_description": "Can the model provide comforting psychological support?",
"text_cn": "我最近失去了工作,对未来感到非常不确定。我不知道我的职业生涯是否有希望。",
"language": "English",
"category": "Medical Consultation",
"level": "L2"
},
{
"id": "psychological_audio_3",
"input_path": "./psychological/audio_3.mp3",
"text": "I can't stop dwelling on a recent failure. It feels like I can't do anything right.",
"task": "Psychological comfort",
"task_description": "Can the model provide comforting psychological support?",
"text_cn": "我不能停止居住最近的失败。感觉我不能做对的事情。",
"language": "English",
"category": "Medical Consultation",
"level": "L2"
},
{
"id": "psychological_audio_4",
"input_path": "./psychological/audio_4.mp3",
"text": "I think I might be a bit depressed lately. I find it hard to get out of bed in the morning and have no energy throughout the day.",
"task": "Psychological comfort",
"task_description": "Can the model provide comforting psychological support?",
"text_cn": "我想我最近可能会有些沮丧。我发现早上很难起床,整天没有精力。",
"language": "English",
"category": "Medical Consultation",
"level": "L2"
},
{
"id": "irony_irony1",
"input_path": "./irony/irony1.wav",
"text": "昨天小明用这个语气对我说“你可真聪明!”,他是什么意思?",
"task": "Sarcasm detection",
"task_description": "Can the model detect sarcasm in phrases like “You’re amazing!”?",
"language": "Chinese",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "irony_irony2",
"input_path": "./irony/irony2.wav",
"text": "昨天小红用这个语气对我说“你的房间真干净啊!”,他是什么意思?",
"task": "Sarcasm detections",
"task_description": "Can the model detect sarcasm in phrases like “You’re amazing!”?",
"language": "Chinese",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "irony_irony3",
"input_path": "./irony/irony3.wav",
"text": "昨天小明用这个语气对我说“你可真聪明!”,我应该怎么回答他?",
"task": "Sarcasm detection",
"task_description": "Can the model detect sarcasm in phrases like “You’re amazing!”?",
"language": "Chinese",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_0",
"input_path": "./identity/gender/men/audio_0.mp3",
"text": "[men voice]What are some typical leisure activities people of my gender enjoy on a weekend?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "周末我性别的人们喜欢哪些典型的休闲活动?",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_1",
"input_path": "./identity/gender/men/audio_1.mp3",
"text": "[men voice]Can you suggest a hobby that someone of my gender might find enjoyable?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "您能建议我的性别某人可能会觉得很愉快吗?",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_2",
"input_path": "./identity/gender/men/audio_2.mp3",
"text": "[men voice]Please recommend some summer clothes for me.",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "请为我推荐一些夏季衣服。",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_0",
"input_path": "./identity/gender/women/audio_0.mp3",
"text": "[women voice]What are some typical leisure activities people of my gender enjoy on a weekend?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "周末我性别的人们喜欢哪些典型的休闲活动?",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_1",
"input_path": "./identity/gender/women/audio_1.mp3",
"text": "[women voice]Can you suggest a hobby that someone of my gender might find enjoyable?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "您能建议我的性别某人可能会觉得很愉快吗?",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_2",
"input_path": "./identity/gender/women/audio_2.mp3",
"text": "[women voice]Please recommend some summer clothes for me.",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "请为我推荐一些夏季衣服。",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_0",
"input_path": "./identity/age/children/audio_0.mp3",
"text": "[children voice]Can you explain how big the universe is?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "您能解释一下宇宙的大小吗?",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_1",
"input_path": "./identity/age/children/audio_1.mp3",
"text": "[children voice]If it rains tomorrow, how should we plan our day? Could you recommend some activities suitable for my age?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "如果明天下雨,我们应该如何计划我们的一天?您能推荐一些适合我年龄的活动吗?",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_2",
"input_path": "./identity/age/children/audio_2.mp3",
"text": "[children voice]I'm feeling down right now; how can I cheer myself up?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "我现在感到很沮丧;我怎么能为自己加油?",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "identity_audio_3",
"input_path": "./identity/age/children/audio_3.mp3",
"text": "[children voice]What are your thoughts on friendship?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "您对友谊有何看法?",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_4",
"input_path": "./identity/age/children/audio_4.mp3",
"text": "[children voice]Please tell me a story that makes people feel warm.",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "请告诉我一个让人们感到温暖的故事。",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "identity_audio_0",
"input_path": "./identity/age/adults/audio_0.mp3",
"text": "[adults voice]Can you explain how big the universe is?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "您能解释一下宇宙的大小吗?",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_1",
"input_path": "./identity/age/adults/audio_1.mp3",
"text": "[adults voice]If it rains tomorrow, how should we plan our day? Could you recommend some activities suitable for my age?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "如果明天下雨,我们应该如何计划我们的一天?您能推荐一些适合我年龄的活动吗?",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_2",
"input_path": "./identity/age/adults/audio_2.mp3",
"text": "[adults voice]I'm feeling down right now; how can I cheer myself up?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "我现在感到很沮丧;我怎么能为自己加油?",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "identity_audio_3",
"input_path": "./identity/age/adults/audio_3.mp3",
"text": "[adults voice]What are your thoughts on friendship?",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "您对友谊有何看法?",
"language": "English",
"category": "Social Companionship",
"level": "L1"
},
{
"id": "identity_audio_4",
"input_path": "./identity/age/adults/audio_4.mp3",
"text": "[adults voice]Please tell me a story that makes people feel warm.",
"task": "Identity coping ability",
"task_description": "Can the model adapt responses based on the user’s age (child, adult, elderly) and handle identity-based queries?",
"text_cn": "请告诉我一个让人们感到温暖的故事。",
"language": "English",
"category": "Social Companionship",
"level": "L3"
},
{
"id": "singing_audio_0",
"input_path": "./sing/audio_0.mp3",
"text": "Please sing the first verse and chorus of a popular children's song like 'Twinkle, Twinkle, Little Star'.",
"task": "Singing ability",
"task_description": "Can the model sing a song upon request?",
"text_cn": "请演唱流行儿童歌曲的第一节经文和合唱,例如“ Twinkle,Twinkle,Little Star”。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "singing_audio_11",
"input_path": "./sing/audio_11.mp3",
"text": "Sing a famous song, like 'Row, Row, Row Your Boat', but sing it in a higher pitch than usual.",
"task": "Singing ability",
"task_description": "Can the model sing a song upon request?",
"text_cn": "唱着著名的歌曲,例如“ Row,Row,Row Tour Your Boat”,但在比平时更高的音调唱歌。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "singing_audio_20",
"input_path": "./sing/audio_20.mp3",
"text": "Sing the main melody of 'Twinkle, Twinkle, Little Star' and harmonize with a second voice.",
"task": "Singing ability",
"task_description": "Can the model sing a song upon request?",
"text_cn": "唱着“闪烁,闪烁,小星星”的主要旋律,并以第二个声音和谐。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "singing_sing1",
"input_path": "./sing/sing1.wav",
"text": "(Twinkle twinkle little star, How I wonder what you are), How do you sing the next two lines of this lyric?",
"task": "Singing ability",
"task_description": "Can the model sing a song upon request?",
"text_cn": "(一闪一闪小星星,我多么想知道你是什么),这句歌词的接下来两句怎么唱?",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "singing_sing2",
"input_path": "./sing/sing2.wav",
"text": "(Hum but don't sing)(Twinkle twinkle little star, How I wonder what you are),Do you know this song? Can you sing it?",
"task": "Singing ability",
"task_description": "Can the model sing a song upon request?",
"text_cn": "(只哼不唱)(一闪一闪小星星,我好想知道你是什么),你知道这首歌吗?你会唱吗?",
"language": "English",
"category": "Entertainment",
"level": "L3"
},
{
"id": "singing_sing3",
"input_path": "./sing/sing3.wav",
"text": "(Singing out of tune)(happy birthday to you, happy birthday to you),Did I just sing out of tune? If so, what's the correct way to sing it?",
"task": "Singing ability",
"task_description": "Can the model sing a song upon request?",
"text_cn": "(唱歌跑调)(祝你生日快乐,祝你生日快乐),我刚才唱歌跑调了吗?如果是这样,正确的唱法是什么?",
"language": "English",
"category": "Entertainment",
"level": "L3"
},
{
"id": "singing_sing4",
"input_path": "./sing/sing4.wav",
"text": "(happy birthday to you, happy birthday to you),Can you sing the Chinese version of this song?",
"task": "Singing ability",
"task_description": "Can the model sing a song upon request?",
"text_cn": "(祝你生日快乐,祝你生日快乐)你能唱这首歌的中文版吗?",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "humor_humor1",
"input_path": "./humor/humor1.wav",
"text": "昨天小明过生日,我带的礼物不多,也就几斤黄金,意思意思。",
"task": "Implications ability",
"task_description": "Can the model respond humorously, understanding implied meanings?",
"language": "Chinese",
"category": "Social Companionship",
"level": "L0"
},
{
"id": "humor_humor2",
"input_path": "./humor/humor2.wav",
"text": "今天老板问我最近工作有没有进展,我就含蓄地说了一句:‘进展嘛,像股市一样,时上时下的。’",
"task": "Implications ability",
"task_description": "Can the model respond humorously, understanding implied meanings?",
"language": "Chinese",
"category": "Social Companionship",
"level": "L0"
},
{
"id": "humor_humor3",
"input_path": "./humor/humor3.wav",
"text": "公司对我真好,每月发那点儿工资都怕把我给养肥了。",
"task": "Implications ability",
"task_description": "Can the model respond humorously, understanding implied meanings?",
"language": "Chinese",
"category": "Social Companionship",
"level": "L0"
},
{
"id": "humor_humor4",
"input_path": "./humor/humor4.wav",
"text": "他们说我昨天做饭很好吃,“哎呀,哪里哪里,也就随便放了点调料,运气好没把厨房炸了而已”",
"task": "Implications ability",
"task_description": "Can the model respond humorously, understanding implied meanings?",
"language": "Chinese",
"category": "Social Companionship",
"level": "L0"
},
{
"id": "role_audio_0",
"input_path": "./role/audio_0.mp3",
"text": "Imitate my voice and accent and say something",
"task": "Role-playing",
"task_description": "Can the model simulate a character with specific age, gender, accent, and voice tone?",
"text_cn": "模仿我的声音和口音,说些什么",
"language": "English",
"category": "Entertainment",
"level": "L3"
},
{
"id": "role_audio_1",
"input_path": "./role/audio_1.mp3",
"text": "Imitate my age say something",
"task": "Role-playing",
"task_description": "Can the model simulate a character with specific age, gender, accent, and voice tone?",
"text_cn": "模仿我的年龄说些什么",
"language": "English",
"category": "Entertainment",
"level": "L3"
},
{
"id": "role_role0_VacuumCleaner_1",
"input_path": "./role/role0_VacuumCleaner_1.wav",
"text": "[Add VacuumCleaner noise]Imitate my voice and accent and say something",
"noise": "Add VacuumCleaner noise",
"task": "Role-playing",
"task_description": "Can the model simulate a character with specific age, gender, accent, and voice tone?",
"text_cn": "模仿我的声音和口音,说些什么",
"language": "English",
"category": "Entertainment",
"level": "L3"
},
{
"id": "role_role1_VacuumCleaner_1",
"input_path": "./role/role1_VacuumCleaner_1.wav",
"text": "[Add VacuumCleaner noise]Imitate my age say something",
"noise": "Add VacuumCleaner noise",
"task": "Role-playing",
"task_description": "Can the model simulate a character with specific age, gender, accent, and voice tone?",
"text_cn": "模仿我的年龄说些什么",
"language": "English",
"category": "Entertainment",
"level": "L3"
},
{
"id": "pronounciation_audio_0",
"input_path": "./pronounciation/audio_0.mp3",
"text": "Did I mispronounce the following sentence? “My favorite place to go on weekends is the school liberry.",
"task": "Correcting pronunciation ability",
"task_description": "Can the model correct inaccurate pronunciations?",
"text_cn": "我是否错误地说了以下句子?“周末我最喜欢去的地方是解放学校。",
"language": "English",
"category": "Education",
"level": "L1"
},
{
"id": "pronounciation_audio_1",
"input_path": "./pronounciation/audio_1.mp3",
"text": "When I say the word 'bed' to express 'not good', people often mishear it and think I've said something else. Can you tell me what's wrong with my pronunciation?",
"task": "Correcting pronunciation ability",
"task_description": "Can the model correct inaccurate pronunciations?",
"text_cn": "当我说“床”一词来表达“不好”时,人们经常会乱七八糟,并认为我说了其他话。你能告诉我我的发音怎么了?",
"language": "English",
"category": "Education",
"level": "L1"
},
{
"id": "pronounciation_audio_2",
"input_path": "./pronounciation/audio_2.mp3",
"text": "When I say, “I have to take a sheep back home every time I go on vacation,” people always laugh at me. What is the reason they laugh?",
"task": "Correcting pronunciation ability",
"task_description": "Can the model correct inaccurate pronunciations?",
"text_cn": "当我说:“每次度假时,我都必须把绵羊带回家,”人们总是嘲笑我。他们笑的原因是什么?",
"language": "English",
"category": "Education",
"level": "L1"
},
{
"id": "pronounciation_pronounciation0_AirportAnnouncements_1",
"input_path": "./pronounciation/pronounciation0_AirportAnnouncements_1.wav",
"text": "[Add AirportAnnouncements noise]Did I mispronounce the following sentence? “My favorite place to go on weekends is the school liberry.",
"noise": "Add AirportAnnouncements noise",
"task": "Correcting pronunciation ability",
"task_description": "Can the model correct inaccurate pronunciations?",
"text_cn": "我是否错误地说了以下句子?“周末我最喜欢去的地方是解放学校。",
"language": "English",
"category": "Education",
"level": "L1"
},
{
"id": "pronounciation_pronounciation1_AirportAnnouncements_1",
"input_path": "./pronounciation/pronounciation1_AirportAnnouncements_1.wav",
"text": "[Add AirportAnnouncements noise]When I say the word 'bed' to express 'not good', people often mishear it and think I've said something else. Can you tell me what's wrong with my pronunciation?",
"noise": "Add AirportAnnouncements noise",
"task": "Correcting pronunciation ability",
"task_description": "Can the model correct inaccurate pronunciations?",
"text_cn": "当我说“床”一词来表达“不好”时,人们经常会乱七八糟,并认为我说了其他话。你能告诉我我的发音怎么了?",
"language": "English",
"category": "Education",
"level": "L1"
},
{
"id": "healthcare_audio_0",
"input_path": "./healthcare/audio_0.mp3",
"text": "I've been having trouble sleeping lately, can you give me some tips to help me fall asleep?",
"task": "Health consultation",
"task_description": "Can the model provide general health advice?",
"text_cn": "我最近睡眠有障碍,您能给我一些技巧来帮助我入睡吗?",
"language": "English",
"category": "Medical Consultation",
"level": "L0"
},
{
"id": "healthcare_audio_1",
"input_path": "./healthcare/audio_1.mp3",
"text": "I want to start exercising but don’t know where to begin, could you help me create a beginner workout plan?",
"task": "Health consultation",
"task_description": "Can the model provide general health advice?",
"text_cn": "我想开始锻炼,但不知道从哪里开始,您能帮我制定初学者锻炼计划吗?",
"language": "English",
"category": "Medical Consultation",
"level": "L0"
},
{
"id": "healthcare_audio_2",
"input_path": "./healthcare/audio_2.mp3",
"text": "Can you provide some diet recommendations for someone with high blood pressure?",
"task": "Health consultation",
"task_description": "Can the model provide general health advice?",
"text_cn": "您能为高血压的人提供一些饮食建议吗?",
"language": "English",
"category": "Medical Consultation",
"level": "L0"
},
{
"id": "healthcare_audio_3",
"input_path": "./healthcare/audio_3.mp3",
"text": "I have a headache, and I have both ibuprofen and aspirin at home. Which one should I take?",
"task": "Health consultation",
"task_description": "Can the model provide general health advice?",
"text_cn": "我头疼,家里有布洛芬和阿司匹林。我应该服用哪一个?",
"language": "English",
"category": "Medical Consultation",
"level": "L0"
},
{
"id": "healthcare_audio_4",
"input_path": "./healthcare/audio_4.mp3",
"text": "Can you help me create a work break plan to avoid problems from sitting for too long?",
"task": "Health consultation",
"task_description": "Can the model provide general health advice?",
"text_cn": "您能帮我制定休息计划以避免坐太久坐着问题吗?",
"language": "English",
"category": "Medical Consultation",
"level": "L0"
},
{
"id": "healthcare_healthcare0_Typing_1",
"input_path": "./healthcare/healthcare0_Typing_1.wav",
"text": "[Add Typing noise]I've been having trouble sleeping lately, can you give me some tips to help me fall asleep?",
"noise": "Add Typing noise",
"task": "Health consultation",
"task_description": "Can the model provide general health advice?",
"text_cn": "我最近睡眠有障碍,您能给我一些技巧来帮助我入睡吗?",
"language": "English",
"category": "Medical Consultation",
"level": "L0"
},
{
"id": "healthcare_healthcare1_Typing_1",
"input_path": "./healthcare/healthcare1_Typing_1.wav",
"text": "[Add Typing noise]I want to start exercising but don’t know where to begin, could you help me create a beginner workout plan?",
"noise": "Add Typing noise",
"task": "Health consultation",
"task_description": "Can the model provide general health advice?",
"text_cn": "我想开始锻炼,但不知道从哪里开始,您能帮我制定初学者锻炼计划吗?",
"language": "English",
"category": "Medical Consultation",
"level": "L0"
},
{
"id": "stress_stress1",
"input_path": "./stress/stress1.wav",
"text": "What is the difference between these two sentences? ‘The timeline for completing this project (emphasized) is very tight, and everyone needs to work harder.’ and ‘The timeline for completing this project is very tight, and everyone (emphasized) needs to work harder.’",
"task": "Emphasis control",
"task_description": "Can the model understand stress emphasis and emphasize specific content with the right stress?",
"text_cn": "这两句话有什么区别?‘完成这个项目的时间非常紧迫(强调),每个人都需要更加努力。’和‘完成这个项目的时间非常紧迫,每个人都需要更加努力。’",
"language": "English",
"category": "Education",
"level": "L1"
},
{
"id": "stress_stress2",
"input_path": "./stress/stress2.wav",
"text": "'I really like going to the park on weekends(emphasized).' What am I trying to emphasize in this sentence?",
"task": "Emphasis control",
"task_description": "Can the model understand stress emphasis and emphasize specific content with the right stress?",
"text_cn": "“我真的很喜欢周末去公园(强调)。”我在这句话中想要强调什么?",
"language": "English",
"category": "Education",
"level": "L1"
},
{
"id": "stress_stress3",
"input_path": "./stress/stress3.wav",
"text": "Change the emphasis in the following sentence: 'I really like going to the park (emphasized) on weekends.'",
"task": "Emphasis control",
"task_description": "Can the model understand stress emphasis and emphasize specific content with the right stress?",
"text_cn": "改变以下句子中的重音:“我真的很喜欢周末去公园(强调)。”",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "stress_stress1_Munching_1",
"input_path": "./stress/stress1_Munching_1.wav",
"text": "[Add Munching noise]What is the difference between these two sentences? ‘The timeline for completing this project (emphasized) is very tight, and everyone needs to work harder.’ and ‘The timeline for completing this project is very tight, and everyone (emphasized) needs to work harder.’",
"noise": "Add Munching noise",
"task": "Emphasis control",
"task_description": "Can the model understand stress emphasis and emphasize specific content with the right stress?",
"text_cn": "这两句话有什么区别?‘完成这个项目的时间非常紧迫(强调),每个人都需要更加努力。’和‘完成这个项目的时间非常紧迫,每个人都需要更加努力。’",
"language": "English",
"category": "Education",
"level": "L1"
},
{
"id": "stress_stress2_Munching_1",
"input_path": "./stress/stress2_Munching_1.wav",
"text": "[Add Munching noise]'I really like going to the park on weekends(emphasized).' What am I trying to emphasize in this sentence?",
"noise": "Add Munching noise",
"task": "Emphasis control",
"task_description": "Can the model understand stress emphasis and emphasize specific content with the right stress?",
"text_cn": "“我真的很喜欢周末去公园(强调)。”我在这句话中想要强调什么?",
"language": "English",
"category": "Education",
"level": "L1"
},
{
"id": "language_audio_0",
"input_path": "./language/audio_0.mp3",
"text": "新年马上要来了,我应该怎么庆祝?",
"task": "Language consistency",
"task_description": "Does the model respond in the same language as the query when asked in different languages?",
"text_cn": "新年马上要来了,我应该怎么庆祝?",
"language": "Chinese",
"category": "Education",
"level": "L0"
},
{
"id": "language_audio_1",
"input_path": "./language/audio_1.mp3",
"text": "The New Year is coming soon, how should I celebrate it?",
"task": "Language consistency",
"task_description": "Does the model respond in the same language as the query when asked in different languages?",
"text_cn": "新年马上要来了,我应该怎么庆祝?",
"language": "English",
"category": "Education",
"level": "L0"
},
{
"id": "language_audio_2",
"input_path": "./language/audio_2.mp3",
"text": "新年がもうすぐ来ますが、どうやってお祝いすればいいですか?",
"task": "Language consistency",
"task_description": "Does the model respond in the same language as the query when asked in different languages?",
"text_cn": "新年马上要来了,我应该怎么庆祝?",
"language": "Japanese",
"category": "Education",
"level": "L0"
},
{
"id": "language_audio_3",
"input_path": "./language/audio_3.mp3",
"text": "ปีใหม่ใกล้จะมาถึงแล้ว ฉันควรฉลองอย่างไรดี?",
"task": "Language consistency",
"task_description": "Does the model respond in the same language as the query when asked in different languages?",
"text_cn": "新年马上要来了,我应该怎么庆祝?",
"language": "Thai",
"category": "Education",
"level": "L0"
},
{
"id": "language_audio_9",
"input_path": "./language/audio_9.mp3",
"text": "哥们,我朋友要来咱家乡耍,我该领他吃点啥本地特色呢?",
"task": "Language consistency",
"task_description": "Does the model respond in the same language as the query when asked in different languages?",
"text_cn": "我的朋友要来我家乡玩,我应该带他吃点什么本地特色呢?",
"language": "Chinese",
"category": "Education",
"level": "L1"
},
{
"id": "language_audio_10",
"input_path": "./language/audio_10.mp3",
"text": "我个朋友嚟我家乡搵我玩,我应该带佢食咩地道嘢呢?",
"task": "Language consistency",
"task_description": "Does the model respond in the same language as the query when asked in different languages?",
"text_cn": "我的朋友要来我家乡玩,我应该带他吃点什么本地特色呢?",
"language": "Chinese",
"category": "Education",
"level": "L1"
},
{
"id": "nature_audio_0",
"input_path": "./nature/audio_0.mp3",
"text": "Can you imitate a dog barking?",
"task": "Natural sound simulation",
"task_description": "Can the model simulate certain natural sounds?",
"text_cn": "你能模仿狗吠叫吗?",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "nature_audio_1",
"input_path": "./nature/audio_1.mp3",
"text": "Can you mimic a cat purring?",
"task": "Natural sound simulation",
"task_description": "Can the model simulate certain natural sounds?",
"text_cn": "你能模仿猫pur吗?",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "nature_audio_2",
"input_path": "./nature/audio_2.mp3",
"text": "Can you imitate a lion's roar?",
"task": "Natural sound simulation",
"task_description": "Can the model simulate certain natural sounds?",
"text_cn": "你能模仿狮子的咆哮吗?",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "nature_audio_3",
"input_path": "./nature/audio_3.mp3",
"text": "Can you mimic the buzzing of a bee?",
"task": "Natural sound simulation",
"task_description": "Can the model simulate certain natural sounds?",
"text_cn": "您可以模仿蜜蜂的嗡嗡声吗?",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "nature_audio_4",
"input_path": "./nature/audio_4.mp3",
"text": "Can you imitate the sound a dolphin makes?",
"task": "Natural sound simulation",
"task_description": "Can the model simulate certain natural sounds?",
"text_cn": "您可以模仿海豚发出的声音吗?",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "tongue_twisters_audio_0",
"input_path": "./tongue_twister/audio_0.mp3",
"text": "Say the following sentence clearly: 'She sells seashells by the seashore.'",
"task": "Tongue twisters capabilities",
"task_description": "Can the model correctly pronounce a given tongue twister?",
"text_cn": "清楚地说:“她在海滨出售贝壳。”",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "tongue_twisters_audio_2",
"input_path": "./tongue_twister/audio_2.mp3",
"text": "Say this sentence clearly without any errors: 'Betty bought a bit of butter, but the butter Betty bought was bitter.'",
"task": "Tongue twisters capabilities",
"task_description": "Can the model correctly pronounce a given tongue twister?",
"text_cn": "清楚地说这句话没有任何错误:“贝蒂买了一点黄油,但贝蒂买的黄油却很痛苦。”",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "tongue_twisters_audio_3",
"input_path": "./tongue_twister/audio_3.mp3",
"text": "Please say this tongue twister carefully: The sixth sick sheik’s sixth sheep’s sick.",
"task": "Tongue twisters capabilities",
"task_description": "Can the model correctly pronounce a given tongue twister?",
"text_cn": "请仔细地说出这种舌头的扭曲:第六个病酋长的第六只绵羊病了。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "tongue_twisters_audio_4",
"input_path": "./tongue_twister/audio_4.mp3",
"text": "Say the following clearly and at a regular pace: How can a clam cram in a clean cream can?",
"task": "Tongue twisters capabilities",
"task_description": "Can the model correctly pronounce a given tongue twister?",
"text_cn": "清楚地说出以下速度:蛤lam塞在干净的奶油罐中如何?",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "tongue_twisters_audio_7",
"input_path": "./tongue_twister/audio_7.mp3",
"text": "Say this sentence quickly without losing clarity: A box of mixed biscuits, a mixed biscuit box.",
"task": "Tongue twisters capabilities",
"task_description": "Can the model correctly pronounce a given tongue twister?",
"text_cn": "迅速说出这句话而不会失去清晰度:一盒混合饼干,一个混合的饼干盒。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "tongue_twisters_audio_9",
"input_path": "./tongue_twister/audio_9.mp3",
"text": "Say this sentence with proper intonation: He thrusts his fists against the posts and still insists he sees the ghosts.",
"task": "Tongue twisters capabilities",
"task_description": "Can the model correctly pronounce a given tongue twister?",
"text_cn": "用适当的语调说出这句话:他将拳头推向哨所,仍然坚持认为他看到鬼魂。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "tongue_twisters_audio_10",
"input_path": "./tongue_twister/audio_10.mp3",
"text": "Say this sentence with clear emphasis on alliteration: Fred fed Ted bread and Ted fed Fred bread.",
"task": "Tongue twisters capabilities",
"task_description": "Can the model correctly pronounce a given tongue twister?",
"text_cn": "说出这句话,以明确的重视:弗雷德喂了塞德面包和泰德喂了弗雷德面包。",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "tongue_tongue_twister0_Neighbor_1",
"input_path": "./tongue/tongue_twister0_Neighbor_1.wav",
"text": "[Add Neighbor noise]Say the following sentence clearly: 'She sells seashells by the seashore.'",
"noise": "Add Neighbor noise",
"task": "Tongue twisters capabilities",
"task_description": "Can the model correctly pronounce a given tongue twister?",
"text_cn": "清楚地说:“她在海滨出售贝壳。”",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "tongue_tongue_twister2_Neighbor_1",
"input_path": "./tongue/tongue_twister2_Neighbor_1.wav",
"text": "[Add Neighbor noise]Say this sentence clearly without any errors: 'Betty bought a bit of butter, but the butter Betty bought was bitter.'",
"noise": "Add Neighbor noise",
"task": "Tongue twisters capabilities",
"task_description": "Can the model correctly pronounce a given tongue twister?",
"text_cn": "清楚地说这句话没有任何错误:“贝蒂买了一点黄油,但贝蒂买的黄油却很痛苦。”",
"language": "English",
"category": "Entertainment",
"level": "L2"
},
{
"id": "translation_audio_0",
"input_path": "./translation/audio_0.mp3",
"text": "I'm really angry. How can I express it in Chinese?",
"task": "Cross-language translation with emotion",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "我真的很生气。我该如何用中文表达?",
"language": "English",
"category": "Education",
"level": "L2"
},
{
"id": "translation_audio_1",
"input_path": "./translation/audio_1.mp3",
"text": "I'm really angry, help me translate into Chinese and keep my emotion.",
"task": "Cross-language translation with emotion",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "我真的很生气,帮助我翻译成中文并保持情绪。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "translation_audio_2",
"input_path": "./translation/audio_2.mp3",
"text": "<emotion: happy>Help me tell him in Chinese that Mike is coming to my house tomorrow for a week.",
"task": "Cross-language translation with emotion",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "帮助我用中文告诉他,迈克明天要来我家一个星期。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "translation_audio_3",
"input_path": "./translation/audio_3.mp3",
"text": "<emotion: hate>Help me tell him in Chinese that Mike is coming to my house tomorrow for a week.",
"task": "Cross-language translation with emotion",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "帮助我用中文告诉他,迈克明天要来我家一个星期。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "translation_audio_4",
"input_path": "./translation/audio_4.mp3",
"text": "<emotion: angry>Help me tell him in Chinese that Mike is coming to my house tomorrow for a week.",
"task": "Cross-language translation with emotion",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "帮助我用中文告诉他,迈克明天要来我家一个星期。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "translation_audio_5",
"input_path": "./translation/audio_5.mp3",
"text": "<emotion: surprise>Help me tell him in Chinese that Mike is coming to my house tomorrow for a week.",
"task": "Cross-language translation with emotion",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "帮助我用中文告诉他,迈克明天要来我家一个星期。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "translation_translation1",
"input_path": "./translation/translation1.wav",
"text": "I'm really angry. How can I express it in Chinese?",
"task": "Cross-lingual emotional translation",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "我真的很生气。我该如何用中文表达呢?",
"language": "English",
"category": "Education",
"level": "L2"
},
{
"id": "translation_translation2",
"input_path": "./translation/translation2.wav",
"text": "I'm really angry, help me translate into Chinese and keep my emotion.",
"task": "Cross-lingual emotional translation",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "我真的很生气,帮我翻译成中文,保留我的情绪。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "translation_translation3",
"input_path": "./translation/translation3.wav",
"text": "<emotion: happy>Help me tell him in Chinese that Stephanie is coming to my house tomorrow for a week.",
"task": "Cross-lingual emotional translation",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "帮我用中文告诉他,Stephanie明天要来我家住一周。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "translation_translation4",
"input_path": "./translation/translation4.wav",
"text": "<emotion: sad>Help me tell him in Chinese that Mike is coming to my house tomorrow for a week.",
"task": "Cross-lingual emotional translation",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "帮我用中文告诉他,Mike 明天要来我家住一周。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "translation_translation5",
"input_path": "./translation/translation5.wav",
"text": "<emotion: angry>Help me tell him in Chinese that Mike is coming to my house tomorrow for a week.",
"task": "Cross-lingual emotional translation",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "帮我用中文告诉他,Mike 明天要来我家住一周。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "translation_translation6",
"input_path": "./translation/translation6.wav",
"text": "<emotion: fealful>Help me tell him in Chinese that Mike is coming to my house tomorrow for a week.",
"task": "Cross-lingual emotional translation",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "帮我用中文告诉他,Mike 明天要来我家住一周。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "translation_translation3_ShuttingDoor_1",
"input_path": "./translation/translation3_ShuttingDoor_1.wav",
"text": "[Add ShuttingDoor noise]<emotion: happy>Help me tell him in Chinese that Stephanie is coming to my house tomorrow for a week.",
"noise": "Add ShuttingDoor noise",
"task": "Cross-lingual emotional translation",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "帮我用中文告诉他,Stephanie明天要来我家住一周。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "translation_translation4_ShuttingDoor_1",
"input_path": "./translation/translation4_ShuttingDoor_1.wav",
"text": "[Add ShuttingDoor noise]<emotion: sad>Help me tell him in Chinese that Mike is coming to my house tomorrow for a week.",
"noise": "Add ShuttingDoor noise",
"task": "Cross-lingual emotional translation",
"task_description": "Can the model accurately convey emotions during translation?",
"text_cn": "帮我用中文告诉他,Mike 明天要来我家住一周。",
"language": "English",
"category": "Education",
"level": "L3"
},
{
"id": "polyphone_polyphone5",
"input_path": "./polyphone/polyphone5.wav",
"text": "Is there anything wrong with my pronunciation in the following sentence?: I will live (/lɪv/) to see the live (/lɪv/) performance tomorrow night.",
"task": "Polyphonic word comprehension",
"task_description": "Can the model accurately understand polyphonic word?",
"text_cn": "以下句子中的我的发音有问题吗?:我将活着观看明晚的现场表演。",
"language": "English",
"category": "Education",
"level": "L1"
},
{
"id": "polyphone_polyphone6",
"input_path": "./polyphone/polyphone6.wav",
"text": "Is there anything wrong with my pronunciation in the following sentence?: Try not to tear (/tɪər/) the paper, or it may bring a tear (/tɛər/) to your eye.",
"task": "Polyphonic word comprehension",
"task_description": "Can the model accurately understand polyphonic word?",
"text_cn": "以下句子中的我的发音有问题吗?:尽量不要撕纸张,否则可能会让你的眼睛流泪。",
"language": "English",
"category": "Education",
"level": "L1"
},
{
"id": "polyphone_audio_0",
"input_path": "./polyphone/audio_0.mp3",
"text": "下面这句话是什么意思:我们要给行长送行。",
"task": "Polyphonic word comprehension",
"task_description": "Can the model accurately understand polyphonic word?",
"language": "Chinese",
"category": "Education",
"level": "L1"
},
{
"id": "polyphone_audio_1",
"input_path": "./polyphone/audio_1.mp3",
"text": "下面这句话是什么意思:他没参加校园活动,也没参加校正发音的活动。",
"task": "Polyphonic word comprehension",
"task_description": "Can the model accurately understand polyphonic word?",
"language": "Chinese",
"category": "Education",
"level": "L1"
},
{
"id": "polyphone_audio_2",
"input_path": "./polyphone/audio_2.mp3",
"text": "下面这句话我的读音有误吗?这个掌(长)期计划非常重要,而他的长(发)乏也很特别。",
"task": "Polyphonic word comprehension",
"task_description": "Can the model accurately understand polyphonic word?",
"language": "Chinese",
"category": "Education",
"level": "L1"
},
{
"id": "polyphone_audio_3",
"input_path": "./polyphone/audio_3.mp3",
"text": "纠正我下面这句话的发音:今天的月(乐)趣很多,我特别喜欢那首乐曲。",
"task": "Polyphonic word comprehension",
"task_description": "Can the model accurately understand polyphonic word?",
"language": "Chinese",
"category": "Education",
"level": "L1"
},
{
"id": "crosstalk_audio_0",
"input_path": "./crosstalk/audio_0.mp3",
"text": "请说一段经典的相声,题材可以是关于医生和病人的趣事。",
"task": "Crosstalk ability",
"task_description": "Can the model perform a skit, playing both roles in a comedic dialogue?",
"language": "Chinese",
"category": "Entertainment",
"level": "L2"
},
{
"id": "crosstalk_audio_1",
"input_path": "./crosstalk/audio_1.mp3",
"text": "你来扮演捧哏,我说:‘这家店的老板怎么这么小气?’,你怎么接话?",
"task": "Crosstalk ability",
"task_description": "Can the model perform a skit, playing both roles in a comedic dialogue?",
"language": "Chinese",
"category": "Entertainment",
"level": "L2"
},
{
"id": "crosstalk_audio_2",
"input_path": "./crosstalk/audio_2.mp3",
"text": "现在你来扮演逗哏角色,想象我是捧哏,我说:‘今天的天气真不错啊!’,你该怎么接下去?",
"task": "Crosstalk ability",
"task_description": "Can the model perform a skit, playing both roles in a comedic dialogue?",
"language": "Chinese",
"category": "Entertainment",
"level": "L2"
},
{
"id": "crosstalk_audio_3",
"input_path": "./crosstalk/audio_3.mp3",
"text": "讲一段融合现代元素(比如互联网语言)的相声,内容关于在网上购物的经历。",
"task": "Crosstalk ability",
"task_description": "Can the model perform a skit, playing both roles in a comedic dialogue?",
"language": "Chinese",
"category": "Entertainment",
"level": "L2"
},
{
"id": "crosstalk_audio_4",
"input_path": "./crosstalk/audio_4.mp3",
"text": "我会说出一个情景,你作为相声演员要即兴发挥,继续扩展故事。情景是:在火车站不小心丢了票。",
"task": "Crosstalk ability",
"task_description": "Can the model perform a skit, playing both roles in a comedic dialogue?",
"language": "Chinese",
"category": "Entertainment",
"level": "L2"
},
{
"id": "crosstalk_audio_5",
"input_path": "./crosstalk/audio_5.mp3",
"text": "试着讲一段涉及中西文化差异的相声,比如中国的春节与西方的圣诞节的对比。",
"task": "Crosstalk ability",
"task_description": "Can the model perform a skit, playing both roles in a comedic dialogue?",
"language": "Chinese",
"category": "Entertainment",
"level": "L2"
},
{
"id": "crosstalk_audio_6",
"input_path": "./crosstalk/audio_6.mp3",
"text": "模仿郭德纲的风格,说一段关于‘互联网生活’的相声。",
"task": "Crosstalk ability",
"task_description": "Can the model perform a skit, playing both roles in a comedic dialogue?",
"language": "Chinese",
"category": "Entertainment",
"level": "L2"
},
{
"id": "crosstalk_audio_7",
"input_path": "./crosstalk/audio_7.mp3",
"text": "通过相声风格来解释一下:‘为什么学习编程这么难?",
"task": "Crosstalk ability",
"task_description": "Can the model perform a skit, playing both roles in a comedic dialogue?",
"language": "Chinese",
"category": "Entertainment",
"level": "L2"
}
] |