File size: 133,844 Bytes
63272b2 | 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 | {"text": "I was following the instruction exactly.", "label_name": "nervous", "label": 1}
{"text": "I can stand if you want me to.", "label_name": "nervous", "label": 1}
{"text": "Here is my license, is that enough?", "label_name": "nervous", "label": 1}
{"text": "Is that door supposed to look like that?", "label_name": "nervous", "label": 1}
{"text": "I am taking the ticket out of my pocket.", "label_name": "nervous", "label": 1}
{"text": "I am listening to everything you say.", "label_name": "nervous", "label": 1}
{"text": "Is the ticket supposed to be this color?", "label_name": "nervous", "label": 1}
{"text": "I am trying to remember the date.", "label_name": "nervous", "label": 1}
{"text": "Is it safe to use the handle?", "label_name": "nervous", "label": 1}
{"text": "I thought the email was for the manager.", "label_name": "nervous", "label": 1}
{"text": "I forgot what the password was for.", "label_name": "nervous", "label": 1}
{"text": "I don't know why the key is doing that.", "label_name": "nervous", "label": 1}
{"text": "The car was already broken when I got here.", "label_name": "nervous", "label": 1}
{"text": "Please just tell me what to stand.", "label_name": "nervous", "label": 1}
{"text": "Is it safe to open the handle?", "label_name": "nervous", "label": 1}
{"text": "I am taking the phone out of my pocket.", "label_name": "nervous", "label": 1}
{"text": "I felt a heat in my leg.", "label_name": "nervous", "label": 1}
{"text": "The result has been flashing for a while.", "label_name": "nervous", "label": 1}
{"text": "I will stay right here until you say so.", "label_name": "nervous", "label": 1}
{"text": "Is the ticket supposed to be this color?", "label_name": "nervous", "label": 1}
{"text": "I lost the question, I am sorry.", "label_name": "nervous", "label": 1}
{"text": "I am not sure where the sound went.", "label_name": "nervous", "label": 1}
{"text": "I am worried about the smoke.", "label_name": "nervous", "label": 1}
{"text": "I think the answer is no.", "label_name": "nervous", "label": 1}
{"text": "Did you receive the answer I sent?", "label_name": "nervous", "label": 1}
{"text": "I was waiting for the message to start.", "label_name": "nervous", "label": 1}
{"text": "I am worried about the mark.", "label_name": "nervous", "label": 1}
{"text": "The smoke has been shaking for a while.", "label_name": "nervous", "label": 1}
{"text": "I think the answer is option B.", "label_name": "nervous", "label": 1}
{"text": "I promise to sit better next time.", "label_name": "nervous", "label": 1}
{"text": "Do you need me to move the answer again?", "label_name": "nervous", "label": 1}
{"text": "I am trying to remember the name.", "label_name": "nervous", "label": 1}
{"text": "Was I supposed to bring the light?", "label_name": "nervous", "label": 1}
{"text": "I heard a click coming from the back.", "label_name": "nervous", "label": 1}
{"text": "I was at the library until noon.", "label_name": "nervous", "label": 1}
{"text": "The money was already broken when I got here.", "label_name": "nervous", "label": 1}
{"text": "I am not sure where the sound went.", "label_name": "nervous", "label": 1}
{"text": "I didn't touch the switch, I promise.", "label_name": "nervous", "label": 1}
{"text": "What happens if the smoke stops?", "label_name": "nervous", "label": 1}
{"text": "The light has been leaking for a while.", "label_name": "nervous", "label": 1}
{"text": "I was at the store until midnight.", "label_name": "nervous", "label": 1}
{"text": "Do you want me to stop now?", "label_name": "nervous", "label": 1}
{"text": "I am worried about the mark.", "label_name": "nervous", "label": 1}
{"text": "I have the receipt right here in my bag.", "label_name": "nervous", "label": 1}
{"text": "Is the report supposed to be this color?", "label_name": "nervous", "label": 1}
{"text": "I was following the email exactly.", "label_name": "nervous", "label": 1}
{"text": "I am worried about the mark.", "label_name": "nervous", "label": 1}
{"text": "I lost the address, I am sorry.", "label_name": "nervous", "label": 1}
{"text": "Is this the signature you were looking for?", "label_name": "nervous", "label": 1}
{"text": "I lost the address, I am sorry.", "label_name": "nervous", "label": 1}
{"text": "I am not sure where the file went.", "label_name": "nervous", "label": 1}
{"text": "Am I allowed to hold the application now?", "label_name": "nervous", "label": 1}
{"text": "Is it okay if I ask for a second?", "label_name": "nervous", "label": 1}
{"text": "Is there a problem with the report?", "label_name": "nervous", "label": 1}
{"text": "Is it okay if I check for a second?", "label_name": "nervous", "label": 1}
{"text": "I have the ticket right here in my bag.", "label_name": "nervous", "label": 1}
{"text": "Does the ticket look okay to you?", "label_name": "nervous", "label": 1}
{"text": "I am worried about the light.", "label_name": "nervous", "label": 1}
{"text": "It might be in the bag, maybe.", "label_name": "nervous", "label": 1}
{"text": "I was waiting for the instruction to start.", "label_name": "nervous", "label": 1}
{"text": "The glass was already broken when I got here.", "label_name": "nervous", "label": 1}
{"text": "I was waiting for the message to start.", "label_name": "nervous", "label": 1}
{"text": "I didn't know I couldn't stand here.", "label_name": "nervous", "label": 1}
{"text": "Did you receive the paper I sent?", "label_name": "nervous", "label": 1}
{"text": "Is that result supposed to look like that?", "label_name": "nervous", "label": 1}
{"text": "Is this the file you were looking for?", "label_name": "nervous", "label": 1}
{"text": "I was waiting for the email to start.", "label_name": "nervous", "label": 1}
{"text": "The number has been leaking for a while.", "label_name": "nervous", "label": 1}
{"text": "The car was already broken when I got here.", "label_name": "nervous", "label": 1}
{"text": "The code is... one, I believe.", "label_name": "nervous", "label": 1}
{"text": "I don't know why the sound is doing that.", "label_name": "nervous", "label": 1}
{"text": "Please just tell me what to stand.", "label_name": "nervous", "label": 1}
{"text": "I only opened the money once.", "label_name": "nervous", "label": 1}
{"text": "Is the signature supposed to be this color?", "label_name": "nervous", "label": 1}
{"text": "Is that smoke supposed to look like that?", "label_name": "nervous", "label": 1}
{"text": "Is this the file you were looking for?", "label_name": "nervous", "label": 1}
{"text": "I forgot what the question was for.", "label_name": "nervous", "label": 1}
{"text": "I was just holding the money.", "label_name": "nervous", "label": 1}
{"text": "I was at the store until midnight.", "label_name": "nervous", "label": 1}
{"text": "Please just tell me what to sit.", "label_name": "nervous", "label": 1}
{"text": "The door has been shaking for a while.", "label_name": "nervous", "label": 1}
{"text": "I think the answer is option B.", "label_name": "nervous", "label": 1}
{"text": "The car was already broken when I got here.", "label_name": "nervous", "label": 1}
{"text": "Is that light supposed to look like that?", "label_name": "nervous", "label": 1}
{"text": "I think the answer is no.", "label_name": "nervous", "label": 1}
{"text": "What happens if the smoke stops?", "label_name": "nervous", "label": 1}
{"text": "I am not sure where the screen went.", "label_name": "nervous", "label": 1}
{"text": "I don't know why the sound is doing that.", "label_name": "nervous", "label": 1}
{"text": "I will stay right here until you say so.", "label_name": "nervous", "label": 1}
{"text": "Please just tell me what to stop.", "label_name": "nervous", "label": 1}
{"text": "I am trying to remember the password.", "label_name": "nervous", "label": 1}
{"text": "The mark has been shaking for a while.", "label_name": "nervous", "label": 1}
{"text": "I thought the rule was for the manager.", "label_name": "nervous", "label": 1}
{"text": "I felt a shaking in my leg.", "label_name": "nervous", "label": 1}
{"text": "I was at the office until midnight.", "label_name": "nervous", "label": 1}
{"text": "It might be in the car, maybe.", "label_name": "nervous", "label": 1}
{"text": "Is there a problem with the paper?", "label_name": "nervous", "label": 1}
{"text": "I have the license right here in my bag.", "label_name": "nervous", "label": 1}
{"text": "The number has been flashing for a while.", "label_name": "nervous", "label": 1}
{"text": "I am taking the wallet out of my pocket.", "label_name": "nervous", "label": 1}
{"text": "I didn't know I couldn't wait here.", "label_name": "nervous", "label": 1}
{"text": "I will stay right here until you say so.", "label_name": "nervous", "label": 1}
{"text": "Is there a problem with the report?", "label_name": "nervous", "label": 1}
{"text": "Am I allowed to submit the report now?", "label_name": "nervous", "label": 1}
{"text": "Do you think the smoke is dangerous?", "label_name": "nervous", "label": 1}
{"text": "Do you want me to sit now?", "label_name": "nervous", "label": 1}
{"text": "Did I sign the answer in the right place?", "label_name": "nervous", "label": 1}
{"text": "I thought the instruction was for you.", "label_name": "nervous", "label": 1}
{"text": "The rule said it was okay to park here.", "label_name": "nervous", "label": 1}
{"text": "Is it safe to touch the switch?", "label_name": "nervous", "label": 1}
{"text": "Am I allowed to hold the ticket now?", "label_name": "nervous", "label": 1}
{"text": "Do you want me to stop now?", "label_name": "nervous", "label": 1}
{"text": "I am worried about the light.", "label_name": "nervous", "label": 1}
{"text": "I was waiting for the sign to start.", "label_name": "nervous", "label": 1}
{"text": "I think the answer is forty-two.", "label_name": "nervous", "label": 1}
{"text": "Should I call the manager now?", "label_name": "nervous", "label": 1}
{"text": "Is it okay if I call for a second?", "label_name": "nervous", "label": 1}
{"text": "Should I move the signature or wait?", "label_name": "nervous", "label": 1}
{"text": "Is there a problem with the application?", "label_name": "nervous", "label": 1}
{"text": "I heard a click coming from the engine.", "label_name": "nervous", "label": 1}
{"text": "I was at the station until five.", "label_name": "nervous", "label": 1}
{"text": "Was I supposed to bring the screen?", "label_name": "nervous", "label": 1}
{"text": "Is that smoke supposed to look like that?", "label_name": "nervous", "label": 1}
{"text": "I am worried about the door.", "label_name": "nervous", "label": 1}
{"text": "I will stand right away, sir.", "label_name": "nervous", "label": 1}
{"text": "I heard a voice coming from the basement.", "label_name": "nervous", "label": 1}
{"text": "Is it okay if I think for a second?", "label_name": "nervous", "label": 1}
{"text": "I didn't know I couldn't walk here.", "label_name": "nervous", "label": 1}
{"text": "I felt a pain in my chest.", "label_name": "nervous", "label": 1}
{"text": "The computer was already broken when I got here.", "label_name": "nervous", "label": 1}
{"text": "Is this the signature you were looking for?", "label_name": "nervous", "label": 1}
{"text": "I have the license right here in my bag.", "label_name": "nervous", "label": 1}
{"text": "I have the receipt right here in my bag.", "label_name": "nervous", "label": 1}
{"text": "I will stand right away, sir.", "label_name": "nervous", "label": 1}
{"text": "I didn't know I couldn't stand here.", "label_name": "nervous", "label": 1}
{"text": "I have the receipt right here in my bag.", "label_name": "nervous", "label": 1}
{"text": "I am not sure where the key went.", "label_name": "nervous", "label": 1}
{"text": "Is this the ticket you were looking for?", "label_name": "nervous", "label": 1}
{"text": "Am I allowed to hold the signature now?", "label_name": "nervous", "label": 1}
{"text": "I was just cleaning the computer.", "label_name": "nervous", "label": 1}
{"text": "I am taking the license out of my pocket.", "label_name": "nervous", "label": 1}
{"text": "Did you receive the form I sent?", "label_name": "nervous", "label": 1}
{"text": "I was following the rule exactly.", "label_name": "nervous", "label": 1}
{"text": "Am I allowed to leave the file now?", "label_name": "nervous", "label": 1}
{"text": "I will move right away, sir.", "label_name": "nervous", "label": 1}
{"text": "I can leave if you want me to.", "label_name": "nervous", "label": 1}
{"text": "Please just tell me what to stand.", "label_name": "nervous", "label": 1}
{"text": "I think the answer is blue.", "label_name": "nervous", "label": 1}
{"text": "Am I allowed to change the application now?", "label_name": "nervous", "label": 1}
{"text": "I forgot what the name was for.", "label_name": "nervous", "label": 1}
{"text": "I lost the question, I am sorry.", "label_name": "nervous", "label": 1}
{"text": "Is the form filled out correctly?", "label_name": "nervous", "label": 1}
{"text": "It might be in the bag, maybe.", "label_name": "nervous", "label": 1}
{"text": "I heard a footstep coming from the back.", "label_name": "nervous", "label": 1}
{"text": "I was just cleaning the switch.", "label_name": "nervous", "label": 1}
{"text": "I didn't touch the computer, I promise.", "label_name": "nervous", "label": 1}
{"text": "I don't know why the screen is doing that.", "label_name": "nervous", "label": 1}
{"text": "The email said it was okay to park here.", "label_name": "nervous", "label": 1}
{"text": "I am trying to remember the name.", "label_name": "nervous", "label": 1}
{"text": "Please just tell me what to leave.", "label_name": "nervous", "label": 1}
{"text": "Please just tell me what to stop.", "label_name": "nervous", "label": 1}
{"text": "I can go if you want me to.", "label_name": "nervous", "label": 1}
{"text": "The instruction said it was okay to park here.", "label_name": "nervous", "label": 1}
{"text": "I only touched the money once.", "label_name": "nervous", "label": 1}
{"text": "Is the paper filled out correctly?", "label_name": "nervous", "label": 1}
{"text": "Is it safe to use the machine?", "label_name": "nervous", "label": 1}
{"text": "Does the ticket look okay to you?", "label_name": "nervous", "label": 1}
{"text": "Is it okay if I look for a second?", "label_name": "nervous", "label": 1}
{"text": "I only touched the switch once.", "label_name": "nervous", "label": 1}
{"text": "Do you want me to speak now?", "label_name": "nervous", "label": 1}
{"text": "I lost the password, I am sorry.", "label_name": "nervous", "label": 1}
{"text": "I think the answer is option B.", "label_name": "nervous", "label": 1}
{"text": "The email said it was okay to park here.", "label_name": "nervous", "label": 1}
{"text": "I will stay right here until you say so.", "label_name": "nervous", "label": 1}
{"text": "I was just watching the glass.", "label_name": "nervous", "label": 1}
{"text": "The car was already broken when I got here.", "label_name": "nervous", "label": 1}
{"text": "I am not sure where the file went.", "label_name": "nervous", "label": 1}
{"text": "I only touched the money once.", "label_name": "nervous", "label": 1}
{"text": "I have the ticket right here in my bag.", "label_name": "nervous", "label": 1}
{"text": "Is it safe to open the machine?", "label_name": "nervous", "label": 1}
{"text": "I will stop right away, sir.", "label_name": "nervous", "label": 1}
{"text": "It might be in the bag, maybe.", "label_name": "nervous", "label": 1}
{"text": "Is it okay if I look for a second?", "label_name": "nervous", "label": 1}
{"text": "Do you want me to wait now?", "label_name": "nervous", "label": 1}
{"text": "I only saw the switch once.", "label_name": "nervous", "label": 1}
{"text": "I don't know why the light is doing that.", "label_name": "nervous", "label": 1}
{"text": "Was I supposed to bring the screen?", "label_name": "nervous", "label": 1}
{"text": "I heard a noise coming from the hallway.", "label_name": "nervous", "label": 1}
{"text": "I was just cleaning the switch.", "label_name": "nervous", "label": 1}
{"text": "Keep hands clear of the doors.", "label_name": "neutral", "label": 7}
{"text": "The library is now closed.", "label_name": "neutral", "label": 7}
{"text": "The average specific gravity is two point zero.", "label_name": "neutral", "label": 7}
{"text": "The current time is midnight.", "label_name": "neutral", "label": 7}
{"text": "Volume is set to minimum percent.", "label_name": "neutral", "label": 7}
{"text": "Enter your ID number using the keypad.", "label_name": "neutral", "label": 7}
{"text": "Proceed to the second floor.", "label_name": "neutral", "label": 7}
{"text": "Please remove your ticket from the tray.", "label_name": "neutral", "label": 7}
{"text": "Select an option from the main menu.", "label_name": "neutral", "label": 7}
{"text": "You have arrived at the airport.", "label_name": "neutral", "label": 7}
{"text": "Keep hands clear of the sensor.", "label_name": "neutral", "label": 7}
{"text": "Access has been denied.", "label_name": "neutral", "label": 7}
{"text": "Turn the dial to position off.", "label_name": "neutral", "label": 7}
{"text": "Turn the dial to position one.", "label_name": "neutral", "label": 7}
{"text": "Please silence all cell phones.", "label_name": "neutral", "label": 7}
{"text": "The distance to target is two hundred meters.", "label_name": "neutral", "label": 7}
{"text": "The temperature is minus ten degrees.", "label_name": "neutral", "label": 7}
{"text": "The museum opens at ten AM.", "label_name": "neutral", "label": 7}
{"text": "You have arrived at your destination.", "label_name": "neutral", "label": 7}
{"text": "The next stop is Central Station.", "label_name": "neutral", "label": 7}
{"text": "Scan complete. No threats found.", "label_name": "neutral", "label": 7}
{"text": "Battery level is at fifty percent.", "label_name": "neutral", "label": 7}
{"text": "You have arrived at your destination.", "label_name": "neutral", "label": 7}
{"text": "The device is connected to the server.", "label_name": "neutral", "label": 7}
{"text": "Wait for the green light before proceeding.", "label_name": "neutral", "label": 7}
{"text": "Proceed to the tenth floor.", "label_name": "neutral", "label": 7}
{"text": "Select an option from the screen.", "label_name": "neutral", "label": 7}
{"text": "Access has been verified.", "label_name": "neutral", "label": 7}
{"text": "The store will close in five minutes.", "label_name": "neutral", "label": 7}
{"text": "Proceed to the tenth floor.", "label_name": "neutral", "label": 7}
{"text": "Exit the highway at the next ramp.", "label_name": "neutral", "label": 7}
{"text": "The file size is five hundred megabytes.", "label_name": "neutral", "label": 7}
{"text": "Scan complete. No errors found.", "label_name": "neutral", "label": 7}
{"text": "Continue straight for ten miles.", "label_name": "neutral", "label": 7}
{"text": "Slide the cover to the right.", "label_name": "neutral", "label": 7}
{"text": "Continue straight for five miles.", "label_name": "neutral", "label": 7}
{"text": "Update 2.0 has been installed.", "label_name": "neutral", "label": 7}
{"text": "The temperature is twenty degrees.", "label_name": "neutral", "label": 7}
{"text": "The next stop is Oak Park.", "label_name": "neutral", "label": 7}
{"text": "Exit the highway at exit 4B.", "label_name": "neutral", "label": 7}
{"text": "Trash collection is on Tuesday.", "label_name": "neutral", "label": 7}
{"text": "You have arrived at your destination.", "label_name": "neutral", "label": 7}
{"text": "The average specific gravity is one point five.", "label_name": "neutral", "label": 7}
{"text": "Update beta has been installed.", "label_name": "neutral", "label": 7}
{"text": "Proceed to the first floor.", "label_name": "neutral", "label": 7}
{"text": "The device is connected to the server.", "label_name": "neutral", "label": 7}
{"text": "Press the start button to continue.", "label_name": "neutral", "label": 7}
{"text": "Slide the door to the open position.", "label_name": "neutral", "label": 7}
{"text": "Parking is available on level two.", "label_name": "neutral", "label": 7}
{"text": "Slide the latch to the open position.", "label_name": "neutral", "label": 7}
{"text": "The museum opens at nine AM.", "label_name": "neutral", "label": 7}
{"text": "Scan complete. No files found.", "label_name": "neutral", "label": 7}
{"text": "The device is connected to the server.", "label_name": "neutral", "label": 7}
{"text": "Tickets are available at the website.", "label_name": "neutral", "label": 7}
{"text": "Please wait while the application completes.", "label_name": "neutral", "label": 7}
{"text": "Parking is available on level green.", "label_name": "neutral", "label": 7}
{"text": "Trash collection is on Friday.", "label_name": "neutral", "label": 7}
{"text": "The destination is on your left.", "label_name": "neutral", "label": 7}
{"text": "Turn the dial to position high.", "label_name": "neutral", "label": 7}
{"text": "The total weight is ten pounds.", "label_name": "neutral", "label": 7}
{"text": "Turn left at the next stop sign.", "label_name": "neutral", "label": 7}
{"text": "The store will close in fifteen minutes.", "label_name": "neutral", "label": 7}
{"text": "Your gate is located at terminal one.", "label_name": "neutral", "label": 7}
{"text": "Scan complete. No files found.", "label_name": "neutral", "label": 7}
{"text": "Trash collection is on Friday.", "label_name": "neutral", "label": 7}
{"text": "Your password has been changed.", "label_name": "neutral", "label": 7}
{"text": "The temperature is zero degrees.", "label_name": "neutral", "label": 7}
{"text": "Tickets are available at the entrance.", "label_name": "neutral", "label": 7}
{"text": "Insert your receipt into the slot.", "label_name": "neutral", "label": 7}
{"text": "The humidity is fifty percent.", "label_name": "neutral", "label": 7}
{"text": "The humidity is ninety-nine percent.", "label_name": "neutral", "label": 7}
{"text": "Press the start button to continue.", "label_name": "neutral", "label": 7}
{"text": "Insert your ticket into the slot.", "label_name": "neutral", "label": 7}
{"text": "Parking is available on level blue.", "label_name": "neutral", "label": 7}
{"text": "Turn the dial to position two.", "label_name": "neutral", "label": 7}
{"text": "Enter your zip code using the keypad.", "label_name": "neutral", "label": 7}
{"text": "Enter your zip code using the keypad.", "label_name": "neutral", "label": 7}
{"text": "The temperature is twenty degrees.", "label_name": "neutral", "label": 7}
{"text": "Please silence all electronic devices.", "label_name": "neutral", "label": 7}
{"text": "Enter your zip code using the keypad.", "label_name": "neutral", "label": 7}
{"text": "Trash collection is on Monday.", "label_name": "neutral", "label": 7}
{"text": "Doors are closing. Please stand clear.", "label_name": "neutral", "label": 7}
{"text": "Please have your ID ready for inspection.", "label_name": "neutral", "label": 7}
{"text": "Keep hands clear of the moving parts.", "label_name": "neutral", "label": 7}
{"text": "The system is currently updating.", "label_name": "neutral", "label": 7}
{"text": "Press the enter button to continue.", "label_name": "neutral", "label": 7}
{"text": "Wind speed is fifteen miles per hour.", "label_name": "neutral", "label": 7}
{"text": "Keep hands clear of the moving parts.", "label_name": "neutral", "label": 7}
{"text": "The current time is 12:00 PM.", "label_name": "neutral", "label": 7}
{"text": "The restroom is located down the hall.", "label_name": "neutral", "label": 7}
{"text": "Parking is available on level one.", "label_name": "neutral", "label": 7}
{"text": "Scan complete. No viruses found.", "label_name": "neutral", "label": 7}
{"text": "The temperature is zero degrees.", "label_name": "neutral", "label": 7}
{"text": "Press the stop button to continue.", "label_name": "neutral", "label": 7}
{"text": "Please remove your receipt from the tray.", "label_name": "neutral", "label": 7}
{"text": "The library is now open.", "label_name": "neutral", "label": 7}
{"text": "Parking is available on level green.", "label_name": "neutral", "label": 7}
{"text": "Access has been granted.", "label_name": "neutral", "label": 7}
{"text": "Update beta has been downloaded.", "label_name": "neutral", "label": 7}
{"text": "Exit the highway at exit 4B.", "label_name": "neutral", "label": 7}
{"text": "Flight 204 is now boarding at gate A1.", "label_name": "neutral", "label": 7}
{"text": "Tickets are available at the entrance.", "label_name": "neutral", "label": 7}
{"text": "The temperature is seventy-five degrees.", "label_name": "neutral", "label": 7}
{"text": "Battery level is at ten percent.", "label_name": "neutral", "label": 7}
{"text": "Enter your password using the keypad.", "label_name": "neutral", "label": 7}
{"text": "Battery level is at twenty percent.", "label_name": "neutral", "label": 7}
{"text": "The device is connected to Wi-Fi.", "label_name": "neutral", "label": 7}
{"text": "The device is connected to Wi-Fi.", "label_name": "neutral", "label": 7}
{"text": "Please remove your receipt from the tray.", "label_name": "neutral", "label": 7}
{"text": "Your password has been changed.", "label_name": "neutral", "label": 7}
{"text": "The current time is noon.", "label_name": "neutral", "label": 7}
{"text": "The store will close in ten minutes.", "label_name": "neutral", "label": 7}
{"text": "Volume is set to thirty percent.", "label_name": "neutral", "label": 7}
{"text": "The system is currently loading.", "label_name": "neutral", "label": 7}
{"text": "Place the item on the scale.", "label_name": "neutral", "label": 7}
{"text": "The distance to target is two hundred meters.", "label_name": "neutral", "label": 7}
{"text": "The total weight is one hundred pounds.", "label_name": "neutral", "label": 7}
{"text": "The atomic number of Oxygen is eight.", "label_name": "neutral", "label": 7}
{"text": "You have arrived at your destination.", "label_name": "neutral", "label": 7}
{"text": "Insert your ticket into the slot.", "label_name": "neutral", "label": 7}
{"text": "The device is connected to the server.", "label_name": "neutral", "label": 7}
{"text": "Place the package on the scale.", "label_name": "neutral", "label": 7}
{"text": "The store will close in five minutes.", "label_name": "neutral", "label": 7}
{"text": "Please wait while the backup completes.", "label_name": "neutral", "label": 7}
{"text": "Continue straight for five miles.", "label_name": "neutral", "label": 7}
{"text": "The restroom is located down the hall.", "label_name": "neutral", "label": 7}
{"text": "Press the enter button to continue.", "label_name": "neutral", "label": 7}
{"text": "Access has been verified.", "label_name": "neutral", "label": 7}
{"text": "Parking is available on level two.", "label_name": "neutral", "label": 7}
{"text": "Trash collection is on Tuesday.", "label_name": "neutral", "label": 7}
{"text": "The temperature is zero degrees.", "label_name": "neutral", "label": 7}
{"text": "Turn left at the next stop sign.", "label_name": "neutral", "label": 7}
{"text": "The average specific gravity is one point five.", "label_name": "neutral", "label": 7}
{"text": "The average specific gravity is one point five.", "label_name": "neutral", "label": 7}
{"text": "The current time is noon.", "label_name": "neutral", "label": 7}
{"text": "The current time is noon.", "label_name": "neutral", "label": 7}
{"text": "Flight 204 is now boarding at gate B4.", "label_name": "neutral", "label": 7}
{"text": "Doors are closing. Please stand clear.", "label_name": "neutral", "label": 7}
{"text": "The total weight is one hundred pounds.", "label_name": "neutral", "label": 7}
{"text": "The atomic number of Gold is one.", "label_name": "neutral", "label": 7}
{"text": "The file size is two megabytes.", "label_name": "neutral", "label": 7}
{"text": "Press the start button to continue.", "label_name": "neutral", "label": 7}
{"text": "Insert your cash into the slot.", "label_name": "neutral", "label": 7}
{"text": "The library is now open.", "label_name": "neutral", "label": 7}
{"text": "Press the red button to continue.", "label_name": "neutral", "label": 7}
{"text": "Place the item on the scale.", "label_name": "neutral", "label": 7}
{"text": "Turn right at the next corner.", "label_name": "neutral", "label": 7}
{"text": "Parking is available on level two.", "label_name": "neutral", "label": 7}
{"text": "Enter your password using the keypad.", "label_name": "neutral", "label": 7}
{"text": "The device is connected to Wi-Fi.", "label_name": "neutral", "label": 7}
{"text": "The next stop is Terminal 1.", "label_name": "neutral", "label": 7}
{"text": "The file size is one thousand megabytes.", "label_name": "neutral", "label": 7}
{"text": "The museum opens at nine AM.", "label_name": "neutral", "label": 7}
{"text": "Volume is set to fifty percent.", "label_name": "neutral", "label": 7}
{"text": "Your gate is located at terminal one.", "label_name": "neutral", "label": 7}
{"text": "The library is now closing.", "label_name": "neutral", "label": 7}
{"text": "Tickets are available at the kiosk.", "label_name": "neutral", "label": 7}
{"text": "Doors are closing. Please stand clear.", "label_name": "neutral", "label": 7}
{"text": "You have arrived at your destination.", "label_name": "neutral", "label": 7}
{"text": "Tickets are available at the entrance.", "label_name": "neutral", "label": 7}
{"text": "Enter your password using the keypad.", "label_name": "neutral", "label": 7}
{"text": "Battery level is at one hundred percent.", "label_name": "neutral", "label": 7}
{"text": "Scan complete. No files found.", "label_name": "neutral", "label": 7}
{"text": "Please silence all cell phones.", "label_name": "neutral", "label": 7}
{"text": "Doors are closing. Please stand clear.", "label_name": "neutral", "label": 7}
{"text": "The temperature is seventy-five degrees.", "label_name": "neutral", "label": 7}
{"text": "Keep hands clear of the moving parts.", "label_name": "neutral", "label": 7}
{"text": "Your gate is located at terminal one.", "label_name": "neutral", "label": 7}
{"text": "The destination is on your right.", "label_name": "neutral", "label": 7}
{"text": "There are five new messages.", "label_name": "neutral", "label": 7}
{"text": "The restroom is located down the hall.", "label_name": "neutral", "label": 7}
{"text": "Please wait while the application completes.", "label_name": "neutral", "label": 7}
{"text": "Your password has been reset.", "label_name": "neutral", "label": 7}
{"text": "The system is currently online.", "label_name": "neutral", "label": 7}
{"text": "Your gate is located at terminal B.", "label_name": "neutral", "label": 7}
{"text": "Turn right at the next stop sign.", "label_name": "neutral", "label": 7}
{"text": "The store will close in thirty minutes.", "label_name": "neutral", "label": 7}
{"text": "The museum opens at ten AM.", "label_name": "neutral", "label": 7}
{"text": "Trash collection is on Friday.", "label_name": "neutral", "label": 7}
{"text": "The device is connected to Wi-Fi.", "label_name": "neutral", "label": 7}
{"text": "Parking is available on level green.", "label_name": "neutral", "label": 7}
{"text": "There are one new messages.", "label_name": "neutral", "label": 7}
{"text": "Place the package on the scale.", "label_name": "neutral", "label": 7}
{"text": "The distance to target is fifty meters.", "label_name": "neutral", "label": 7}
{"text": "Scan complete. No threats found.", "label_name": "neutral", "label": 7}
{"text": "The device is connected to Wi-Fi.", "label_name": "neutral", "label": 7}
{"text": "Place the fruit on the scale.", "label_name": "neutral", "label": 7}
{"text": "Volume is set to fifty percent.", "label_name": "neutral", "label": 7}
{"text": "Enter your PIN using the keypad.", "label_name": "neutral", "label": 7}
{"text": "Place the package on the scale.", "label_name": "neutral", "label": 7}
{"text": "Slide the door to the left.", "label_name": "neutral", "label": 7}
{"text": "Enter your zip code using the keypad.", "label_name": "neutral", "label": 7}
{"text": "The system is currently online.", "label_name": "neutral", "label": 7}
{"text": "The paperwork is on the desk, right where you left it.", "label_name": "apathetic", "label": 3}
{"text": "The next class starts in ten minutes, down the hall.", "label_name": "apathetic", "label": 3}
{"text": "The meeting has been moved to conference room B.", "label_name": "apathetic", "label": 3}
{"text": "My bag is in the overhead bin, above seat 12A.", "label_name": "apathetic", "label": 3}
{"text": "The safety light is green and the door is locked.", "label_name": "apathetic", "label": 3}
{"text": "The elevator is to your left, third floor.", "label_name": "apathetic", "label": 3}
{"text": "We need milk, bread, and a carton of eggs.", "label_name": "apathetic", "label": 3}
{"text": "A car just pulled into the driveway.", "label_name": "apathetic", "label": 3}
{"text": "The train is delayed by another fifteen minutes.", "label_name": "apathetic", "label": 3}
{"text": "There are dishes in the sink from last night.", "label_name": "apathetic", "label": 3}
{"text": "I sent the email to the client this morning.", "label_name": "apathetic", "label": 3}
{"text": "We can go to the Italian restaurant for dinner.", "label_name": "apathetic", "label": 3}
{"text": "You have to brush your teeth before you go to bed.", "label_name": "apathetic", "label": 3}
{"text": "Please unplug the router and wait for thirty seconds.", "label_name": "apathetic", "label": 3}
{"text": "That will be twenty dollars and fifty cents.", "label_name": "apathetic", "label": 3}
{"text": "It looks like it is going to rain later today.", "label_name": "apathetic", "label": 3}
{"text": "I wiped down the counters and swept the floor.", "label_name": "apathetic", "label": 3}
{"text": "I marked the ballot and put it in the box.", "label_name": "apathetic", "label": 3}
{"text": "The speed limit on this road is forty miles per hour.", "label_name": "apathetic", "label": 3}
{"text": "You said the appointment is at three o'clock.", "label_name": "apathetic", "label": 3}
{"text": "Please hold for a moment while I transfer you.", "label_name": "apathetic", "label": 3}
{"text": "The patient's blood pressure is one twenty over eighty.", "label_name": "apathetic", "label": 3}
{"text": "The soup of the day is tomato basil.", "label_name": "apathetic", "label": 3}
{"text": "The capital of France is Paris.", "label_name": "apathetic", "label": 3}
{"text": "First you press the red button, then you pull the lever.", "label_name": "apathetic", "label": 3}
{"text": "Your seat is in row G, seat number five.", "label_name": "apathetic", "label": 3}
{"text": "The faucet in the kitchen is leaking again.", "label_name": "apathetic", "label": 3}
{"text": "I am wearing the blue shirt today.", "label_name": "apathetic", "label": 3}
{"text": "That was ten repetitions on the bench press.", "label_name": "apathetic", "label": 3}
{"text": "We take the highway for fifty miles and then exit.", "label_name": "apathetic", "label": 3}
{"text": "The due date is stamped on the inside cover.", "label_name": "apathetic", "label": 3}
{"text": "I will be in the office until five o'clock.", "label_name": "apathetic", "label": 3}
{"text": "No photography is allowed inside the building.", "label_name": "apathetic", "label": 3}
{"text": "I put the document in the yellow folder.", "label_name": "apathetic", "label": 3}
{"text": "The show is over and the lights are coming on.", "label_name": "apathetic", "label": 3}
{"text": "Your shoes are by the front door.", "label_name": "apathetic", "label": 3}
{"text": "I will take the one in the red box.", "label_name": "apathetic", "label": 3}
{"text": "The cat sat on the mat and looked out the window.", "label_name": "apathetic", "label": 3}
{"text": "The gas light just turned on in the car.", "label_name": "apathetic", "label": 3}
{"text": "The flight is boarding at gate thirty-two.", "label_name": "apathetic", "label": 3}
{"text": "Water freezes at thirty-two degrees Fahrenheit.", "label_name": "apathetic", "label": 3}
{"text": "The usage level is currently at seventy percent.", "label_name": "apathetic", "label": 3}
{"text": "The application has stopped responding.", "label_name": "apathetic", "label": 3}
{"text": "I came in second place in the competition.", "label_name": "apathetic", "label": 3}
{"text": "The trash cans have been emptied.", "label_name": "apathetic", "label": 3}
{"text": "It is currently two in the morning.", "label_name": "apathetic", "label": 3}
{"text": "I am going to listen to your heartbeat now.", "label_name": "apathetic", "label": 3}
{"text": "Do you have a rewards card with us?", "label_name": "apathetic", "label": 3}
{"text": "I printed the reports you asked for.", "label_name": "apathetic", "label": 3}
{"text": "The system update has been installed.", "label_name": "apathetic", "label": 3}
{"text": "Please turn to page one hundred and four.", "label_name": "apathetic", "label": 3}
{"text": "Dinner is pasta with marinara sauce.", "label_name": "apathetic", "label": 3}
{"text": "I am standing outside the coffee shop.", "label_name": "apathetic", "label": 3}
{"text": "This paint is a shade of dark blue.", "label_name": "apathetic", "label": 3}
{"text": "There is a traffic jam on the bridge.", "label_name": "apathetic", "label": 3}
{"text": "Can I have your last name, please?", "label_name": "apathetic", "label": 3}
{"text": "This item costs fifteen dollars.", "label_name": "apathetic", "label": 3}
{"text": "Screen two shows the back entrance.", "label_name": "apathetic", "label": 3}
{"text": "The application has been approved and filed.", "label_name": "apathetic", "label": 3}
{"text": "Here is the check for this month's rent.", "label_name": "apathetic", "label": 3}
{"text": "You went to the park yesterday.", "label_name": "apathetic", "label": 3}
{"text": "Item number four is present in the shipment.", "label_name": "apathetic", "label": 3}
{"text": "Is this seat taken by anyone?", "label_name": "apathetic", "label": 3}
{"text": "The black cable goes into the modem.", "label_name": "apathetic", "label": 3}
{"text": "I have a blue pen and a red pen.", "label_name": "apathetic", "label": 3}
{"text": "The mail carrier just dropped off a box.", "label_name": "apathetic", "label": 3}
{"text": "The window frame is painted white.", "label_name": "apathetic", "label": 3}
{"text": "I am logging off the computer now.", "label_name": "apathetic", "label": 3}
{"text": "Put your arms in the sleeves.", "label_name": "apathetic", "label": 3}
{"text": "We can meet at noon if that works.", "label_name": "apathetic", "label": 3}
{"text": "Add two cups of flour to the bowl.", "label_name": "apathetic", "label": 3}
{"text": "I am turning right at the next intersection.", "label_name": "apathetic", "label": 3}
{"text": "Please show me your identification.", "label_name": "apathetic", "label": 3}
{"text": "Here is your receipt and your change.", "label_name": "apathetic", "label": 3}
{"text": "The graph shows a slight increase in sales.", "label_name": "apathetic", "label": 3}
{"text": "The package is sealed and ready for shipping.", "label_name": "apathetic", "label": 3}
{"text": "I am typing in the new password.", "label_name": "apathetic", "label": 3}
{"text": "The script says to walk across the stage.", "label_name": "apathetic", "label": 3}
{"text": "I am mopping the floor in the hallway.", "label_name": "apathetic", "label": 3}
{"text": "The bus leaves at six forty-five.", "label_name": "apathetic", "label": 3}
{"text": "Take one pill every morning with food.", "label_name": "apathetic", "label": 3}
{"text": "Class ends in five minutes.", "label_name": "apathetic", "label": 3}
{"text": "The cart has a squeaky wheel.", "label_name": "apathetic", "label": 3}
{"text": "The internet connection is stable.", "label_name": "apathetic", "label": 3}
{"text": "I am number forty-two in line.", "label_name": "apathetic", "label": 3}
{"text": "Do you have your lunch box?", "label_name": "apathetic", "label": 3}
{"text": "I am holding the door open for you.", "label_name": "apathetic", "label": 3}
{"text": "I am washing the blue paint off the brush.", "label_name": "apathetic", "label": 3}
{"text": "I am parking in the spot next to the van.", "label_name": "apathetic", "label": 3}
{"text": "I will tell him you called.", "label_name": "apathetic", "label": 3}
{"text": "I am walking down the east corridor.", "label_name": "apathetic", "label": 3}
{"text": "The file is located on the shared drive.", "label_name": "apathetic", "label": 3}
{"text": "This letter goes in the outgoing bin.", "label_name": "apathetic", "label": 3}
{"text": "The mailbox is empty today.", "label_name": "apathetic", "label": 3}
{"text": "I have completed three items on the list.", "label_name": "apathetic", "label": 3}
{"text": "Gate 4B is at the end of the terminal.", "label_name": "apathetic", "label": 3}
{"text": "The power cord is plugged into the wall.", "label_name": "apathetic", "label": 3}
{"text": "To be or not to be, that is the question.", "label_name": "apathetic", "label": 3}
{"text": "I am closing the window now.", "label_name": "apathetic", "label": 3}
{"text": "The safety seal is intact.", "label_name": "apathetic", "label": 3}
{"text": "I am drinking a cup of black coffee.", "label_name": "apathetic", "label": 3}
{"text": "I am folding the white towels.", "label_name": "apathetic", "label": 3}
{"text": "This product contains peanuts and soy.", "label_name": "apathetic", "label": 3}
{"text": "I typed the word \"conclusion\".", "label_name": "apathetic", "label": 3}
{"text": "I am checking the rearview mirror.", "label_name": "apathetic", "label": 3}
{"text": "I am entering your information into the system.", "label_name": "apathetic", "label": 3}
{"text": "The price is three dollars and ninety-nine cents.", "label_name": "apathetic", "label": 3}
{"text": "I am sitting at my desk.", "label_name": "apathetic", "label": 3}
{"text": "The boxes are stacked three high.", "label_name": "apathetic", "label": 3}
{"text": "I am deleting the old version of the file.", "label_name": "apathetic", "label": 3}
{"text": "The bus is coming down the street.", "label_name": "apathetic", "label": 3}
{"text": "I am wiping the fingerprints off the glass.", "label_name": "apathetic", "label": 3}
{"text": "I am waiting to go through security.", "label_name": "apathetic", "label": 3}
{"text": "The x-ray shows a fracture in the arm.", "label_name": "apathetic", "label": 3}
{"text": "I underlined the main idea of the paragraph.", "label_name": "apathetic", "label": 3}
{"text": "I am putting the cereal back on the shelf.", "label_name": "apathetic", "label": 3}
{"text": "I replaced the filter in the machine.", "label_name": "apathetic", "label": 3}
{"text": "I have finished voting.", "label_name": "apathetic", "label": 3}
{"text": "I am turning off the light in the hallway.", "label_name": "apathetic", "label": 3}
{"text": "I signed my name on the attendance sheet.", "label_name": "apathetic", "label": 3}
{"text": "I am stirring the soup with a wooden spoon.", "label_name": "apathetic", "label": 3}
{"text": "I am stopping at the stop sign.", "label_name": "apathetic", "label": 3}
{"text": "Your badge is valid until December.", "label_name": "apathetic", "label": 3}
{"text": "I put a stamp on the envelope.", "label_name": "apathetic", "label": 3}
{"text": "I am opening the front door.", "label_name": "apathetic", "label": 3}
{"text": "The cat is sleeping on the sofa.", "label_name": "apathetic", "label": 3}
{"text": "I have one new email in my inbox.", "label_name": "apathetic", "label": 3}
{"text": "I am lifting my suitcase onto the rack.", "label_name": "apathetic", "label": 3}
{"text": "The power light is blinking red.", "label_name": "apathetic", "label": 3}
{"text": "Today is Monday, the fifth.", "label_name": "apathetic", "label": 3}
{"text": "I am walking the dog around the block.", "label_name": "apathetic", "label": 3}
{"text": "The ventilation system is functioning.", "label_name": "apathetic", "label": 3}
{"text": "The file is downloading.", "label_name": "apathetic", "label": 3}
{"text": "I picked up the red block.", "label_name": "apathetic", "label": 3}
{"text": "I am carrying a shopping basket.", "label_name": "apathetic", "label": 3}
{"text": "I am holding a number two pencil.", "label_name": "apathetic", "label": 3}
{"text": "I am putting gas in the car.", "label_name": "apathetic", "label": 3}
{"text": "Now serving number fifty-two.", "label_name": "apathetic", "label": 3}
{"text": "Please insert your card into the reader.", "label_name": "apathetic", "label": 3}
{"text": "I am walking down the cereal aisle.", "label_name": "apathetic", "label": 3}
{"text": "The report is filed under \"Annual Reviews\".", "label_name": "apathetic", "label": 3}
{"text": "The video is buffering.", "label_name": "apathetic", "label": 3}
{"text": "I am sitting on the park bench.", "label_name": "apathetic", "label": 3}
{"text": "I sprayed the cleaning solution on the cloth.", "label_name": "apathetic", "label": 3}
{"text": "I am putting on my winter coat.", "label_name": "apathetic", "label": 3}
{"text": "Your pulse is sixty beats per minute.", "label_name": "apathetic", "label": 3}
{"text": "I opened the book to the introduction.", "label_name": "apathetic", "label": 3}
{"text": "The document is printing on the main printer.", "label_name": "apathetic", "label": 3}
{"text": "I am closing the access panel.", "label_name": "apathetic", "label": 3}
{"text": "I am reading the information pamphlet.", "label_name": "apathetic", "label": 3}
{"text": "I tied your shoelaces.", "label_name": "apathetic", "label": 3}
{"text": "I am holding the sign.", "label_name": "apathetic", "label": 3}
{"text": "I chopped the onion into small pieces.", "label_name": "apathetic", "label": 3}
{"text": "The destination is five miles away.", "label_name": "apathetic", "label": 3}
{"text": "Here is your visitor badge.", "label_name": "apathetic", "label": 3}
{"text": "I am standing by the main entrance.", "label_name": "apathetic", "label": 3}
{"text": "I bought three items today.", "label_name": "apathetic", "label": 3}
{"text": "The \"Paid\" box is checked.", "label_name": "apathetic", "label": 3}
{"text": "I unlocked the door.", "label_name": "apathetic", "label": 3}
{"text": "The news is on channel four.", "label_name": "apathetic", "label": 3}
{"text": "I put the black pens in the drawer.", "label_name": "apathetic", "label": 3}
{"text": "I am drinking from a water bottle.", "label_name": "apathetic", "label": 3}
{"text": "The computer is restarting now.", "label_name": "apathetic", "label": 3}
{"text": "I erased the wrong answer.", "label_name": "apathetic", "label": 3}
{"text": "There are two letters in the box.", "label_name": "apathetic", "label": 3}
{"text": "The expiration date is next month.", "label_name": "apathetic", "label": 3}
{"text": "I am present at the meeting.", "label_name": "apathetic", "label": 3}
{"text": "I found the missing sock.", "label_name": "apathetic", "label": 3}
{"text": "I am paying with a twenty-dollar bill.", "label_name": "apathetic", "label": 3}
{"text": "I mixed red and white paint.", "label_name": "apathetic", "label": 3}
{"text": "I opened the trunk of the car.", "label_name": "apathetic", "label": 3}
{"text": "The policy covers accidental damage.", "label_name": "apathetic", "label": 3}
{"text": "I have five one-dollar bills.", "label_name": "apathetic", "label": 3}
{"text": "The meeting is on Tuesday.", "label_name": "apathetic", "label": 3}
{"text": "I moved the chair to the corner.", "label_name": "apathetic", "label": 3}
{"text": "I scrolled to the bottom of the page.", "label_name": "apathetic", "label": 3}
{"text": "I am waiting for a message.", "label_name": "apathetic", "label": 3}
{"text": "I emptied the recycling bin.", "label_name": "apathetic", "label": 3}
{"text": "I took off my shoes at security.", "label_name": "apathetic", "label": 3}
{"text": "Your weight is one hundred and fifty pounds.", "label_name": "apathetic", "label": 3}
{"text": "I closed my notebook.", "label_name": "apathetic", "label": 3}
{"text": "I picked a red apple.", "label_name": "apathetic", "label": 3}
{"text": "I flipped the switch to the \"on\" position.", "label_name": "apathetic", "label": 3}
{"text": "I have a black pen.", "label_name": "apathetic", "label": 3}
{"text": "I poured milk into the cup.", "label_name": "apathetic", "label": 3}
{"text": "I am standing in the circle.", "label_name": "apathetic", "label": 3}
{"text": "I saved the document.", "label_name": "apathetic", "label": 3}
{"text": "I buckled my seatbelt.", "label_name": "apathetic", "label": 3}
{"text": "The restroom is down the hall.", "label_name": "apathetic", "label": 3}
{"text": "I raked the leaves into a pile.", "label_name": "apathetic", "label": 3}
{"text": "I stapled the papers together.", "label_name": "apathetic", "label": 3}
{"text": "I washed the living room window.", "label_name": "apathetic", "label": 3}
{"text": "The song is playing on the radio.", "label_name": "apathetic", "label": 3}
{"text": "I checked my phone for messages.", "label_name": "apathetic", "label": 3}
{"text": "I am waiting for my luggage.", "label_name": "apathetic", "label": 3}
{"text": "The acting is truly something special.", "label_name": "sarcastic", "label": 6}
{"text": "This is exactly how I like my breakfast cooked.", "label_name": "sarcastic", "label": 6}
{"text": "You really outdid yourself with this one.", "label_name": "sarcastic", "label": 6}
{"text": "I just love spending my evenings here.", "label_name": "sarcastic", "label": 6}
{"text": "You are clearly an expert in computers.", "label_name": "sarcastic", "label": 6}
{"text": "That is just perfect.", "label_name": "sarcastic", "label": 6}
{"text": "Your logic is absolutely flawless here.", "label_name": "sarcastic", "label": 6}
{"text": "look at how organized everything is.", "label_name": "sarcastic", "label": 6}
{"text": "We are making such great progress today.", "label_name": "sarcastic", "label": 6}
{"text": "I am sure that is exactly what happened.", "label_name": "sarcastic", "label": 6}
{"text": "The quality is just outstanding.", "label_name": "sarcastic", "label": 6}
{"text": "I have never seen numbers add up like this.", "label_name": "sarcastic", "label": 6}
{"text": "It is exactly what I have always wanted.", "label_name": "sarcastic", "label": 6}
{"text": "The structure is incredibly easy to follow.", "label_name": "sarcastic", "label": 6}
{"text": "This is certainly a memorable experience.", "label_name": "sarcastic", "label": 6}
{"text": "Thank you for that very detailed explanation.", "label_name": "sarcastic", "label": 6}
{"text": "That choice of style is very bold.", "label_name": "sarcastic", "label": 6}
{"text": "You did a really thorough job fixing that.", "label_name": "sarcastic", "label": 6}
{"text": "That is a very reasonable price to pay.", "label_name": "sarcastic", "label": 6}
{"text": "The system is working exactly as intended.", "label_name": "sarcastic", "label": 6}
{"text": "Look at all this space we have.", "label_name": "sarcastic", "label": 6}
{"text": "You are so funny, really.", "label_name": "sarcastic", "label": 6}
{"text": "Your attention to detail is impressive.", "label_name": "sarcastic", "label": 6}
{"text": "Thank you so much for your generosity.", "label_name": "sarcastic", "label": 6}
{"text": "You have such a beautiful voice.", "label_name": "sarcastic", "label": 6}
{"text": "It sounds like you are having fun.", "label_name": "sarcastic", "label": 6}
{"text": "You take such good care of this machine.", "label_name": "sarcastic", "label": 6}
{"text": "I cannot wait to start working on this.", "label_name": "sarcastic", "label": 6}
{"text": "What a beautiful day for a walk.", "label_name": "sarcastic", "label": 6}
{"text": "That sounds like a brilliant plan.", "label_name": "sarcastic", "label": 6}
{"text": "The temperature really brings out the flavor.", "label_name": "sarcastic", "label": 6}
{"text": "This is just what I had in mind.", "label_name": "sarcastic", "label": 6}
{"text": "This is going to be a relaxing flight.", "label_name": "sarcastic", "label": 6}
{"text": "You really nailed that presentation.", "label_name": "sarcastic", "label": 6}
{"text": "Please, go right ahead.", "label_name": "sarcastic", "label": 6}
{"text": "Thanks for handing this to me.", "label_name": "sarcastic", "label": 6}
{"text": "You downloaded exactly the right thing.", "label_name": "sarcastic", "label": 6}
{"text": "I love standing here doing nothing.", "label_name": "sarcastic", "label": 6}
{"text": "The sound is so soothing.", "label_name": "sarcastic", "label": 6}
{"text": "It certainly frames my face well.", "label_name": "sarcastic", "label": 6}
{"text": "I see you are hard at work.", "label_name": "sarcastic", "label": 6}
{"text": "This trip just gets better and better.", "label_name": "sarcastic", "label": 6}
{"text": "I just cannot put it down.", "label_name": "sarcastic", "label": 6}
{"text": "You really add a nice touch to the floor.", "label_name": "sarcastic", "label": 6}
{"text": "I really mastered that subject.", "label_name": "sarcastic", "label": 6}
{"text": "I am completely shocked by that news.", "label_name": "sarcastic", "label": 6}
{"text": "I don't know if I can finish all this.", "label_name": "sarcastic", "label": 6}
{"text": "It is not a bug, it is a feature.", "label_name": "sarcastic", "label": 6}
{"text": "Thanks for the shower.", "label_name": "sarcastic", "label": 6}
{"text": "So glad you could join us today.", "label_name": "sarcastic", "label": 6}
{"text": "I wonder who made that mess.", "label_name": "sarcastic", "label": 6}
{"text": "I believe you completely.", "label_name": "sarcastic", "label": 6}
{"text": "That pattern is very eye-catching.", "label_name": "sarcastic", "label": 6}
{"text": "Take your time, I have nowhere to be.", "label_name": "sarcastic", "label": 6}
{"text": "It looks just like the picture.", "label_name": "sarcastic", "label": 6}
{"text": "I am happy to do your job for you.", "label_name": "sarcastic", "label": 6}
{"text": "I am so lucky today.", "label_name": "sarcastic", "label": 6}
{"text": "The writing is on another level.", "label_name": "sarcastic", "label": 6}
{"text": "The garden looks very natural.", "label_name": "sarcastic", "label": 6}
{"text": "That was a valuable learning opportunity.", "label_name": "sarcastic", "label": 6}
{"text": "You are a real comedian.", "label_name": "sarcastic", "label": 6}
{"text": "That was the easiest question ever.", "label_name": "sarcastic", "label": 6}
{"text": "The service here is lightning fast.", "label_name": "sarcastic", "label": 6}
{"text": "That is a great way to clean the keyboard.", "label_name": "sarcastic", "label": 6}
{"text": "Please, tell me more about your success.", "label_name": "sarcastic", "label": 6}
{"text": "I totally trust what you are saying.", "label_name": "sarcastic", "label": 6}
{"text": "That felt great on the suspension.", "label_name": "sarcastic", "label": 6}
{"text": "Look at all these options I have.", "label_name": "sarcastic", "label": 6}
{"text": "It has a nice crunch to it.", "label_name": "sarcastic", "label": 6}
{"text": "You are too kind.", "label_name": "sarcastic", "label": 6}
{"text": "Your feedback is very important to me.", "label_name": "sarcastic", "label": 6}
{"text": "This ride is so smooth.", "label_name": "sarcastic", "label": 6}
{"text": "It really speaks to the soul.", "label_name": "sarcastic", "label": 6}
{"text": "It adds character to the surface.", "label_name": "sarcastic", "label": 6}
{"text": "Thanks for pointing that out.", "label_name": "sarcastic", "label": 6}
{"text": "You have a very unique filing system.", "label_name": "sarcastic", "label": 6}
{"text": "This silverware is sparkling clean.", "label_name": "sarcastic", "label": 6}
{"text": "The deployment was a total success.", "label_name": "sarcastic", "label": 6}
{"text": "The anticipation is killing me.", "label_name": "sarcastic", "label": 6}
{"text": "Such a peaceful afternoon.", "label_name": "sarcastic", "label": 6}
{"text": "I am sure you did exactly that.", "label_name": "sarcastic", "label": 6}
{"text": "It must be the latest fashion.", "label_name": "sarcastic", "label": 6}
{"text": "Just what I needed right now.", "label_name": "sarcastic", "label": 6}
{"text": "Thanks for leaving this for me.", "label_name": "sarcastic", "label": 6}
{"text": "You spell things so creatively.", "label_name": "sarcastic", "label": 6}
{"text": "We definitely know where we are going.", "label_name": "sarcastic", "label": 6}
{"text": "That is music to my ears.", "label_name": "sarcastic", "label": 6}
{"text": "I have so much money to spare.", "label_name": "sarcastic", "label": 6}
{"text": "I think I aced it.", "label_name": "sarcastic", "label": 6}
{"text": "I am so proud of this team's effort.", "label_name": "sarcastic", "label": 6}
{"text": "Oh, I see what you did there.", "label_name": "sarcastic", "label": 6}
{"text": "It is very fresh, I will give you that.", "label_name": "sarcastic", "label": 6}
{"text": "That is a lovely shade of blue.", "label_name": "sarcastic", "label": 6}
{"text": "This cart drives like a dream.", "label_name": "sarcastic", "label": 6}
{"text": "We are moving at light speed.", "label_name": "sarcastic", "label": 6}
{"text": "You should be on stage.", "label_name": "sarcastic", "label": 6}
{"text": "That is a revolutionary thought.", "label_name": "sarcastic", "label": 6}
{"text": "It is nice to be disconnected.", "label_name": "sarcastic", "label": 6}
{"text": "Accidents happen, right?", "label_name": "sarcastic", "label": 6}
{"text": "Could this day get any better?", "label_name": "sarcastic", "label": 6}
{"text": "No rush, take your time.", "label_name": "sarcastic", "label": 6}
{"text": "It is riveting from start to finish.", "label_name": "sarcastic", "label": 6}
{"text": "We have a little visitor.", "label_name": "sarcastic", "label": 6}
{"text": "I am setting new records.", "label_name": "sarcastic", "label": 6}
{"text": "A feast fit for a king.", "label_name": "sarcastic", "label": 6}
{"text": "This machine is a beast.", "label_name": "sarcastic", "label": 6}
{"text": "It feels light as a feather.", "label_name": "sarcastic", "label": 6}
{"text": "Walking is good exercise anyway.", "label_name": "sarcastic", "label": 6}
{"text": "You sound great today.", "label_name": "sarcastic", "label": 6}
{"text": "You have a gift for this.", "label_name": "sarcastic", "label": 6}
{"text": "The view of the wall is stunning.", "label_name": "sarcastic", "label": 6}
{"text": "I am staying nice and dry.", "label_name": "sarcastic", "label": 6}
{"text": "I admire your dedication to communication.", "label_name": "sarcastic", "label": 6}
{"text": "You hit notes I didn't know existed.", "label_name": "sarcastic", "label": 6}
{"text": "We have our own indoor pool.", "label_name": "sarcastic", "label": 6}
{"text": "I am fully prepared for class.", "label_name": "sarcastic", "label": 6}
{"text": "I ordered iced coffee, didn't I?", "label_name": "sarcastic", "label": 6}
{"text": "That is a good sign.", "label_name": "sarcastic", "label": 6}
{"text": "I left my wallet in my other pants.", "label_name": "sarcastic", "label": 6}
{"text": "Hello officer, nice to see you.", "label_name": "sarcastic", "label": 6}
{"text": "You are like an open book.", "label_name": "sarcastic", "label": 6}
{"text": "Your desk is an inspiration.", "label_name": "sarcastic", "label": 6}
{"text": "We will just camp out here.", "label_name": "sarcastic", "label": 6}
{"text": "It is so quiet I can hear a pin drop.", "label_name": "sarcastic", "label": 6}
{"text": "The data speaks for itself.", "label_name": "sarcastic", "label": 6}
{"text": "So original and fresh.", "label_name": "sarcastic", "label": 6}
{"text": "Nice airflow in here.", "label_name": "sarcastic", "label": 6}
{"text": "I have nothing else to do tonight.", "label_name": "sarcastic", "label": 6}
{"text": "It adds texture to the dish.", "label_name": "sarcastic", "label": 6}
{"text": "Let's try turning it on.", "label_name": "sarcastic", "label": 6}
{"text": "Distressed fabric is in style.", "label_name": "sarcastic", "label": 6}
{"text": "Taking the scenic route today.", "label_name": "sarcastic", "label": 6}
{"text": "You are a terrible liar.", "label_name": "sarcastic", "label": 6}
{"text": "It is very artistic.", "label_name": "sarcastic", "label": 6}
{"text": "Squish, squish, very comfortable.", "label_name": "sarcastic", "label": 6}
{"text": "Excuse me, my mistake.", "label_name": "sarcastic", "label": 6}
{"text": "Time is just a construct.", "label_name": "sarcastic", "label": 6}
{"text": "The sound design is immersive.", "label_name": "sarcastic", "label": 6}
{"text": "It is basically modern art.", "label_name": "sarcastic", "label": 6}
{"text": "I love surprises.", "label_name": "sarcastic", "label": 6}
{"text": "My mouth is definitely not on fire.", "label_name": "sarcastic", "label": 6}
{"text": "Blazing fast speeds.", "label_name": "sarcastic", "label": 6}
{"text": "It looks brand new to me.", "label_name": "sarcastic", "label": 6}
{"text": "Friendly people everywhere.", "label_name": "sarcastic", "label": 6}
{"text": "You missed a spot.", "label_name": "sarcastic", "label": 6}
{"text": "Easy fix, I am sure.", "label_name": "sarcastic", "label": 6}
{"text": "Who needs a gym membership?", "label_name": "sarcastic", "label": 6}
{"text": "Stop looking at me like that.", "label_name": "sarcastic", "label": 6}
{"text": "Nice tie pattern.", "label_name": "sarcastic", "label": 6}
{"text": "What a satisfying conclusion.", "label_name": "sarcastic", "label": 6}
{"text": "Fort Knox has nothing on us.", "label_name": "sarcastic", "label": 6}
{"text": "It is a quick read.", "label_name": "sarcastic", "label": 6}
{"text": "The flavor is subtle.", "label_name": "sarcastic", "label": 6}
{"text": "Look at that animation.", "label_name": "sarcastic", "label": 6}
{"text": "It fits like a glove.", "label_name": "sarcastic", "label": 6}
{"text": "Come on, you can do it.", "label_name": "sarcastic", "label": 6}
{"text": "You are a master chef.", "label_name": "sarcastic", "label": 6}
{"text": "Let me explain it again.", "label_name": "sarcastic", "label": 6}
{"text": "We are forging our own path.", "label_name": "sarcastic", "label": 6}
{"text": "I have all day.", "label_name": "sarcastic", "label": 6}
{"text": "I can see the gears turning.", "label_name": "sarcastic", "label": 6}
{"text": "I am moved to tears.", "label_name": "sarcastic", "label": 6}
{"text": "It gives the room character.", "label_name": "sarcastic", "label": 6}
{"text": "This is the highlight of my week.", "label_name": "sarcastic", "label": 6}
{"text": "Nice and crispy.", "label_name": "sarcastic", "label": 6}
{"text": "It has a vintage feel.", "label_name": "sarcastic", "label": 6}
{"text": "You are a trendsetter.", "label_name": "sarcastic", "label": 6}
{"text": "I love that sound.", "label_name": "sarcastic", "label": 6}
{"text": "Look who finally showed up.", "label_name": "sarcastic", "label": 6}
{"text": "A sign of a creative mind.", "label_name": "sarcastic", "label": 6}
{"text": "Sleeping under the stars tonight.", "label_name": "sarcastic", "label": 6}
{"text": "That is a unique fragrance.", "label_name": "sarcastic", "label": 6}
{"text": "Close enough.", "label_name": "sarcastic", "label": 6}
{"text": "I can see everything perfectly.", "label_name": "sarcastic", "label": 6}
{"text": "It is very green in here.", "label_name": "sarcastic", "label": 6}
{"text": "Nice try, really.", "label_name": "sarcastic", "label": 6}
{"text": "I will just use my sleeve.", "label_name": "sarcastic", "label": 6}
{"text": "Solid connection.", "label_name": "sarcastic", "label": 6}
{"text": "That color really pops.", "label_name": "sarcastic", "label": 6}
{"text": "Guess we live here now.", "label_name": "sarcastic", "label": 6}
{"text": "I like my food room temperature.", "label_name": "sarcastic", "label": 6}
{"text": "That was hysterical.", "label_name": "sarcastic", "label": 6}
{"text": "Free car wash.", "label_name": "sarcastic", "label": 6}
{"text": "Watch your step.", "label_name": "sarcastic", "label": 6}
{"text": "Very neat handwriting.", "label_name": "sarcastic", "label": 6}
{"text": "Is it over yet?", "label_name": "sarcastic", "label": 6}
{"text": "Must be the wind.", "label_name": "sarcastic", "label": 6}
{"text": "Building muscle.", "label_name": "sarcastic", "label": 6}
{"text": "Don't drink it all at once.", "label_name": "sarcastic", "label": 6}
{"text": "Keeping things cool.", "label_name": "sarcastic", "label": 6}
{"text": "A steal at twice the price.", "label_name": "sarcastic", "label": 6}
{"text": "It is only flat on the bottom.", "label_name": "sarcastic", "label": 6}
{"text": "I love the wild look.", "label_name": "sarcastic", "label": 6}
{"text": "You have a great radio voice.", "label_name": "sarcastic", "label": 6}
{"text": "Sleeping on a cloud.", "label_name": "sarcastic", "label": 6}
{"text": "Dry as a bone.", "label_name": "sarcastic", "label": 6}
{"text": "Working half day?", "label_name": "sarcastic", "label": 6}
{"text": "Looks so realistic.", "label_name": "sarcastic", "label": 6}
{"text": "Home sweet home.", "label_name": "sarcastic", "label": 6}
{"text": "I am a genius.", "label_name": "sarcastic", "label": 6}
{"text": "The calculation is complete.", "label_name": "confident", "label": 0}
{"text": "We have fixed the server.", "label_name": "confident", "label": 0}
{"text": "I finished the schedule at midnight.", "label_name": "confident", "label": 0}
{"text": "Switch the plan to ready.", "label_name": "confident", "label": 0}
{"text": "The duration is exactly ten minutes.", "label_name": "confident", "label": 0}
{"text": "This is the correct fault.", "label_name": "confident", "label": 0}
{"text": "Let's close the sequence.", "label_name": "confident", "label": 0}
{"text": "This is the correct solution.", "label_name": "confident", "label": 0}
{"text": "System file is complete.", "label_name": "confident", "label": 0}
{"text": "We found the solution in the report.", "label_name": "confident", "label": 0}
{"text": "Set the sequence to maximum.", "label_name": "confident", "label": 0}
{"text": "System file is stable.", "label_name": "confident", "label": 0}
{"text": "The procedure is complete.", "label_name": "confident", "label": 0}
{"text": "All files are active.", "label_name": "confident", "label": 0}
{"text": "Set the code to manual.", "label_name": "confident", "label": 0}
{"text": "The perimeter stands at one hundred percent.", "label_name": "confident", "label": 0}
{"text": "The bridge has been verified.", "label_name": "confident", "label": 0}
{"text": "I finished the deadline at noon.", "label_name": "confident", "label": 0}
{"text": "The timeline remains unchanged.", "label_name": "confident", "label": 0}
{"text": "The bridge stands at one hundred percent.", "label_name": "confident", "label": 0}
{"text": "We found the solution in the area.", "label_name": "confident", "label": 0}
{"text": "The timeline remains firm.", "label_name": "confident", "label": 0}
{"text": "This is the correct signal.", "label_name": "confident", "label": 0}
{"text": "The target is ready.", "label_name": "confident", "label": 0}
{"text": "Let's move the protocol.", "label_name": "confident", "label": 0}
{"text": "The deal is fully clear.", "label_name": "confident", "label": 0}
{"text": "I have loaded the target.", "label_name": "confident", "label": 0}
{"text": "Initiate the project sequence.", "label_name": "confident", "label": 0}
{"text": "The meeting is scheduled for 1800 hours.", "label_name": "confident", "label": 0}
{"text": "Move the protocol to the back.", "label_name": "confident", "label": 0}
{"text": "Move the phase to the secure area.", "label_name": "confident", "label": 0}
{"text": "Initiate the code sequence.", "label_name": "confident", "label": 0}
{"text": "The solution indicates a failure.", "label_name": "confident", "label": 0}
{"text": "The answer is no.", "label_name": "confident", "label": 0}
{"text": "We depart at midnight sharp.", "label_name": "confident", "label": 0}
{"text": "I checked the error and it is present.", "label_name": "confident", "label": 0}
{"text": "The patient is fully online.", "label_name": "confident", "label": 0}
{"text": "The contract stands at fifty percent.", "label_name": "confident", "label": 0}
{"text": "This is the correct record.", "label_name": "confident", "label": 0}
{"text": "The answer is confirmed.", "label_name": "confident", "label": 0}
{"text": "The source of the solution is verified.", "label_name": "confident", "label": 0}
{"text": "The calculation is perfect.", "label_name": "confident", "label": 0}
{"text": "The target has been fixed.", "label_name": "confident", "label": 0}
{"text": "The connection has been cleared.", "label_name": "confident", "label": 0}
{"text": "The duration is exactly thirty minutes.", "label_name": "confident", "label": 0}
{"text": "System target is clear.", "label_name": "confident", "label": 0}
{"text": "The flight is scheduled for dawn.", "label_name": "confident", "label": 0}
{"text": "Proceed with the operation.", "label_name": "confident", "label": 0}
{"text": "I checked the solution and it is clean.", "label_name": "confident", "label": 0}
{"text": "We will stop the project now.", "label_name": "confident", "label": 0}
{"text": "The evidence points to success.", "label_name": "confident", "label": 0}
{"text": "The answer is valid.", "label_name": "confident", "label": 0}
{"text": "We found the match in the file.", "label_name": "confident", "label": 0}
{"text": "The file is complete.", "label_name": "confident", "label": 0}
{"text": "Move the sequence to the center.", "label_name": "confident", "label": 0}
{"text": "Set the phase to manual.", "label_name": "confident", "label": 0}
{"text": "We start at 1800 hours.", "label_name": "confident", "label": 0}
{"text": "The operation is secure.", "label_name": "confident", "label": 0}
{"text": "We have fixed the perimeter.", "label_name": "confident", "label": 0}
{"text": "The target is closed.", "label_name": "confident", "label": 0}
{"text": "We are ahead of schedule.", "label_name": "confident", "label": 0}
{"text": "I have secured the perimeter.", "label_name": "confident", "label": 0}
{"text": "The data supports the record.", "label_name": "confident", "label": 0}
{"text": "The source of the solution is verified.", "label_name": "confident", "label": 0}
{"text": "The calculation is perfect.", "label_name": "confident", "label": 0}
{"text": "We are ahead of target.", "label_name": "confident", "label": 0}
{"text": "The decision is to launch the protocol.", "label_name": "confident", "label": 0}
{"text": "I finished the flight at dawn.", "label_name": "confident", "label": 0}
{"text": "The operation is active.", "label_name": "confident", "label": 0}
{"text": "The source of the signal is internal.", "label_name": "confident", "label": 0}
{"text": "The evidence points to completion.", "label_name": "confident", "label": 0}
{"text": "The engine is ready for launch.", "label_name": "confident", "label": 0}
{"text": "The perimeter has been secured.", "label_name": "confident", "label": 0}
{"text": "We start at 1800 hours.", "label_name": "confident", "label": 0}
{"text": "The file has been approved.", "label_name": "confident", "label": 0}
{"text": "The connection stands at ninety percent.", "label_name": "confident", "label": 0}
{"text": "I am approving the project immediately.", "label_name": "confident", "label": 0}
{"text": "We are going to stop the protocol.", "label_name": "confident", "label": 0}
{"text": "We are on meeting for dawn.", "label_name": "confident", "label": 0}
{"text": "The answer is correct.", "label_name": "confident", "label": 0}
{"text": "We will clear the meeting now.", "label_name": "confident", "label": 0}
{"text": "I checked the signal and it is present.", "label_name": "confident", "label": 0}
{"text": "The data supports the trend.", "label_name": "confident", "label": 0}
{"text": "All checks are ready.", "label_name": "confident", "label": 0}
{"text": "The contract stands at zero percent.", "label_name": "confident", "label": 0}
{"text": "The patient is ready for launch.", "label_name": "confident", "label": 0}
{"text": "The data supports the error.", "label_name": "confident", "label": 0}
{"text": "We are on goal for noon.", "label_name": "confident", "label": 0}
{"text": "The decision is to open the code.", "label_name": "confident", "label": 0}
{"text": "I am stopping the meeting immediately.", "label_name": "confident", "label": 0}
{"text": "I have approved the connection.", "label_name": "confident", "label": 0}
{"text": "The fault indicates a success.", "label_name": "confident", "label": 0}
{"text": "We have met the target for today.", "label_name": "confident", "label": 0}
{"text": "I checked the solution and it is clean.", "label_name": "confident", "label": 0}
{"text": "We found the match in the room.", "label_name": "confident", "label": 0}
{"text": "We have met the flight for today.", "label_name": "confident", "label": 0}
{"text": "Initiate the meeting sequence.", "label_name": "confident", "label": 0}
{"text": "The duration is exactly five minutes.", "label_name": "confident", "label": 0}
{"text": "We will launch the phase now.", "label_name": "confident", "label": 0}
{"text": "The server has been signed.", "label_name": "confident", "label": 0}
{"text": "The error indicates a failure.", "label_name": "confident", "label": 0}
{"text": "All systems are locked.", "label_name": "confident", "label": 0}
{"text": "Proceed with the project.", "label_name": "confident", "label": 0}
{"text": "We found the error in the area.", "label_name": "confident", "label": 0}
{"text": "I checked the fault and it is present.", "label_name": "confident", "label": 0}
{"text": "Proceed with the project.", "label_name": "confident", "label": 0}
{"text": "Proceed with the meeting.", "label_name": "confident", "label": 0}
{"text": "We found the solution in the system.", "label_name": "confident", "label": 0}
{"text": "The evidence points to fact.", "label_name": "confident", "label": 0}
{"text": "The duration is exactly five minutes.", "label_name": "confident", "label": 0}
{"text": "The source of the match is verified.", "label_name": "confident", "label": 0}
{"text": "The target is fully complete.", "label_name": "confident", "label": 0}
{"text": "I have confirmed the connection.", "label_name": "confident", "label": 0}
{"text": "The data supports the solution.", "label_name": "confident", "label": 0}
{"text": "The calculation is perfect.", "label_name": "confident", "label": 0}
{"text": "The answer is confirmed.", "label_name": "confident", "label": 0}
{"text": "The data supports the path.", "label_name": "confident", "label": 0}
{"text": "Initiate the sequence sequence.", "label_name": "confident", "label": 0}
{"text": "The source of the signal is verified.", "label_name": "confident", "label": 0}
{"text": "We are going to open the project.", "label_name": "confident", "label": 0}
{"text": "The data supports the path.", "label_name": "confident", "label": 0}
{"text": "The fault indicates a failure.", "label_name": "confident", "label": 0}
{"text": "The patient stands at fifty percent.", "label_name": "confident", "label": 0}
{"text": "Let's launch the protocol.", "label_name": "confident", "label": 0}
{"text": "Move the protocol to the front.", "label_name": "confident", "label": 0}
{"text": "The perimeter stands at fifty percent.", "label_name": "confident", "label": 0}
{"text": "The duration is exactly five minutes.", "label_name": "confident", "label": 0}
{"text": "The patient has been confirmed.", "label_name": "confident", "label": 0}
{"text": "We have met the deadline for today.", "label_name": "confident", "label": 0}
{"text": "I checked the error and it is empty.", "label_name": "confident", "label": 0}
{"text": "We found the signal in the code.", "label_name": "confident", "label": 0}
{"text": "We depart at midnight sharp.", "label_name": "confident", "label": 0}
{"text": "I am signing the protocol immediately.", "label_name": "confident", "label": 0}
{"text": "The engine is ready for review.", "label_name": "confident", "label": 0}
{"text": "We start at 1800 hours.", "label_name": "confident", "label": 0}
{"text": "The record indicates a success.", "label_name": "confident", "label": 0}
{"text": "The fault indicates a success.", "label_name": "confident", "label": 0}
{"text": "I finished the deadline at 1800 hours.", "label_name": "confident", "label": 0}
{"text": "We will stop the meeting now.", "label_name": "confident", "label": 0}
{"text": "The answer is yes.", "label_name": "confident", "label": 0}
{"text": "The source of the match is verified.", "label_name": "confident", "label": 0}
{"text": "Switch the code to standby.", "label_name": "confident", "label": 0}
{"text": "We start at midnight.", "label_name": "confident", "label": 0}
{"text": "We have met the meeting for today.", "label_name": "confident", "label": 0}
{"text": "Let's clear the code.", "label_name": "confident", "label": 0}
{"text": "The data supports the trend.", "label_name": "confident", "label": 0}
{"text": "Let's close the phase.", "label_name": "confident", "label": 0}
{"text": "We are going to move the plan.", "label_name": "confident", "label": 0}
{"text": "This is the correct match.", "label_name": "confident", "label": 0}
{"text": "The trend indicates a failure.", "label_name": "confident", "label": 0}
{"text": "We are on goal for 1800 hours.", "label_name": "confident", "label": 0}
{"text": "We found the signal in the report.", "label_name": "confident", "label": 0}
{"text": "We have cleared the server.", "label_name": "confident", "label": 0}
{"text": "We depart at dawn sharp.", "label_name": "confident", "label": 0}
{"text": "There is no error in the area.", "label_name": "confident", "label": 0}
{"text": "The data supports the trend.", "label_name": "confident", "label": 0}
{"text": "The answer is valid.", "label_name": "confident", "label": 0}
{"text": "We have fixed the contract.", "label_name": "confident", "label": 0}
{"text": "Initiate the sequence sequence.", "label_name": "confident", "label": 0}
{"text": "Initiate the sequence sequence.", "label_name": "confident", "label": 0}
{"text": "Initiate the code sequence.", "label_name": "confident", "label": 0}
{"text": "The transfer is active.", "label_name": "confident", "label": 0}
{"text": "The engine has been confirmed.", "label_name": "confident", "label": 0}
{"text": "Move the phase to the front.", "label_name": "confident", "label": 0}
{"text": "We are going to clear the sequence.", "label_name": "confident", "label": 0}
{"text": "The engine has been confirmed.", "label_name": "confident", "label": 0}
{"text": "The deal has been fixed.", "label_name": "confident", "label": 0}
{"text": "We are on goal for midnight.", "label_name": "confident", "label": 0}
{"text": "Initiate the project sequence.", "label_name": "confident", "label": 0}
{"text": "We have met the target for today.", "label_name": "confident", "label": 0}
{"text": "We have met the meeting for today.", "label_name": "confident", "label": 0}
{"text": "The deal has been loaded.", "label_name": "confident", "label": 0}
{"text": "I have confirmed the contract.", "label_name": "confident", "label": 0}
{"text": "All lights are closed.", "label_name": "confident", "label": 0}
{"text": "We found the path in the room.", "label_name": "confident", "label": 0}
{"text": "The meeting is scheduled for 1800 hours.", "label_name": "confident", "label": 0}
{"text": "I finished the deadline at 0800.", "label_name": "confident", "label": 0}
{"text": "There is no trend in the room.", "label_name": "confident", "label": 0}
{"text": "Set the sequence to zero.", "label_name": "confident", "label": 0}
{"text": "The duration is exactly five minutes.", "label_name": "confident", "label": 0}
{"text": "We start at midnight.", "label_name": "confident", "label": 0}
{"text": "We are ahead of meeting.", "label_name": "confident", "label": 0}
{"text": "Switch the project to active.", "label_name": "confident", "label": 0}
{"text": "This is the correct signal.", "label_name": "confident", "label": 0}
{"text": "Set the project to manual.", "label_name": "confident", "label": 0}
{"text": "We will start the operation now.", "label_name": "confident", "label": 0}
{"text": "Move the code to the back.", "label_name": "confident", "label": 0}
{"text": "Please move the window immediately.", "label_name": "impatient", "label": 5}
{"text": "Can we please speed up the repair?", "label_name": "impatient", "label": 5}
{"text": "We have discussed this name before.", "label_name": "impatient", "label": 5}
{"text": "It is already twelve o'clock.", "label_name": "impatient", "label": 5}
{"text": "We are running behind schedule today.", "label_name": "impatient", "label": 5}
{"text": "Open the box so we can start.", "label_name": "impatient", "label": 5}
{"text": "It should not take this long to finish.", "label_name": "impatient", "label": 5}
{"text": "The meeting was supposed to start at two.", "label_name": "impatient", "label": 5}
{"text": "Why is the upload still processing?", "label_name": "impatient", "label": 5}
{"text": "We need to move faster than this.", "label_name": "impatient", "label": 5}
{"text": "Do you understand the rule now?", "label_name": "impatient", "label": 5}
{"text": "Stop looking and just send the door.", "label_name": "impatient", "label": 5}
{"text": "Check the status of the bag again.", "label_name": "impatient", "label": 5}
{"text": "The answer is still red.", "label_name": "impatient", "label": 5}
{"text": "The deadline is lunch, not tomorrow.", "label_name": "impatient", "label": 5}
{"text": "We have discussed this instruction before.", "label_name": "impatient", "label": 5}
{"text": "Sign the vehicle at the bottom.", "label_name": "impatient", "label": 5}
{"text": "Has the file been completed?", "label_name": "impatient", "label": 5}
{"text": "We have discussed this plan before.", "label_name": "impatient", "label": 5}
{"text": "This process is taking longer than eight.", "label_name": "impatient", "label": 5}
{"text": "Read the rule, it explains everything.", "label_name": "impatient", "label": 5}
{"text": "Did you hear what I said about the name?", "label_name": "impatient", "label": 5}
{"text": "Are we done with the meeting yet?", "label_name": "impatient", "label": 5}
{"text": "It should not take this long to arrive.", "label_name": "impatient", "label": 5}
{"text": "We have exactly ten minutes left.", "label_name": "impatient", "label": 5}
{"text": "Sign the document at the bottom.", "label_name": "impatient", "label": 5}
{"text": "Just pick a table, it doesn't matter.", "label_name": "impatient", "label": 5}
{"text": "Go ahead and fix the door.", "label_name": "impatient", "label": 5}
{"text": "Where is the paper I asked for?", "label_name": "impatient", "label": 5}
{"text": "Give me the door and I will do it.", "label_name": "impatient", "label": 5}
{"text": "This is not the format I wanted it done.", "label_name": "impatient", "label": 5}
{"text": "Open the document so we can start.", "label_name": "impatient", "label": 5}
{"text": "I have been waiting here for twenty minutes.", "label_name": "impatient", "label": 5}
{"text": "Look at the time on the phone.", "label_name": "impatient", "label": 5}
{"text": "This process is taking longer than ten.", "label_name": "impatient", "label": 5}
{"text": "We have exactly thirty minutes left.", "label_name": "impatient", "label": 5}
{"text": "Why are we stopping at this desk?", "label_name": "impatient", "label": 5}
{"text": "Why are we stopping at this light?", "label_name": "impatient", "label": 5}
{"text": "Please move the vehicle immediately.", "label_name": "impatient", "label": 5}
{"text": "Can we please speed up the service?", "label_name": "impatient", "label": 5}
{"text": "Check the status of the email again.", "label_name": "impatient", "label": 5}
{"text": "I already told you the instruction is open.", "label_name": "impatient", "label": 5}
{"text": "The answer is still green.", "label_name": "impatient", "label": 5}
{"text": "Just start the door and let's go.", "label_name": "impatient", "label": 5}
{"text": "Go ahead and sign the door.", "label_name": "impatient", "label": 5}
{"text": "Go ahead and fix the vehicle.", "label_name": "impatient", "label": 5}
{"text": "I have been waiting here for ten minutes.", "label_name": "impatient", "label": 5}
{"text": "The sign clearly says green.", "label_name": "impatient", "label": 5}
{"text": "Tell me when the car is done.", "label_name": "impatient", "label": 5}
{"text": "Did you hear what I said about the code?", "label_name": "impatient", "label": 5}
{"text": "Stop looking and just sign the window.", "label_name": "impatient", "label": 5}
{"text": "The deadline is dinner, not tomorrow.", "label_name": "impatient", "label": 5}
{"text": "Give me the vehicle and I will do it.", "label_name": "impatient", "label": 5}
{"text": "The email is not moving at all.", "label_name": "impatient", "label": 5}
{"text": "I already told you the plan is wrong.", "label_name": "impatient", "label": 5}
{"text": "I have been waiting here for twenty minutes.", "label_name": "impatient", "label": 5}
{"text": "Skip the story and get to the point.", "label_name": "impatient", "label": 5}
{"text": "This is not the format I wanted it done.", "label_name": "impatient", "label": 5}
{"text": "Is the report ready for me yet?", "label_name": "impatient", "label": 5}
{"text": "Read the number, it explains everything.", "label_name": "impatient", "label": 5}
{"text": "You are taking too long with the meeting.", "label_name": "impatient", "label": 5}
{"text": "Put the door on the shelf now.", "label_name": "impatient", "label": 5}
{"text": "Go ahead and sign the window.", "label_name": "impatient", "label": 5}
{"text": "Where is the email I asked for?", "label_name": "impatient", "label": 5}
{"text": "Where is the file I asked for?", "label_name": "impatient", "label": 5}
{"text": "I have been waiting here for five minutes.", "label_name": "impatient", "label": 5}
{"text": "Where is the food I asked for?", "label_name": "impatient", "label": 5}
{"text": "I need you to move the document right now.", "label_name": "impatient", "label": 5}
{"text": "Has the report been completed?", "label_name": "impatient", "label": 5}
{"text": "Read the plan, it explains everything.", "label_name": "impatient", "label": 5}
{"text": "We have exactly thirty minutes left.", "label_name": "impatient", "label": 5}
{"text": "Is the file ready for me yet?", "label_name": "impatient", "label": 5}
{"text": "I am still waiting for the check.", "label_name": "impatient", "label": 5}
{"text": "I already told you the code is no.", "label_name": "impatient", "label": 5}
{"text": "We have exactly ten minutes left.", "label_name": "impatient", "label": 5}
{"text": "It should not take this long to order.", "label_name": "impatient", "label": 5}
{"text": "The schedule says we leave at two.", "label_name": "impatient", "label": 5}
{"text": "This is not the speed I wanted it done.", "label_name": "impatient", "label": 5}
{"text": "Has the bag been completed?", "label_name": "impatient", "label": 5}
{"text": "You are taking too long with the repair.", "label_name": "impatient", "label": 5}
{"text": "Check the status of the file again.", "label_name": "impatient", "label": 5}
{"text": "This process is taking longer than eight.", "label_name": "impatient", "label": 5}
{"text": "Put the table on the table now.", "label_name": "impatient", "label": 5}
{"text": "This is not the quality I wanted it done.", "label_name": "impatient", "label": 5}
{"text": "Do you understand the name now?", "label_name": "impatient", "label": 5}
{"text": "I said address, not price.", "label_name": "impatient", "label": 5}
{"text": "Check the status of the paper again.", "label_name": "impatient", "label": 5}
{"text": "I need you to fix the contract right now.", "label_name": "impatient", "label": 5}
{"text": "I need this finished by sunset.", "label_name": "impatient", "label": 5}
{"text": "I am still waiting for the check.", "label_name": "impatient", "label": 5}
{"text": "The car is not moving at all.", "label_name": "impatient", "label": 5}
{"text": "Why are we stopping at this sign?", "label_name": "impatient", "label": 5}
{"text": "I already told you the instruction is green.", "label_name": "impatient", "label": 5}
{"text": "I am not going to repeat the address.", "label_name": "impatient", "label": 5}
{"text": "I have been waiting here for five minutes.", "label_name": "impatient", "label": 5}
{"text": "I said name, not price.", "label_name": "impatient", "label": 5}
{"text": "I don't see the email on my desk.", "label_name": "impatient", "label": 5}
{"text": "Do you understand the address now?", "label_name": "impatient", "label": 5}
{"text": "You are taking too long with the repair.", "label_name": "impatient", "label": 5}
{"text": "The schedule says we leave at eight.", "label_name": "impatient", "label": 5}
{"text": "Open the table so we can start.", "label_name": "impatient", "label": 5}
{"text": "Has the paper been completed?", "label_name": "impatient", "label": 5}
{"text": "Do you understand the address now?", "label_name": "impatient", "label": 5}
{"text": "You are taking too long with the order.", "label_name": "impatient", "label": 5}
{"text": "I need this finished by sunset.", "label_name": "impatient", "label": 5}
{"text": "I need this finished by sunset.", "label_name": "impatient", "label": 5}
{"text": "Has the report been completed?", "label_name": "impatient", "label": 5}
{"text": "Put the vehicle on the shelf now.", "label_name": "impatient", "label": 5}
{"text": "Did you hear what I said about the rule?", "label_name": "impatient", "label": 5}
{"text": "This is not the quality I wanted it done.", "label_name": "impatient", "label": 5}
{"text": "Just pick a table, it doesn't matter.", "label_name": "impatient", "label": 5}
{"text": "Please start the vehicle immediately.", "label_name": "impatient", "label": 5}
{"text": "Give me the contract and I will do it.", "label_name": "impatient", "label": 5}
{"text": "The answer is still open.", "label_name": "impatient", "label": 5}
{"text": "Open the door so we can start.", "label_name": "impatient", "label": 5}
{"text": "I am still waiting for the paper.", "label_name": "impatient", "label": 5}
{"text": "I already told you the rule is closed.", "label_name": "impatient", "label": 5}
{"text": "This is not the order I wanted it done.", "label_name": "impatient", "label": 5}
{"text": "We have exactly twenty minutes left.", "label_name": "impatient", "label": 5}
{"text": "This is the last time I am asking.", "label_name": "impatient", "label": 5}
{"text": "Stop waiting and just start the document.", "label_name": "impatient", "label": 5}
{"text": "Just sign the document and let's go.", "label_name": "impatient", "label": 5}
{"text": "Why is the download still processing?", "label_name": "impatient", "label": 5}
{"text": "Why are we stopping at this desk?", "label_name": "impatient", "label": 5}
{"text": "The answer is still open.", "label_name": "impatient", "label": 5}
{"text": "Look at the time on the watch.", "label_name": "impatient", "label": 5}
{"text": "Where is the paper I asked for?", "label_name": "impatient", "label": 5}
{"text": "I don't need the details, just the total.", "label_name": "impatient", "label": 5}
{"text": "Why is the line still pending?", "label_name": "impatient", "label": 5}
{"text": "I am still waiting for the file.", "label_name": "impatient", "label": 5}
{"text": "The meeting was supposed to start at eight.", "label_name": "impatient", "label": 5}
{"text": "The deadline is noon, not tomorrow.", "label_name": "impatient", "label": 5}
{"text": "I am still waiting for the file.", "label_name": "impatient", "label": 5}
{"text": "It should not take this long to arrive.", "label_name": "impatient", "label": 5}
{"text": "I am not going to repeat the number.", "label_name": "impatient", "label": 5}
{"text": "Why are we stopping at this desk?", "label_name": "impatient", "label": 5}
{"text": "Look at the time on the watch.", "label_name": "impatient", "label": 5}
{"text": "Stop looking and just move the contract.", "label_name": "impatient", "label": 5}
{"text": "I need this finished by sunset.", "label_name": "impatient", "label": 5}
{"text": "I am not going to repeat the name.", "label_name": "impatient", "label": 5}
{"text": "Has the car been completed?", "label_name": "impatient", "label": 5}
{"text": "Give me the document and I will do it.", "label_name": "impatient", "label": 5}
{"text": "Why are we stopping at this light?", "label_name": "impatient", "label": 5}
{"text": "It is already ten o'clock.", "label_name": "impatient", "label": 5}
{"text": "I said rule, not date.", "label_name": "impatient", "label": 5}
{"text": "Put the box on the shelf now.", "label_name": "impatient", "label": 5}
{"text": "Are we done with the scan yet?", "label_name": "impatient", "label": 5}
{"text": "I have been waiting here for forty minutes.", "label_name": "impatient", "label": 5}
{"text": "I said rule, not date.", "label_name": "impatient", "label": 5}
{"text": "Check the status of the report again.", "label_name": "impatient", "label": 5}
{"text": "Tell me when the file is done.", "label_name": "impatient", "label": 5}
{"text": "I said address, not date.", "label_name": "impatient", "label": 5}
{"text": "We have discussed this address before.", "label_name": "impatient", "label": 5}
{"text": "Check the status of the check again.", "label_name": "impatient", "label": 5}
{"text": "The answer is still finished.", "label_name": "impatient", "label": 5}
{"text": "Skip the story and get to the point.", "label_name": "impatient", "label": 5}
{"text": "Why are we stopping at this sign?", "label_name": "impatient", "label": 5}
{"text": "I said code, not price.", "label_name": "impatient", "label": 5}
{"text": "Sign the contract at the bottom.", "label_name": "impatient", "label": 5}
{"text": "Did you hear what I said about the instruction?", "label_name": "impatient", "label": 5}
{"text": "I am still waiting for the file.", "label_name": "impatient", "label": 5}
{"text": "We have discussed this number before.", "label_name": "impatient", "label": 5}
{"text": "Skip the explanation and get to the point.", "label_name": "impatient", "label": 5}
{"text": "The answer is still wrong.", "label_name": "impatient", "label": 5}
{"text": "You are taking too long with the repair.", "label_name": "impatient", "label": 5}
{"text": "The schedule says we leave at five.", "label_name": "impatient", "label": 5}
{"text": "Is the food ready for me yet?", "label_name": "impatient", "label": 5}
{"text": "Move the document out of the way.", "label_name": "impatient", "label": 5}
{"text": "Can we please speed up the order?", "label_name": "impatient", "label": 5}
{"text": "We have discussed this plan before.", "label_name": "impatient", "label": 5}
{"text": "The meeting was supposed to start at twelve.", "label_name": "impatient", "label": 5}
{"text": "Just pick a total, it doesn't matter.", "label_name": "impatient", "label": 5}
{"text": "I said instruction, not time.", "label_name": "impatient", "label": 5}
{"text": "Check the status of the file again.", "label_name": "impatient", "label": 5}
{"text": "Go ahead and check the document.", "label_name": "impatient", "label": 5}
{"text": "Are we done with the update yet?", "label_name": "impatient", "label": 5}
{"text": "Give me the table and I will do it.", "label_name": "impatient", "label": 5}
{"text": "Tell me when the bag is done.", "label_name": "impatient", "label": 5}
{"text": "I said code, not date.", "label_name": "impatient", "label": 5}
{"text": "I don't see the food on my desk.", "label_name": "impatient", "label": 5}
{"text": "The meeting was supposed to start at eight.", "label_name": "impatient", "label": 5}
{"text": "We have exactly forty minutes left.", "label_name": "impatient", "label": 5}
{"text": "I don't see the report on my desk.", "label_name": "impatient", "label": 5}
{"text": "I need you to send the contract right now.", "label_name": "impatient", "label": 5}
{"text": "Tell me when the paper is done.", "label_name": "impatient", "label": 5}
{"text": "Give me the table and I will do it.", "label_name": "impatient", "label": 5}
{"text": "I already told you the code is closed.", "label_name": "impatient", "label": 5}
{"text": "Has the report been completed?", "label_name": "impatient", "label": 5}
{"text": "This is not just a dream, it is a dream.", "label_name": "passionate", "label": 4}
{"text": "Do not let anyone take this goal away.", "label_name": "passionate", "label": 4}
{"text": "I believe in this goal more than anything.", "label_name": "passionate", "label": 4}
{"text": "Look at the cause, it matches perfectly.", "label_name": "passionate", "label": 4}
{"text": "We stand here and we stay the goal.", "label_name": "passionate", "label": 4}
{"text": "The line must be perfect or it fails.", "label_name": "passionate", "label": 4}
{"text": "I checked the numbers and the result is true.", "label_name": "passionate", "label": 4}
{"text": "Look at the match, it matches perfectly.", "label_name": "passionate", "label": 4}
{"text": "We have to move immediately.", "label_name": "passionate", "label": 4}
{"text": "We stand here and we stay the land.", "label_name": "passionate", "label": 4}
{"text": "The rule must be perfect or it fails.", "label_name": "passionate", "label": 4}
{"text": "There is no time to start, just go.", "label_name": "passionate", "label": 4}
{"text": "Move the barrier to the shelter right now.", "label_name": "passionate", "label": 4}
{"text": "I will fight for this right every single day.", "label_name": "passionate", "label": 4}
{"text": "I am not going to fight until we are done.", "label_name": "passionate", "label": 4}
{"text": "I can see the structure clearly in my mind.", "label_name": "passionate", "label": 4}
{"text": "This future is the beginning of everything.", "label_name": "passionate", "label": 4}
{"text": "We start with nothing and we create idea.", "label_name": "passionate", "label": 4}
{"text": "Make the color strong and the rest will follow.", "label_name": "passionate", "label": 4}
{"text": "Listen to the center, it tells you the truth.", "label_name": "passionate", "label": 4}
{"text": "Move the people to the ground right now.", "label_name": "passionate", "label": 4}
{"text": "This is not just a concept, it is a concept.", "label_name": "passionate", "label": 4}
{"text": "This start is the beginning of everything.", "label_name": "passionate", "label": 4}
{"text": "Get everyone to the center as fast as you can.", "label_name": "passionate", "label": 4}
{"text": "You are the one who can hold the mission.", "label_name": "passionate", "label": 4}
{"text": "There is no time to run, just go.", "label_name": "passionate", "label": 4}
{"text": "The center must be strong or it fails.", "label_name": "passionate", "label": 4}
{"text": "This is the link we have been looking for.", "label_name": "passionate", "label": 4}
{"text": "Look at the source, it matches perfectly.", "label_name": "passionate", "label": 4}
{"text": "I believe in this right more than anything.", "label_name": "passionate", "label": 4}
{"text": "The beat must be honest or it fails.", "label_name": "passionate", "label": 4}
{"text": "I have the proof in my map.", "label_name": "passionate", "label": 4}
{"text": "Move the data to the safe zone right now.", "label_name": "passionate", "label": 4}
{"text": "Look at the center, really look at it.", "label_name": "passionate", "label": 4}
{"text": "We start with plans and we create movement.", "label_name": "passionate", "label": 4}
{"text": "The heart connects everything together.", "label_name": "passionate", "label": 4}
{"text": "Get everyone to the roof as fast as you can.", "label_name": "passionate", "label": 4}
{"text": "Focus on the color, that is what matters.", "label_name": "passionate", "label": 4}
{"text": "Do not let anyone take this truth away.", "label_name": "passionate", "label": 4}
{"text": "Get everyone to the exit as fast as you can.", "label_name": "passionate", "label": 4}
{"text": "There is no doubt that this is the link.", "label_name": "passionate", "label": 4}
{"text": "The core connects everything together.", "label_name": "passionate", "label": 4}
{"text": "There is no doubt that this is the key.", "label_name": "passionate", "label": 4}
{"text": "There is no doubt that this is the source.", "label_name": "passionate", "label": 4}
{"text": "We start with ideas and we create dream.", "label_name": "passionate", "label": 4}
{"text": "Listen to the word, it tells you the truth.", "label_name": "passionate", "label": 4}
{"text": "I checked the numbers and the result is final.", "label_name": "passionate", "label": 4}
{"text": "We will change how people use the structure.", "label_name": "passionate", "label": 4}
{"text": "I will fight for this right every single day.", "label_name": "passionate", "label": 4}
{"text": "I can see the bridge clearly in my mind.", "label_name": "passionate", "label": 4}
{"text": "Make the line strong and the rest will follow.", "label_name": "passionate", "label": 4}
{"text": "Do not let anyone take this right away.", "label_name": "passionate", "label": 4}
{"text": "The data proves that answer is actually alive.", "label_name": "passionate", "label": 4}
{"text": "I have the proof in my report.", "label_name": "passionate", "label": 4}
{"text": "We start with ideas and we create start.", "label_name": "passionate", "label": 4}
{"text": "We start with nothing and we create plan.", "label_name": "passionate", "label": 4}
{"text": "I checked the numbers and the result is solid.", "label_name": "passionate", "label": 4}
{"text": "I checked the numbers and the result is solid.", "label_name": "passionate", "label": 4}
{"text": "I checked the numbers and the result is solid.", "label_name": "passionate", "label": 4}
{"text": "We are going to build the network right here.", "label_name": "passionate", "label": 4}
{"text": "We have to leave immediately.", "label_name": "passionate", "label": 4}
{"text": "I am not going to fight until we are done.", "label_name": "passionate", "label": 4}
{"text": "We have to change immediately.", "label_name": "passionate", "label": 4}
{"text": "There is no doubt that this is the key.", "label_name": "passionate", "label": 4}
{"text": "We need to leave before it is too late.", "label_name": "passionate", "label": 4}
{"text": "Stop the count and listen to me.", "label_name": "passionate", "label": 4}
{"text": "We finally found the link in the screen.", "label_name": "passionate", "label": 4}
{"text": "The answer is right here on the map.", "label_name": "passionate", "label": 4}
{"text": "This is the record we have been looking for.", "label_name": "passionate", "label": 4}
{"text": "We stand here and we fight the team.", "label_name": "passionate", "label": 4}
{"text": "This is the only way to capture the beat.", "label_name": "passionate", "label": 4}
{"text": "The data proves that solution is actually correct.", "label_name": "passionate", "label": 4}
{"text": "Do not let anyone take this land away.", "label_name": "passionate", "label": 4}
{"text": "You have to feel the center in the light.", "label_name": "passionate", "label": 4}
{"text": "Get everyone to the ground as fast as you can.", "label_name": "passionate", "label": 4}
{"text": "Stop the count and listen to me.", "label_name": "passionate", "label": 4}
{"text": "You are the one who can push the right.", "label_name": "passionate", "label": 4}
{"text": "We finally found the link in the chart.", "label_name": "passionate", "label": 4}
{"text": "Look at the rule, really look at it.", "label_name": "passionate", "label": 4}
{"text": "I can see the city clearly in my mind.", "label_name": "passionate", "label": 4}
{"text": "We stand here and we work the chance.", "label_name": "passionate", "label": 4}
{"text": "You are the one who can work the truth.", "label_name": "passionate", "label": 4}
{"text": "We are staying in this court until it is finished.", "label_name": "passionate", "label": 4}
{"text": "I believe in this truth more than anything.", "label_name": "passionate", "label": 4}
{"text": "I believe in this land more than anything.", "label_name": "passionate", "label": 4}
{"text": "There is no time to run, just go.", "label_name": "passionate", "label": 4}
{"text": "We are running out of options, so push.", "label_name": "passionate", "label": 4}
{"text": "The foundation is set, now we expand.", "label_name": "passionate", "label": 4}
{"text": "We are running out of fuel, so change.", "label_name": "passionate", "label": 4}
{"text": "The core connects everything together.", "label_name": "passionate", "label": 4}
{"text": "Look at the center, really look at it.", "label_name": "passionate", "label": 4}
{"text": "The rule connects everything together.", "label_name": "passionate", "label": 4}
{"text": "We start with code and we create idea.", "label_name": "passionate", "label": 4}
{"text": "I checked the numbers and the result is positive.", "label_name": "passionate", "label": 4}
{"text": "The beat connects everything together.", "label_name": "passionate", "label": 4}
{"text": "We are staying in this field until it is finished.", "label_name": "passionate", "label": 4}
{"text": "Focus on the beat, that is what matters.", "label_name": "passionate", "label": 4}
{"text": "The foundation is set, now we rise.", "label_name": "passionate", "label": 4}
{"text": "We are going to build the school right here.", "label_name": "passionate", "label": 4}
{"text": "This is the only way to fix the beat.", "label_name": "passionate", "label": 4}
{"text": "This is the only way to capture the rule.", "label_name": "passionate", "label": 4}
{"text": "Do not let anyone take this chance away.", "label_name": "passionate", "label": 4}
{"text": "Look at the line, really look at it.", "label_name": "passionate", "label": 4}
{"text": "You have to work with everything you have.", "label_name": "passionate", "label": 4}
{"text": "I am not going to work until we are done.", "label_name": "passionate", "label": 4}
{"text": "The answer is right here on the map.", "label_name": "passionate", "label": 4}
{"text": "There is no doubt that this is the source.", "label_name": "passionate", "label": 4}
{"text": "The word connects everything together.", "label_name": "passionate", "label": 4}
{"text": "I will fight for this team every single day.", "label_name": "passionate", "label": 4}
{"text": "The rule connects everything together.", "label_name": "passionate", "label": 4}
{"text": "I have the proof in my chart.", "label_name": "passionate", "label": 4}
{"text": "There is no doubt that this is the cause.", "label_name": "passionate", "label": 4}
{"text": "Stop the count and listen to me.", "label_name": "passionate", "label": 4}
{"text": "This is not just a future, it is a future.", "label_name": "passionate", "label": 4}
{"text": "We are going to build the structure right here.", "label_name": "passionate", "label": 4}
{"text": "The data proves that path is actually correct.", "label_name": "passionate", "label": 4}
{"text": "Listen to the rule, it tells you the truth.", "label_name": "passionate", "label": 4}
{"text": "Focus on the beat, that is what matters.", "label_name": "passionate", "label": 4}
{"text": "You are the one who can stay the chance.", "label_name": "passionate", "label": 4}
{"text": "Imagine a world where internet is safe.", "label_name": "passionate", "label": 4}
{"text": "I believe in this team more than anything.", "label_name": "passionate", "label": 4}
{"text": "The rule connects everything together.", "label_name": "passionate", "label": 4}
{"text": "Stop the count and listen to me.", "label_name": "passionate", "label": 4}
{"text": "There is no time to run, just go.", "label_name": "passionate", "label": 4}
{"text": "Make the line strong and the rest will follow.", "label_name": "passionate", "label": 4}
{"text": "You have to feel the beat in the background.", "label_name": "passionate", "label": 4}
{"text": "This plan is the beginning of everything.", "label_name": "passionate", "label": 4}
{"text": "Listen to the rule, it tells you the truth.", "label_name": "passionate", "label": 4}
{"text": "Make the line strong and the rest will follow.", "label_name": "passionate", "label": 4}
{"text": "I will fight for this land every single day.", "label_name": "passionate", "label": 4}
{"text": "You are the one who can defend the mission.", "label_name": "passionate", "label": 4}
{"text": "I will fight for this mission every single day.", "label_name": "passionate", "label": 4}
{"text": "Look at the evidence, it matches perfectly.", "label_name": "passionate", "label": 4}
{"text": "The beat connects everything together.", "label_name": "passionate", "label": 4}
{"text": "Listen to the core, it tells you the truth.", "label_name": "passionate", "label": 4}
{"text": "We have to start immediately.", "label_name": "passionate", "label": 4}
{"text": "The data proves that answer is actually real.", "label_name": "passionate", "label": 4}
{"text": "This is the only way to fix the core.", "label_name": "passionate", "label": 4}
{"text": "You have to feel the word in the space.", "label_name": "passionate", "label": 4}
{"text": "I have the proof in my file.", "label_name": "passionate", "label": 4}
{"text": "We finally found the link in the screen.", "label_name": "passionate", "label": 4}
{"text": "Imagine a world where access is open.", "label_name": "passionate", "label": 4}
{"text": "Get everyone to the safe zone as fast as you can.", "label_name": "passionate", "label": 4}
{"text": "We have to start immediately.", "label_name": "passionate", "label": 4}
{"text": "We will change how people use the city.", "label_name": "passionate", "label": 4}
{"text": "Listen to the word, it tells you the truth.", "label_name": "passionate", "label": 4}
{"text": "I will fight for this goal every single day.", "label_name": "passionate", "label": 4}
{"text": "Listen to the heart, it tells you the truth.", "label_name": "passionate", "label": 4}
{"text": "Do not let anyone take this chance away.", "label_name": "passionate", "label": 4}
{"text": "I checked the numbers and the result is final.", "label_name": "passionate", "label": 4}
{"text": "There is no doubt that this is the key.", "label_name": "passionate", "label": 4}
{"text": "I have the proof in my screen.", "label_name": "passionate", "label": 4}
{"text": "Imagine a world where access is clean.", "label_name": "passionate", "label": 4}
{"text": "The data proves that path is actually correct.", "label_name": "passionate", "label": 4}
{"text": "This plan is the beginning of everything.", "label_name": "passionate", "label": 4}
{"text": "The rule must be pure or it fails.", "label_name": "passionate", "label": 4}
{"text": "We will change how people use the platform.", "label_name": "passionate", "label": 4}
{"text": "There is no time to run, just go.", "label_name": "passionate", "label": 4}
{"text": "The foundation is set, now we grow.", "label_name": "passionate", "label": 4}
{"text": "We will change how people use the school.", "label_name": "passionate", "label": 4}
{"text": "This is the link we have been looking for.", "label_name": "passionate", "label": 4}
{"text": "We finally found the evidence in the room.", "label_name": "passionate", "label": 4}
{"text": "Look at the core, really look at it.", "label_name": "passionate", "label": 4}
{"text": "You have to hold with everything you have.", "label_name": "passionate", "label": 4}
{"text": "There is no time to move, just go.", "label_name": "passionate", "label": 4}
{"text": "We are going to build the school right here.", "label_name": "passionate", "label": 4}
{"text": "I can see the school clearly in my mind.", "label_name": "passionate", "label": 4}
{"text": "The rule connects everything together.", "label_name": "passionate", "label": 4}
{"text": "This is not just a idea, it is a idea.", "label_name": "passionate", "label": 4}
{"text": "This is the match we have been looking for.", "label_name": "passionate", "label": 4}
{"text": "You have to fight with everything you have.", "label_name": "passionate", "label": 4}
{"text": "The answer is right here on the map.", "label_name": "passionate", "label": 4}
{"text": "Imagine a world where access is open.", "label_name": "passionate", "label": 4}
{"text": "I believe in this chance more than anything.", "label_name": "passionate", "label": 4}
{"text": "This is the link we have been looking for.", "label_name": "passionate", "label": 4}
{"text": "We start with nothing and we create plan.", "label_name": "passionate", "label": 4}
{"text": "We will change how people use the structure.", "label_name": "passionate", "label": 4}
{"text": "There is no doubt that this is the source.", "label_name": "passionate", "label": 4}
{"text": "We will change how people use the network.", "label_name": "passionate", "label": 4}
{"text": "The beat connects everything together.", "label_name": "passionate", "label": 4}
{"text": "I am not going to stay until we are done.", "label_name": "passionate", "label": 4}
{"text": "The line must be pure or it fails.", "label_name": "passionate", "label": 4}
{"text": "I believe in this truth more than anything.", "label_name": "passionate", "label": 4}
{"text": "We stand here and we defend the truth.", "label_name": "passionate", "label": 4}
{"text": "This is the only way to capture the word.", "label_name": "passionate", "label": 4}
{"text": "You have to feel the center in the light.", "label_name": "passionate", "label": 4}
{"text": "Do not let anyone take this mission away.", "label_name": "passionate", "label": 4}
{"text": "This is the match we have been looking for.", "label_name": "passionate", "label": 4}
{"text": "We are staying in this office until it is finished.", "label_name": "passionate", "label": 4}
{"text": "We need to change before it is too late.", "label_name": "passionate", "label": 4}
{"text": "This is not just a plan, it is a plan.", "label_name": "passionate", "label": 4}
{"text": "I will fight for this land every single day.", "label_name": "passionate", "label": 4}
{"text": "Stop the count and listen to me.", "label_name": "passionate", "label": 4}
{"text": "There is no time to move, just go.", "label_name": "passionate", "label": 4}
{"text": "I put an extra towel on the bed in case you get cold.", "label_name": "warm", "label": 2}
{"text": "I adjusted the light so it is more relaxing for you in here.", "label_name": "warm", "label": 2}
{"text": "I am here for you, no matter what time it is.", "label_name": "warm", "label": 2}
{"text": "I put an extra cushion on the porch in case you get cold.", "label_name": "warm", "label": 2}
{"text": "I warmed up the porch so it would be cozy when you arrived.", "label_name": "warm", "label": 2}
{"text": "Go at your own pace, I am right here beside you.", "label_name": "warm", "label": 2}
{"text": "I can clear the table if you would prefer to just sit and relax.", "label_name": "warm", "label": 2}
{"text": "I can start the fire if you would prefer to just sit and relax.", "label_name": "warm", "label": 2}
{"text": "Take all the time you need, there is absolutely no rush at all.", "label_name": "warm", "label": 2}
{"text": "Take all the time you need, there is absolutely no rush at all.", "label_name": "warm", "label": 2}
{"text": "I am happy to wait downstairs until you finish what you are doing.", "label_name": "warm", "label": 2}
{"text": "We can share this pasta whenever you feel like eating.", "label_name": "warm", "label": 2}
{"text": "I saved this time just for you because I know you needed it.", "label_name": "warm", "label": 2}
{"text": "You have been such a bright part of my day, thank you.", "label_name": "warm", "label": 2}
{"text": "We can share this salad whenever you feel like eating.", "label_name": "warm", "label": 2}
{"text": "I cleared my schedule so I could be here with you today.", "label_name": "warm", "label": 2}
{"text": "I noticed you missed lunch, so I brought you some soup.", "label_name": "warm", "label": 2}
{"text": "It makes me feel happy to know you are doing better.", "label_name": "warm", "label": 2}
{"text": "Your presence always brings such a peaceful feeling to the room.", "label_name": "warm", "label": 2}
{"text": "I went ahead and closed the blinds so you wouldn't have to worry about it.", "label_name": "warm", "label": 2}
{"text": "Take this blanket, it will help you feel a little more comfortable.", "label_name": "warm", "label": 2}
{"text": "Take this towel, it will help you feel a little more comfortable.", "label_name": "warm", "label": 2}
{"text": "Your presence always brings such a good feeling to the room.", "label_name": "warm", "label": 2}
{"text": "I picked up some pie on my way home just for you.", "label_name": "warm", "label": 2}
{"text": "You look tired, why don't you rest on the chair for a while.", "label_name": "warm", "label": 2}
{"text": "If you are hungry later, I put some cake in the table.", "label_name": "warm", "label": 2}
{"text": "I took care of the dishes while you were resting.", "label_name": "warm", "label": 2}
{"text": "I saved this time just for you because I know you needed it.", "label_name": "warm", "label": 2}
{"text": "I finished the dishes early so we could spend time together.", "label_name": "warm", "label": 2}
{"text": "I put an extra towel on the chair in case you get cold.", "label_name": "warm", "label": 2}
{"text": "I saved this time just for you because I know you needed it.", "label_name": "warm", "label": 2}
{"text": "Don't worry about the paperwork, I have already handled it.", "label_name": "warm", "label": 2}
{"text": "Take this robe, it will help you feel a little more comfortable.", "label_name": "warm", "label": 2}
{"text": "We can share this pasta whenever you feel like eating.", "label_name": "warm", "label": 2}
{"text": "We can share this fruit whenever you feel like eating.", "label_name": "warm", "label": 2}
{"text": "I wanted to let you know that I am pleased for your help.", "label_name": "warm", "label": 2}
{"text": "I handled the paperwork so you can have a quiet evening.", "label_name": "warm", "label": 2}
{"text": "I left a fresh blanket by the bed for you to use.", "label_name": "warm", "label": 2}
{"text": "You don't have to say a word, I am happy just to sit here with you.", "label_name": "warm", "label": 2}
{"text": "Your presence always brings such a wonderful feeling to the room.", "label_name": "warm", "label": 2}
{"text": "I left a fresh quilt by the chair for you to use.", "label_name": "warm", "label": 2}
{"text": "Take all the time you need, there is absolutely no rush at all.", "label_name": "warm", "label": 2}
{"text": "Don't worry about the laundry, I have already handled it.", "label_name": "warm", "label": 2}
{"text": "I noticed you missed lunch, so I brought you some cake.", "label_name": "warm", "label": 2}
{"text": "You have done enough today, let me clear the table for you.", "label_name": "warm", "label": 2}
{"text": "Take all the time you need, there is absolutely no rush at all.", "label_name": "warm", "label": 2}
{"text": "Take all the time you need, there is absolutely no rush at all.", "label_name": "warm", "label": 2}
{"text": "If you are hungry later, I put some pie in the table.", "label_name": "warm", "label": 2}
{"text": "There is no pressure to decide now, we can wait until morning.", "label_name": "warm", "label": 2}
{"text": "I went ahead and closed the blinds so you wouldn't have to worry about it.", "label_name": "warm", "label": 2}
{"text": "There is no pressure to decide now, we can wait until morning.", "label_name": "warm", "label": 2}
{"text": "I made some fresh stew and left it on the nightstand for you.", "label_name": "warm", "label": 2}
{"text": "There is a hot cup of tea waiting for you in the fridge.", "label_name": "warm", "label": 2}
{"text": "I finished the cooking early so we could spend time together.", "label_name": "warm", "label": 2}
{"text": "I finished the bills early so we could spend time together.", "label_name": "warm", "label": 2}
{"text": "I put an extra pillow on the bed in case you get cold.", "label_name": "warm", "label": 2}
{"text": "I am just so glad that you are here with us safe and sound.", "label_name": "warm", "label": 2}
{"text": "I saved this time just for you because I know you needed it.", "label_name": "warm", "label": 2}
{"text": "I saved this time just for you because I know you needed it.", "label_name": "warm", "label": 2}
{"text": "Take this towel, it will help you feel a little more comfortable.", "label_name": "warm", "label": 2}
{"text": "Don't worry about the laundry, I have already handled it.", "label_name": "warm", "label": 2}
{"text": "We can share this fruit whenever you feel like eating.", "label_name": "warm", "label": 2}
{"text": "I made some fresh soup and left it on the counter for you.", "label_name": "warm", "label": 2}
{"text": "I wanted to let you know that I am happy for your help.", "label_name": "warm", "label": 2}
{"text": "I saved the last piece of pasta because I know it is your favorite.", "label_name": "warm", "label": 2}
{"text": "I handled the bills so you can have a quiet evening.", "label_name": "warm", "label": 2}
{"text": "You don't have to say a word, I am happy just to sit here with you.", "label_name": "warm", "label": 2}
{"text": "I thought you might like some cider, so I set it on the stove.", "label_name": "warm", "label": 2}
{"text": "You look tired, why don't you rest on the guest room for a while.", "label_name": "warm", "label": 2}
{"text": "I thought you might like some water, so I set it on the counter.", "label_name": "warm", "label": 2}
{"text": "I put an extra towel on the chair in case you get cold.", "label_name": "warm", "label": 2}
{"text": "It really is comforting to see you smiling like that again.", "label_name": "warm", "label": 2}
{"text": "I thought you might like some milk, so I set it on the table.", "label_name": "warm", "label": 2}
{"text": "I cleared my schedule so I could be here with you today.", "label_name": "warm", "label": 2}
{"text": "I picked up some pie on my way home just for you.", "label_name": "warm", "label": 2}
{"text": "We can stay here as long as you like, I am in no hurry.", "label_name": "warm", "label": 2}
{"text": "Take this blanket, it will help you feel a little more comfortable.", "label_name": "warm", "label": 2}
{"text": "I handled the bills so you can have a quiet evening.", "label_name": "warm", "label": 2}
{"text": "We can share this stew whenever you feel like eating.", "label_name": "warm", "label": 2}
{"text": "Take this quilt, it will help you feel a little more comfortable.", "label_name": "warm", "label": 2}
{"text": "Just sit back on the bed and let me handle everything else.", "label_name": "warm", "label": 2}
{"text": "I finished the laundry early so we could spend time together.", "label_name": "warm", "label": 2}
{"text": "I noticed you missed lunch, so I brought you some pie.", "label_name": "warm", "label": 2}
{"text": "I am happy to wait outside until you finish what you are doing.", "label_name": "warm", "label": 2}
{"text": "I will be waiting right downstairs whenever you are ready to go.", "label_name": "warm", "label": 2}
{"text": "I am happy to wait in the car until you finish what you are doing.", "label_name": "warm", "label": 2}
{"text": "I am just so relieved that you are here with us safe and sound.", "label_name": "warm", "label": 2}
{"text": "I handled the paperwork so you can have a quiet evening.", "label_name": "warm", "label": 2}
{"text": "You look tired, why don't you rest on the bed for a while.", "label_name": "warm", "label": 2}
{"text": "I handled the cleaning so you can have a quiet evening.", "label_name": "warm", "label": 2}
{"text": "I am just so glad that you are here with us safe and sound.", "label_name": "warm", "label": 2}
{"text": "Take all the time you need, there is absolutely no rush at all.", "label_name": "warm", "label": 2}
{"text": "If you are hungry later, I put some pasta in the fridge.", "label_name": "warm", "label": 2}
{"text": "We can stay here as long as you like, I am in no hurry.", "label_name": "warm", "label": 2}
{"text": "Take all the time you need, there is absolutely no rush at all.", "label_name": "warm", "label": 2}
{"text": "I am happy to wait in the garden until you finish what you are doing.", "label_name": "warm", "label": 2}
{"text": "I took care of the dishes while you were resting.", "label_name": "warm", "label": 2}
{"text": "I put an extra pillow on the guest room in case you get cold.", "label_name": "warm", "label": 2}
{"text": "Take this pillow, it will help you feel a little more comfortable.", "label_name": "warm", "label": 2}
{"text": "I am just so pleased that you are here with us safe and sound.", "label_name": "warm", "label": 2}
{"text": "If you are hungry later, I put some bread in the fridge.", "label_name": "warm", "label": 2}
{"text": "I am happy to wait downstairs until you finish what you are doing.", "label_name": "warm", "label": 2}
{"text": "I saved the last piece of soup because I know it is your favorite.", "label_name": "warm", "label": 2}
{"text": "I put an extra quilt on the chair in case you get cold.", "label_name": "warm", "label": 2}
{"text": "I put an extra pillow on the guest room in case you get cold.", "label_name": "warm", "label": 2}
{"text": "Take all the time you need, there is absolutely no rush at all.", "label_name": "warm", "label": 2}
{"text": "I wanted to let you know that I am pleased for your help.", "label_name": "warm", "label": 2}
{"text": "I took care of the cleaning while you were resting.", "label_name": "warm", "label": 2}
{"text": "There is no pressure to decide now, we can wait until morning.", "label_name": "warm", "label": 2}
{"text": "Take this blanket, it will help you feel a little more comfortable.", "label_name": "warm", "label": 2}
{"text": "I went ahead and fed the dog so you wouldn't have to worry about it.", "label_name": "warm", "label": 2}
{"text": "I finished the dishes early so we could spend time together.", "label_name": "warm", "label": 2}
{"text": "I left a fresh blanket by the porch for you to use.", "label_name": "warm", "label": 2}
{"text": "You look tired, why don't you rest on the couch for a while.", "label_name": "warm", "label": 2}
{"text": "There is a hot cup of tea waiting for you in the stove.", "label_name": "warm", "label": 2}
{"text": "There is a hot cup of cider waiting for you in the stove.", "label_name": "warm", "label": 2}
{"text": "I went ahead and answered the phone so you wouldn't have to worry about it.", "label_name": "warm", "label": 2}
{"text": "I saved this time just for you because I know you needed it.", "label_name": "warm", "label": 2}
{"text": "I picked up some salad on my way home just for you.", "label_name": "warm", "label": 2}
{"text": "Don't worry about the laundry, I have already handled it.", "label_name": "warm", "label": 2}
{"text": "I am just so glad that you are here with us safe and sound.", "label_name": "warm", "label": 2}
{"text": "I made some fresh stew and left it on the fridge for you.", "label_name": "warm", "label": 2}
{"text": "There is a hot cup of milk waiting for you in the counter.", "label_name": "warm", "label": 2}
{"text": "I made some fresh stew and left it on the nightstand for you.", "label_name": "warm", "label": 2}
{"text": "Your presence always brings such a peaceful feeling to the room.", "label_name": "warm", "label": 2}
{"text": "I can lock the doors if you would prefer to just sit and relax.", "label_name": "warm", "label": 2}
{"text": "Leave the dishes to me, you just take it easy.", "label_name": "warm", "label": 2}
{"text": "I handled the dishes so you can have a quiet evening.", "label_name": "warm", "label": 2}
{"text": "I handled the dishes so you can have a quiet evening.", "label_name": "warm", "label": 2}
{"text": "Take this cushion, it will help you feel a little more comfortable.", "label_name": "warm", "label": 2}
{"text": "I cleared my schedule so I could be in the car with you today.", "label_name": "warm", "label": 2}
{"text": "I wanted to let you know that I am pleased for your help.", "label_name": "warm", "label": 2}
{"text": "You don't have to say a word, I am happy just to sit here with you.", "label_name": "warm", "label": 2}
{"text": "We can stay here as long as you like, I am in no hurry.", "label_name": "warm", "label": 2}
{"text": "It makes me feel grateful to know you are doing better.", "label_name": "warm", "label": 2}
{"text": "I can lock the doors if you would prefer to just sit and relax.", "label_name": "warm", "label": 2}
{"text": "If you are hungry later, I put some pasta in the counter.", "label_name": "warm", "label": 2}
{"text": "There is a hot cup of cider waiting for you in the table.", "label_name": "warm", "label": 2}
{"text": "Don't worry about the paperwork, I have already handled it.", "label_name": "warm", "label": 2}
{"text": "I am happy to wait downstairs until you finish what you are doing.", "label_name": "warm", "label": 2}
{"text": "We can stay here as long as you like, I am in no hurry.", "label_name": "warm", "label": 2}
{"text": "It really is wonderful to see you smiling like that again.", "label_name": "warm", "label": 2}
{"text": "There is no pressure to decide now, we can wait until morning.", "label_name": "warm", "label": 2}
{"text": "I made up the chair with your favorite robe so you can sleep well.", "label_name": "warm", "label": 2}
{"text": "If you are hungry later, I put some salad in the stove.", "label_name": "warm", "label": 2}
{"text": "I saved the last piece of bread because I know it is your favorite.", "label_name": "warm", "label": 2}
{"text": "You look tired, why don't you rest on the guest room for a while.", "label_name": "warm", "label": 2}
{"text": "I made some fresh cake and left it on the table for you.", "label_name": "warm", "label": 2}
{"text": "I saved this time just for you because I know you needed it.", "label_name": "warm", "label": 2}
{"text": "There is a hot cup of coffee waiting for you in the fridge.", "label_name": "warm", "label": 2}
{"text": "You have been such a steady part of my day, thank you.", "label_name": "warm", "label": 2}
{"text": "I thought you might like some milk, so I set it on the stove.", "label_name": "warm", "label": 2}
{"text": "I noticed you missed lunch, so I brought you some bread.", "label_name": "warm", "label": 2}
{"text": "I saved this time just for you because I know you needed it.", "label_name": "warm", "label": 2}
{"text": "You have done enough today, let me water the plants for you.", "label_name": "warm", "label": 2}
{"text": "I noticed you missed lunch, so I brought you some pie.", "label_name": "warm", "label": 2}
{"text": "Take this towel, it will help you feel a little more comfortable.", "label_name": "warm", "label": 2}
{"text": "I left a fresh towel by the chair for you to use.", "label_name": "warm", "label": 2}
{"text": "I am happy to wait outside until you finish what you are doing.", "label_name": "warm", "label": 2}
{"text": "Don't worry about the paperwork, I have already handled it.", "label_name": "warm", "label": 2}
{"text": "Just sit back on the porch and let me handle everything else.", "label_name": "warm", "label": 2}
{"text": "I left a fresh blanket by the guest room for you to use.", "label_name": "warm", "label": 2}
{"text": "I thought you might like some coffee, so I set it on the nightstand.", "label_name": "warm", "label": 2}
{"text": "Take this towel, it will help you feel a little more comfortable.", "label_name": "warm", "label": 2}
{"text": "I will be waiting right outside whenever you are ready to go.", "label_name": "warm", "label": 2}
{"text": "There is no pressure to decide now, we can wait until morning.", "label_name": "warm", "label": 2}
{"text": "I saved this time just for you because I know you needed it.", "label_name": "warm", "label": 2}
{"text": "Don't worry about the dishes, I have already handled it.", "label_name": "warm", "label": 2}
{"text": "I handled the paperwork so you can have a quiet evening.", "label_name": "warm", "label": 2}
{"text": "I picked up some pasta on my way home just for you.", "label_name": "warm", "label": 2}
{"text": "I handled the bills so you can have a quiet evening.", "label_name": "warm", "label": 2}
{"text": "We can share this fruit whenever you feel like eating.", "label_name": "warm", "label": 2}
{"text": "We can stay here as long as you like, I am in no hurry.", "label_name": "warm", "label": 2}
{"text": "If you are hungry later, I put some pasta in the oven.", "label_name": "warm", "label": 2}
{"text": "I handled the paperwork so you can have a quiet evening.", "label_name": "warm", "label": 2}
{"text": "You have done enough today, let me water the plants for you.", "label_name": "warm", "label": 2}
|