File size: 39,531 Bytes
e1b84d1 | 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 | [
{
"instruction": "Give me the main facts about the book series about Harry Potter.",
"input": "",
"output": ""
},
{
"instruction": "What is a derivative in finance?",
"input": "",
"output": ""
},
{
"instruction": "Who is Phil Murphy?",
"input": "",
"output": ""
},
{
"instruction": "Why would people not like Goose Goose Duck?",
"input": "",
"output": ""
},
{
"instruction": "What are some of the best vegan protein sources",
"input": "",
"output": ""
},
{
"instruction": "I’m new to beer, recommend 5 beer styles to me",
"input": "",
"output": ""
},
{
"instruction": "Which are the main reasons for doing a PhD?",
"input": "",
"output": ""
},
{
"instruction": "Without quoting from the text, can you summarise from wikipedia who Denis-Benjamin Viger was?",
"input": "",
"output": ""
},
{
"instruction": "Given the reference text about Rafael Nadal, tell me how many singles grand slam titles he has won, which grand slam tournament he has won the most, and the main strength of his tennis game.",
"input": "",
"output": ""
},
{
"instruction": "Please give me a short bulleted list of the principal fields of engineering",
"input": "",
"output": ""
},
{
"instruction": "Apply the traditional western culture label (domesticated pet, farm animal, wild animal) to each of the following animals: dog, sheep, horse, wolf, cat, zebra, cow",
"input": "",
"output": ""
},
{
"instruction": "How does the time of sunrise vary from spring to summer?",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or percussion: Xylophone, Ramkie",
"input": "",
"output": ""
},
{
"instruction": "In the paragraph below, what are the major sources of methane emissions?",
"input": "",
"output": ""
},
{
"instruction": "Write a short blog post about why you have chosen to delete your instagram account and why you think that instagram has an negative impact on society.",
"input": "",
"output": ""
},
{
"instruction": "Give me a bulleted list of the 5 oldest countries in the world:",
"input": "",
"output": ""
},
{
"instruction": "Who is using Spark in production?",
"input": "",
"output": ""
},
{
"instruction": "Queen Elizabeth II closed coffin was adorned with several interesting objects and symbols including what?",
"input": "",
"output": ""
},
{
"instruction": "What does the Obilic Medal commemorate?",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or percussion: Cimbalom, Xiqin",
"input": "",
"output": ""
},
{
"instruction": "From the passage mention the different educational institutions which Musk attended. Display the results in comma separated format.",
"input": "",
"output": ""
},
{
"instruction": "Best workout in the world.",
"input": "",
"output": ""
},
{
"instruction": "How is the game \"ultimate frisbee\" different from \"frisbee golf\"?",
"input": "",
"output": ""
},
{
"instruction": "Give me a bulleted list of the 7 most recent UPenn Presidents",
"input": "",
"output": ""
},
{
"instruction": "What is the Six Flags Great Escape Lodge",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of the top five most followed people on Instagram, along with their number of followers.",
"input": "",
"output": ""
},
{
"instruction": "Who was the first president of the United States?",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether each city is on the west coast or east coast of the USA: Seattle, Portland, Miami, Charlotte, Boston, San Diego",
"input": "",
"output": ""
},
{
"instruction": "Which of these words are nouns and which are adjectives. Fridge, wipe, bed, chair, jump, yell, sleep, fruit and talk.",
"input": "",
"output": ""
},
{
"instruction": "What was the first commercial relational database product launched in the market?",
"input": "",
"output": ""
},
{
"instruction": "What is solar wind?",
"input": "",
"output": ""
},
{
"instruction": "Give me an overview of the different types of SOC reports and what they are used for",
"input": "",
"output": ""
},
{
"instruction": "The following is an Abstract of a paper on Autism Spectrum Disorder. Based on this abstract would it be a good idea to enroll a child with ASD into group sports? \n\"Given the characteristics of people with Autism Spectrum Disorder, it is evident the difficulties they show in the development of social skills. The scarce participation of people with Autism Spectrum Disorder in group sports can be taken as a reference. The aim of this study was to analyse the impact of football on the development of social skills in children with Autism Spectrum Disorder. In order to measure the sporting impact, it was necessary to implement a football training programme with the intention of evaluating different social skills. Thirteen children participated in the programme, all of them with a diagnosis of Autism Spectrum Disorder and with a severity level of 1. The study was based on a pre-experimental, pre-test/post-test design. Non-parametric tests were used for the statistical analysis, applying the Wilcoxon test. Two specific tools on social skills were used for data collection. The results showed a generalised improvement in the dimensions linked to the social skills assessed. This highlights the possibility of considering group sport as an alternative to be taken into account to work on and enhance social skills in children with Autism Spectrum Disorder\"",
"input": "",
"output": ""
},
{
"instruction": "What is 24 Hours of Lemons",
"input": "",
"output": ""
},
{
"instruction": "Write a journal entry from the pandemic.",
"input": "",
"output": ""
},
{
"instruction": "Can Solar panels help you maintain power during a storm ?",
"input": "",
"output": ""
},
{
"instruction": "Identify which systems in this list are part of the Hadoop ecosystem : MapReduce, MySQL, Google apps, Hive, Pig",
"input": "",
"output": ""
},
{
"instruction": "Can any piece promote to a queen?",
"input": "",
"output": ""
},
{
"instruction": "How many times did Gordie Howe retire?",
"input": "",
"output": ""
},
{
"instruction": "Given a reference text about Tiger Woods, tell me when they were born, what their real first name is, and what profession his niece has.",
"input": "",
"output": ""
},
{
"instruction": "Explain away goal rule in soccer.",
"input": "",
"output": ""
},
{
"instruction": "Given a reference text about Mussa Azzan Zungu, tell me his current position.",
"input": "",
"output": ""
},
{
"instruction": "What is Dragon Ball Z?",
"input": "",
"output": ""
},
{
"instruction": "I have a vegan friend coming over for dinner, which of the items in my kitchen can I use to make vegan food: chicken, kale, lettuce, honey, eggplant, tomato, rice, cheese, yoghurt, ice-cream and chocolate.",
"input": "",
"output": ""
},
{
"instruction": "What's a good time of year to visit Seattle?",
"input": "",
"output": ""
},
{
"instruction": "What does fasting mean?",
"input": "",
"output": ""
},
{
"instruction": "Are turtles amphibians or reptiles?",
"input": "",
"output": ""
},
{
"instruction": "What is the difference between American Football and European Football?",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or percussion: Yangqin, Baglama",
"input": "",
"output": ""
},
{
"instruction": "What is a kidney transplant?",
"input": "",
"output": ""
},
{
"instruction": "Who wrote Gone with the Wind",
"input": "",
"output": ""
},
{
"instruction": "In the walk of fame, which star is on the wall?",
"input": "",
"output": ""
},
{
"instruction": "What can be done to resolve issues with climate change",
"input": "",
"output": ""
},
{
"instruction": "What are some landlocked states?",
"input": "",
"output": ""
},
{
"instruction": "What is the difference between coalesce and repartition when it comes to shuffle partitions in spark",
"input": "",
"output": ""
},
{
"instruction": "What caused World War 1?",
"input": "",
"output": ""
},
{
"instruction": "How can a football training session be planned?",
"input": "",
"output": ""
},
{
"instruction": "Based on this passage, please extract the names of the countries where TSMC has semiconductor fabrication (or \"fab\") facilities and separate them by commas.",
"input": "",
"output": ""
},
{
"instruction": "Who is TIME",
"input": "",
"output": ""
},
{
"instruction": "What are the top 5 soccer(football) leagues in the world?",
"input": "",
"output": ""
},
{
"instruction": "Classify each of the following objects as either heavy or lightweight: bubble, aircraft, bear, mouse, bus, raisin, strawberry, popcorn, elephant, piano, plastic cup, train, butterfly, whale, refrigerator, feather, pencil, ship, tree, flower.",
"input": "",
"output": ""
},
{
"instruction": "Which of the following cast members have names that start with the letters A, B or P?",
"input": "",
"output": ""
},
{
"instruction": "Fix the typos and grammar below",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of five healthy snacks for kids",
"input": "",
"output": ""
},
{
"instruction": "What is the Metropolitan College of New York?",
"input": "",
"output": ""
},
{
"instruction": "How Many Players are there in a Football Team?",
"input": "",
"output": ""
},
{
"instruction": "Which is a species of fish? Sardine or Sardinia",
"input": "",
"output": ""
},
{
"instruction": "What are the main ingredients for bread?",
"input": "",
"output": ""
},
{
"instruction": "What is an acoholic?",
"input": "",
"output": ""
},
{
"instruction": "What is Azure HDInsight?",
"input": "",
"output": ""
},
{
"instruction": "In which countries in Pinot Noir most commonly grown ?",
"input": "",
"output": ""
},
{
"instruction": "Tell me about the inversion in postcolonial theory",
"input": "",
"output": ""
},
{
"instruction": "Extract the different kinds of leavening agents mentioned in this passage. Separate them with a comma.",
"input": "",
"output": ""
},
{
"instruction": "What is the nickname for Spokane, Washington?",
"input": "",
"output": ""
},
{
"instruction": "Identify which animal species is alive or extinct: Indian Elephant, Irish Elk",
"input": "",
"output": ""
},
{
"instruction": "Which is a species of fish? Velvetfish or Cotton",
"input": "",
"output": ""
},
{
"instruction": "Extract the different types of milk distribution containers mentioned in the text and list them using bullets in the format {container type} - {volume}",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether these are mammals or amphibians: rats, cats, dogs, frogs, toads, salamanders, newts, caecilians, deer, monkeys, apes, bats, whales, dolphins, and humans.",
"input": "",
"output": ""
},
{
"instruction": "What are some guitar brands associated with classic rock?",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether these are TV shows or books: Modern Family, You, Don Quixote, A Tale of Two Cities, The Little Prince",
"input": "",
"output": ""
},
{
"instruction": "Who is Satoshi Nakamoto?",
"input": "",
"output": ""
},
{
"instruction": "What is a hedge in finance?",
"input": "",
"output": ""
},
{
"instruction": "Who are the two most translated English writers",
"input": "",
"output": ""
},
{
"instruction": "What is cloud computing in simple terms?",
"input": "",
"output": ""
},
{
"instruction": "What seven houses ruled the Seven Kingdoms before Aegon's Conquest?",
"input": "",
"output": ""
},
{
"instruction": "What are the words of House Footly?",
"input": "",
"output": ""
},
{
"instruction": "What problems can expansive soil cause?",
"input": "",
"output": ""
},
{
"instruction": "Extract what Operating systems openRA supports from the below text and list them in a seperate line",
"input": "",
"output": ""
},
{
"instruction": "Who was Paramahansa Yogananda?",
"input": "",
"output": ""
},
{
"instruction": "How does GIS help in the real estate investment industry?",
"input": "",
"output": ""
},
{
"instruction": "What is a to-do list?",
"input": "",
"output": ""
},
{
"instruction": "When did Felix Luna die?",
"input": "",
"output": ""
},
{
"instruction": "Categorize the following as hot or cold.",
"input": "",
"output": ""
},
{
"instruction": "Are panda bears real bears?",
"input": "",
"output": ""
},
{
"instruction": "What's the appeal of a vacation rental on the Big Island of Hawaii?",
"input": "",
"output": ""
},
{
"instruction": "What Are Some Good Ideas for a YouTube Channel?",
"input": "",
"output": ""
},
{
"instruction": "Classify each of the following plates as either food or a cocktail: sushi, mojito, quiche, tacos, moscow mule, old fashioned, pizza, pasta, sandwich, pho, margarita, martini, ramen",
"input": "",
"output": ""
},
{
"instruction": "In 1779 Abraham Darby built the worlds first what",
"input": "",
"output": ""
},
{
"instruction": "Does Lego release any sets with tanks?",
"input": "",
"output": ""
},
{
"instruction": "Make me a workout playlist for the gym",
"input": "",
"output": ""
},
{
"instruction": "What is C?",
"input": "",
"output": ""
},
{
"instruction": "classify the following as outfits vs appliances: dress, shoes, toaster, jackets, fridge, air fryer, instant pot, vest, gloves, pants, jeans",
"input": "",
"output": ""
},
{
"instruction": "In the x86-64 architecture, how can the operating system specify which pages cannot contain executable code?",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or percussion: Turkish crescent, Banjo",
"input": "",
"output": ""
},
{
"instruction": "Which of the following ski resorts are in Colorado and which are in Utah: Alta Ski Area, Brighton Ski Resort, Snowbird, Solitude Mountain Resort, Deer Valley Resort, Park City Mountain, Woodward Park City, Nordic Valley Resort, Powder Mountain, Snowbasin, Sundance Resort, Beaver Mountain Resort, Cherry Peak Resort, Brian Head Resort, Eagle Point Resort, Keystone, Copper Mountain, Vail Resort, Beaver Creek, Eldora",
"input": "",
"output": ""
},
{
"instruction": "What high school did Washington Governer Jay Inslee attend?",
"input": "",
"output": ""
},
{
"instruction": "From the passage below, please extract the official starting date of the United States Space Force.",
"input": "",
"output": ""
},
{
"instruction": "what are ISO compliant crypto currencies?",
"input": "",
"output": ""
},
{
"instruction": "Which of the following are considered hobbies: painting, hiking, rock climbing, peapod, bears, horse riding, chess, emails, clogs, board games, button, sewing, water bottle, keyboard, reading, soccer",
"input": "",
"output": ""
},
{
"instruction": "Based on the following passage regarding the economy of Sweden, what is the economic sector that accounts for the largest output?",
"input": "",
"output": ""
},
{
"instruction": "Where are Himayalas located?",
"input": "",
"output": ""
},
{
"instruction": "Make me a list of give cocktails made using vodka, include any other ingredients required.",
"input": "",
"output": ""
},
{
"instruction": "What's an unpopular opinion you have?",
"input": "",
"output": ""
},
{
"instruction": "For what is known as Transphonologization?",
"input": "",
"output": ""
},
{
"instruction": "Who is William Alfred Bayly?",
"input": "",
"output": ""
},
{
"instruction": "Classify each of the following as either a typical cat name or dog name: Spot, Whiskers, Mittens, Buddy, Fido, Rover, Lassie, Rex, Felix, Socks, Tiger",
"input": "",
"output": ""
},
{
"instruction": "Why should I change my car oil?",
"input": "",
"output": ""
},
{
"instruction": "Why should you visit Ireland?",
"input": "",
"output": ""
},
{
"instruction": "how does the water cycle work?",
"input": "",
"output": ""
},
{
"instruction": "Identify the bird from the list: Mouse, Balearic shearwater, Giraffe",
"input": "",
"output": ""
},
{
"instruction": "What is Noether's theorem and how does it relate symmetries to conserved quantities?",
"input": "",
"output": ""
},
{
"instruction": "Why do people like to workout?",
"input": "",
"output": ""
},
{
"instruction": "What is the difference between a donut and a scone?",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether these are indoor or outdoor games. \nCricket, Table Tennis, Soccer, Carom",
"input": "",
"output": ""
},
{
"instruction": "Give me an idea of some cold beverages to drink on a hot day",
"input": "",
"output": ""
},
{
"instruction": "Which movie features the original song, \"City of Stars\"?",
"input": "",
"output": ""
},
{
"instruction": "Eggs are expensive these days. Should I rear my own chickens instead?",
"input": "",
"output": ""
},
{
"instruction": "From this passage, tell me what was the highest grossing movie in 2022 and what was the second highest grossing movie?",
"input": "",
"output": ""
},
{
"instruction": "What are some places to visit in Anchorage?",
"input": "",
"output": ""
},
{
"instruction": "is a career in enterprise software a good was to go?",
"input": "",
"output": ""
},
{
"instruction": "Total 15 PMs served under Queen Elizabeth II, name the last PM",
"input": "",
"output": ""
},
{
"instruction": "Can you summarize the main points about the first edition of the Dota 2 tournament, The International?",
"input": "",
"output": ""
},
{
"instruction": "When does daylight savings start and end in Sydney?",
"input": "",
"output": ""
},
{
"instruction": "Given a reference text about Lotus Mark IX, who designed the car?",
"input": "",
"output": ""
},
{
"instruction": "Which are the 2 prominent parties in Indian politics",
"input": "",
"output": ""
},
{
"instruction": "What is another name for downhill skiing?",
"input": "",
"output": ""
},
{
"instruction": "Given a reference text about Uber, tell me when the old CEO was replaced.",
"input": "",
"output": ""
},
{
"instruction": "Who was Catelyn Stark originally betrothed to marry?",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether each of these are green or blue: grass, water, leaf, sky, sapphire, kale",
"input": "",
"output": ""
},
{
"instruction": "Can you think of some different cities on the American West coast?",
"input": "",
"output": ""
},
{
"instruction": "How many strings are on a guitar?",
"input": "",
"output": ""
},
{
"instruction": "What is the best NFL football team of all time?",
"input": "",
"output": ""
},
{
"instruction": "How did actor James Dean die?",
"input": "",
"output": ""
},
{
"instruction": "Why do babies cry?",
"input": "",
"output": ""
},
{
"instruction": "Who does Machiavelli believe exemplifies the characteristics of a true prince in The Prince, and why does he hold this belief?",
"input": "",
"output": ""
},
{
"instruction": "Name some famous hindi film actors",
"input": "",
"output": ""
},
{
"instruction": "Who was Neale James Cooper",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or percussion: Kenong, Zeze",
"input": "",
"output": ""
},
{
"instruction": "What is paella?",
"input": "",
"output": ""
},
{
"instruction": "Given the reference text below the eruption of Mount Vesuvius, how high was the mountain after the disaster?",
"input": "",
"output": ""
},
{
"instruction": "Give me a bulleted list of the seven most recent Chancellors of Federal Republic of Germany",
"input": "",
"output": ""
},
{
"instruction": "Write me a poem about data",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether these foods are high or low in carbs: rice, spaghetti, chicken, pork, quinoa, salami",
"input": "",
"output": ""
},
{
"instruction": "Classify list as breeds of either a 'dog' or a 'cat': Border Collie, Siamese, Maine Coon, German Shepard, Persian, and Corgi?",
"input": "",
"output": ""
},
{
"instruction": "What is positive cash flow?",
"input": "",
"output": ""
},
{
"instruction": "What is the Kentucky Derby Trophy",
"input": "",
"output": ""
},
{
"instruction": "How well establish is the Cuban red-tailed hawk as a species?",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of the core things to focus on when training for a run or race",
"input": "",
"output": ""
},
{
"instruction": "What is Black rice?",
"input": "",
"output": ""
},
{
"instruction": "Imagine you have won the lottery, and have 5 million dollars after tax to spend in San Francisco, where you currently rent a 2 bedroom apartment with three roommates who are your best friends but who you hate living. Describe how you would use the money, keeping in mind you don't have a high paying job so you want to do fun things and also set yourself up for the future.",
"input": "",
"output": ""
},
{
"instruction": "Which characters belong to DC or Marvel Universe? Thanos, Darkseid",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether each state touches the ocean or not: Florida, North Carolina, Nebraska, Oklahoma, Oregon, Texas",
"input": "",
"output": ""
},
{
"instruction": "What colors are on the United States of America flag?",
"input": "",
"output": ""
},
{
"instruction": "Who wrote The Originals?",
"input": "",
"output": ""
},
{
"instruction": "When is India's independence day?",
"input": "",
"output": ""
},
{
"instruction": "List the Hindi television series by Ekta Kapoor.",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or percussion: Ranat thum, Tumbi",
"input": "",
"output": ""
},
{
"instruction": "Is cricket a popular sports in USA?",
"input": "",
"output": ""
},
{
"instruction": "Which of these four novels has the least in common with the others?\n\n1. Red Harvest by Dashiell Hammett\n2. One Hundred Years of Solitude by Gabriel Garcia Marquez\n3. The Big Sleep by Raymond Chandler\n4. The Hound of the Baskervilles by Sir Arthur Conan Doyle",
"input": "",
"output": ""
},
{
"instruction": "From this passage, what is the main benefit of TCP?",
"input": "",
"output": ""
},
{
"instruction": "Identify the bird from the list: Zebra, Brambling, Blackfish",
"input": "",
"output": ""
},
{
"instruction": "Is Rosebud a battlefield",
"input": "",
"output": ""
},
{
"instruction": "Tell which of these musicians is a guitarist or a bassist: Eddie Van Halen, Nikki Sixx, Steve Harris, Billy Sheehan, Steve Vai, Joe Satriani, Matthias Jabs, Jimmy Bain, Mick Mars, Vivian Campbell, Angus Young",
"input": "",
"output": ""
},
{
"instruction": "Kamba Ramayanam was written by",
"input": "",
"output": ""
},
{
"instruction": "I have got assigned a task to classify the following items as flammable or inflammable. Could you please help me with the classification? \nHere is the list of items: water, alcohol, gasoline, and orange juice",
"input": "",
"output": ""
},
{
"instruction": "What is the difference between a putter and a driver in golf?",
"input": "",
"output": ""
},
{
"instruction": "Why does Daenerys Targaryen want to rule Westeros?",
"input": "",
"output": ""
},
{
"instruction": "Can you give me some background on Perez v. Campbell",
"input": "",
"output": ""
},
{
"instruction": "What items do you need to buy in preparation for the arrival of a baby",
"input": "",
"output": ""
},
{
"instruction": "Locate 7 countries which are part of Central America.",
"input": "",
"output": ""
},
{
"instruction": "Give me a simpler way to tell someone that Layli and Majnun is Persian literature that borrows storytelling techniques from Varqeh and Golshah, Orwa wa Afra, Vameq and Ozra, Metiochus and Parthenope, and Vis and Ramin.",
"input": "",
"output": ""
},
{
"instruction": "What is the capital of Colorado?",
"input": "",
"output": ""
},
{
"instruction": "write a short essay on murals in jersey city",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of some of the most popular song from 70s Japanese Pop singer, Mariya Takeuchi",
"input": "",
"output": ""
},
{
"instruction": "What is the name of the season that begins in the fall and ends in the spring?",
"input": "",
"output": ""
},
{
"instruction": "When is Original Joe's Day in San Francisco?",
"input": "",
"output": ""
},
{
"instruction": "Extract all the football competitions mentioned in the passage and present them using bullet points.",
"input": "",
"output": ""
},
{
"instruction": "How to plan a Lakehouse migration journey?",
"input": "",
"output": ""
},
{
"instruction": "What should I do if water is dripping from the ceiling inside my house?",
"input": "",
"output": ""
},
{
"instruction": "Which products apple sell?",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or percussion: Udu, Bulbul tarang",
"input": "",
"output": ""
},
{
"instruction": "Tell me about the new premier of New South Wales",
"input": "",
"output": ""
},
{
"instruction": "classify each of these as either computer software or hardware: RAM, SSD, keyboard, mouse, trackpad, python, R, Scala, Google, Gmail, Figma, camera, screen",
"input": "",
"output": ""
},
{
"instruction": "What causes the sun to rise?",
"input": "",
"output": ""
},
{
"instruction": "Why did the population expand in Seattle in the 2000s?",
"input": "",
"output": ""
},
{
"instruction": "When was the Memphis album released",
"input": "",
"output": ""
},
{
"instruction": "Think up of a bunch of different dishes you could make with a pound of potatoes",
"input": "",
"output": ""
},
{
"instruction": "From the passage provided, extract the name of the arm of Milky way Galaxy on which our solar system is located",
"input": "",
"output": ""
},
{
"instruction": "Give me a bulleted list of the 5 most recent Pakistani Prime Ministers",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of summer activities for an 8-year-old.",
"input": "",
"output": ""
},
{
"instruction": "How do you find a college internship in your interested field of study?",
"input": "",
"output": ""
},
{
"instruction": "What is a merchant bank?",
"input": "",
"output": ""
},
{
"instruction": "Where can I buy leather pants for women?",
"input": "",
"output": ""
},
{
"instruction": "Given this paragraph about Arlington Virginia, how many elementary schools are there in the county's public education system?",
"input": "",
"output": ""
},
{
"instruction": "Where do black walnut trees grow?",
"input": "",
"output": ""
},
{
"instruction": "Can a neutral wire in a home electrical circuit give me an electric shock",
"input": "",
"output": ""
},
{
"instruction": "Which NFL teams have gone to the Super Bowl at least once but have never won a Super Bowl title?",
"input": "",
"output": ""
},
{
"instruction": "List the universities in Dublin in order of founding year ascending. Supply the answer as an enumerated list in the format {University name}, {Year of founding}",
"input": "",
"output": ""
},
{
"instruction": "Which is a species of fish? Skate or Scooter",
"input": "",
"output": ""
},
{
"instruction": "When did the Portuguese royal family move to Brazil?",
"input": "",
"output": ""
},
{
"instruction": "Who is Paul Cezanne?",
"input": "",
"output": ""
},
{
"instruction": "What is a Moluccan hanging parrot?",
"input": "",
"output": ""
},
{
"instruction": "What is the name of the season that begins in the summer and ends in the winter?",
"input": "",
"output": ""
},
{
"instruction": "What is the best book to read about the Battle of Stalingrad?",
"input": "",
"output": ""
},
{
"instruction": "Give me a bulleted list of colleges or universities located Massachusetts",
"input": "",
"output": ""
},
{
"instruction": "Name the movies made by Quentin Tarantino.",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of top five tourist attractions to visit in Europe",
"input": "",
"output": ""
},
{
"instruction": "Is it advisable to dress in costume for a musical theater audition?",
"input": "",
"output": ""
},
{
"instruction": "Given that the current year is 2023, how old is Chevron?",
"input": "",
"output": ""
},
{
"instruction": "Why do people love the FIFA world cup?",
"input": "",
"output": ""
},
{
"instruction": "You come across a bear which is brown in color, has flat shoulders, and has large ears. What kind of bear is it?",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether these are found at the beach or on a mountains: ocean, ski resort, chair lift, shell, seaweed, hiking trail",
"input": "",
"output": ""
},
{
"instruction": "What can you learn from living in a foreign country?",
"input": "",
"output": ""
},
{
"instruction": "What are the steps I should take to become a data engineer for absolute beginner?",
"input": "",
"output": ""
},
{
"instruction": "What is a Rhapsa scotosialis",
"input": "",
"output": ""
},
{
"instruction": "According to Hofstadter what is the theme of the book Gödel, Escher, Bach?",
"input": "",
"output": ""
},
{
"instruction": "Extract all the weights and measures from the text",
"input": "",
"output": ""
},
{
"instruction": "Classify each of the following as either a citrus fruit or non citrus-fruit: apples, pears, watermelons, lemons, clementines, mandarines",
"input": "",
"output": ""
},
{
"instruction": "What is the best way to travel to space?",
"input": "",
"output": ""
},
{
"instruction": "Tell me a fun fact about Boca Raton, Florida",
"input": "",
"output": ""
},
{
"instruction": "Given this paragraph about Lake Michigan, tell me where Lake Michigan ranks in terms of size by volume.",
"input": "",
"output": ""
},
{
"instruction": "When was siri for the iphone created?",
"input": "",
"output": ""
},
{
"instruction": "Provide a few ways that I can find new restaurants near me",
"input": "",
"output": ""
},
{
"instruction": "What would you do to improve the rules of Tennis, to make it a better TV viewing experience?",
"input": "",
"output": ""
},
{
"instruction": "What is retail banking?",
"input": "",
"output": ""
},
{
"instruction": "What do they call soccer in the rest of the world, than United States?",
"input": "",
"output": ""
},
{
"instruction": "What are specific reasons for seasons?",
"input": "",
"output": ""
},
{
"instruction": "Classify each of the following as either a title by Kevin Kwan or Veronica Roth: Sex and Vanity, Crazy Rich Asians, China Rich Girlfriend, Rich People Problems, Luck: The Essential Guide, Divergent, Allegiant, Insurgent, Carve the Mark, Chosen Ones",
"input": "",
"output": ""
},
{
"instruction": "what is the sunniest state in the US?",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of Premier League winners in the last 5 years.",
"input": "",
"output": ""
},
{
"instruction": "When did Singapore gain independence, and who was the first President?",
"input": "",
"output": ""
},
{
"instruction": "From the passage provided, extract the states that encompass South India. Separate them with a comma.",
"input": "",
"output": ""
},
{
"instruction": "What is the meaning of life?",
"input": "",
"output": ""
},
{
"instruction": "Tell me why people like the Skate video game series in one sentence",
"input": "",
"output": ""
},
{
"instruction": "What is the standard Gibbs free energy",
"input": "",
"output": ""
},
{
"instruction": "How long was the longest slide in the Unilever Series?",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or percussion: Goema, Requinto",
"input": "",
"output": ""
},
{
"instruction": "Who were the original 5 members of the Grateful Dead?",
"input": "",
"output": ""
},
{
"instruction": "Think up five popular cities to visit on vacation in the United States",
"input": "",
"output": ""
},
{
"instruction": "What are the interesting facts about Shakespeare?",
"input": "",
"output": ""
},
{
"instruction": "Given this reference text about Jimmy John's, how many Jimmy John's locations are there?",
"input": "",
"output": ""
},
{
"instruction": "Should I use a dynamic microphone or a condenser microphone for recording a podcast? What about streaming on twitch or making youtube videos? Should I ever use a ribbon microphone?",
"input": "",
"output": ""
},
{
"instruction": "What are some highlights of Lionel Messi's career goals?",
"input": "",
"output": ""
},
{
"instruction": "Was Jens Stub Swedish?",
"input": "",
"output": ""
},
{
"instruction": "Please give me a brief history of the Edinburgh Central Library?",
"input": "",
"output": ""
},
{
"instruction": "What is it like to have children and how many should I have?",
"input": "",
"output": ""
},
{
"instruction": "Name a famous silent comedy film",
"input": "",
"output": ""
},
{
"instruction": "Write a paragraph about the best things to do while vacationing in Palm Springs, California.",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether this is a mammal or a bird: parrot, dolphin, dog, guinea pig, parakeet.",
"input": "",
"output": ""
},
{
"instruction": "The classis horror the Shining exterior shots were shot at this location:",
"input": "",
"output": ""
},
{
"instruction": "Given this paragraph about Freddie Mercury, where was his last performance with Queen.",
"input": "",
"output": ""
},
{
"instruction": "Given the following paragraph about the nutrition profile of peanut butter, what minerals is peanut butter rich in?",
"input": "",
"output": ""
},
{
"instruction": "Why is the sky blue?",
"input": "",
"output": ""
},
{
"instruction": "What is Matong",
"input": "",
"output": ""
},
{
"instruction": "What ingredients do i need to make sour dough bread",
"input": "",
"output": ""
},
{
"instruction": "Give me 10 reasons why people dance",
"input": "",
"output": ""
},
{
"instruction": "How many times Daniel Ricciardo won the F1 championship ?",
"input": "",
"output": ""
},
{
"instruction": "How can I contribute to Spark?",
"input": "",
"output": ""
},
{
"instruction": "Given the following paragraph about New York City, how many people live in the city?",
"input": "",
"output": ""
},
{
"instruction": "What are some of the best things about a summertime visit to Mount Desert Island, Maine?",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or woodwind: Diplica, Kontra",
"input": "",
"output": ""
},
{
"instruction": "Share some key points about gem Ruby from the given text",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether these are countries or continents",
"input": "",
"output": ""
},
{
"instruction": "Summarize the interesting points about Arc'teryx",
"input": "",
"output": ""
},
{
"instruction": "What are some of the best vegan protein sources?",
"input": "",
"output": ""
},
{
"instruction": "What is a cat?",
"input": "",
"output": ""
},
{
"instruction": "What country was Frida Kahlo from and what career was she famous for?",
"input": "",
"output": ""
},
{
"instruction": "Which of these items are not allowed in a carry on baggage in a flight? Medicines, Swiss Knife, Mirror, Wine bottle, Toy Gun, Scissors, herbs, dogs.",
"input": "",
"output": ""
},
{
"instruction": "How fast can an ostrich run?",
"input": "",
"output": ""
},
{
"instruction": "How many homologous pairs do humans have and what is the exception?",
"input": "",
"output": ""
},
{
"instruction": "Identify which car manufacturer is French or American: Citroen, Chrysler",
"input": "",
"output": ""
},
{
"instruction": "How does the train work?",
"input": "",
"output": ""
},
{
"instruction": "What are 3 popular dishes that can feed a large group of people?",
"input": "",
"output": ""
}
] |