File size: 32,393 Bytes
d6754cd | 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 | [
{
"instruction": "What is a sight-reading contest?",
"input": "",
"output": ""
},
{
"instruction": "What are the main reasons for the price of a good increasing or decreasing in a capitalist society.",
"input": "",
"output": ""
},
{
"instruction": "Why sport cricket is so famous?",
"input": "",
"output": ""
},
{
"instruction": "Extract all the authors named in this paragraph on the controversies about Nobel laureate selections",
"input": "",
"output": ""
},
{
"instruction": "The Global Climate Emergency report is based on scientific analysis of more than how many years?",
"input": "",
"output": ""
},
{
"instruction": "Q: What treatments are available in the U.S. to treat COVID-19?",
"input": "",
"output": ""
},
{
"instruction": "Which dynasties rules in Morocco ?",
"input": "",
"output": ""
},
{
"instruction": "Why should I move to New York City?",
"input": "",
"output": ""
},
{
"instruction": "Make me a list of give cocktails made using vodka, include any other ingredients required.",
"input": "",
"output": ""
},
{
"instruction": "What career did GeLing Yan have?",
"input": "",
"output": ""
},
{
"instruction": "Identify which car manufacturer is Chinese or American: Apex Motors, Chevrolet",
"input": "",
"output": ""
},
{
"instruction": "What is accepted to be California's first official wine-producing vineyard?",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of the ten best romance novels of all time",
"input": "",
"output": ""
},
{
"instruction": "Based on this passage, what is the average number of people per family in Zangisheh?",
"input": "",
"output": ""
},
{
"instruction": "Tell me about the play Die Schutzbefohlenen",
"input": "",
"output": ""
},
{
"instruction": "Why are Guyanese Creole words and phrases considered to be very elastic?",
"input": "",
"output": ""
},
{
"instruction": "Given this paragraph about the Golden Records, tell me what it is, where it is heading, who/when created it.",
"input": "",
"output": ""
},
{
"instruction": "What is the best musical instrument to learn?",
"input": "",
"output": ""
},
{
"instruction": "What are five totally distinct, creative ways to describe the usefulness of a child's imagination?",
"input": "",
"output": ""
},
{
"instruction": "How did Robert Baratheon die?",
"input": "",
"output": ""
},
{
"instruction": "What are three crafts with a wire coat hanger?",
"input": "",
"output": ""
},
{
"instruction": "Name the top 10 Manchester United Scorers of all time and how many goals they scored?",
"input": "",
"output": ""
},
{
"instruction": "Classify each of these things as either \"Able to fit in a bread box\" or \"Unable to fit in a bread box\": an elephant, a hockey stick, a loaf of bread, an ant, a lightbulb, a ceiling fan, a pair of blue jeans",
"input": "",
"output": ""
},
{
"instruction": "Wadi Al Banat's name means ?",
"input": "",
"output": ""
},
{
"instruction": "What is geodesy?",
"input": "",
"output": ""
},
{
"instruction": "Why was the European Union founded?",
"input": "",
"output": ""
},
{
"instruction": "How do I decide how to buy a bicycle?",
"input": "",
"output": ""
},
{
"instruction": "What is the capital of California?",
"input": "",
"output": ""
},
{
"instruction": "Classify each of the following as either a natural hair color or a grocery store bakery brand: Hostess, blonde, brunette, Betty Crocker, Pilsbury, red, black, Entenmann's",
"input": "",
"output": ""
},
{
"instruction": "Which Shakespeare play inspired West Side Story?",
"input": "",
"output": ""
},
{
"instruction": "Who were the United States Presidents?",
"input": "",
"output": ""
},
{
"instruction": "Who was Beethoven?",
"input": "",
"output": ""
},
{
"instruction": "What is the best way to earn money on the side?",
"input": "",
"output": ""
},
{
"instruction": "What is the best TV series for Kids?",
"input": "",
"output": ""
},
{
"instruction": "What is the difference between an electric guitar and acoustic guitar?",
"input": "",
"output": ""
},
{
"instruction": "How many languages are there worldwide?",
"input": "",
"output": ""
},
{
"instruction": "Provide a table of the various recruiting lists that Calvin Johnson was named to and who named him to the list and do it in CSV format",
"input": "",
"output": ""
},
{
"instruction": "What is Python?",
"input": "",
"output": ""
},
{
"instruction": "Why do people purchase ski passes?",
"input": "",
"output": ""
},
{
"instruction": "From the passage note down the various stars of the movie Rise of the Planet of the Apes. List the results in comma separated format.",
"input": "",
"output": ""
},
{
"instruction": "Give me a quick exercise I can do every day",
"input": "",
"output": ""
},
{
"instruction": "What does the acronym MEDDPICC stand for?",
"input": "",
"output": ""
},
{
"instruction": "Why would a software engineer want to transition into product management?",
"input": "",
"output": ""
},
{
"instruction": "Tell me which of these US Presidents was Republican or Democrat: Dwight Eisenhower, John Kennedy, Lyndon Johnson, Richard Nixon, Gerald Ford, Jimmy Carter",
"input": "",
"output": ""
},
{
"instruction": "Classify each of the following as either a true statement or a false statement: \n1. Albert Einstein was a Chinese mathematician that lived in the 19th and 20th century.\n2. Pigs are not mammals.\n3. This question contains four statements that need classification.",
"input": "",
"output": ""
},
{
"instruction": "Give me a good french wine with cheese",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether these sports use a ball or not: golf, gymnastics, boxing, soccer, football, wrestling",
"input": "",
"output": ""
},
{
"instruction": "Which of these are animals: Oak, goat, dog, train, airplane, cat, tiger, bat, rose, boat.",
"input": "",
"output": ""
},
{
"instruction": "Why do people need money?",
"input": "",
"output": ""
},
{
"instruction": "Map the following models sold in the UK to either the Ford or Vauxhall brands: Escort, Cavalier, Nova, Ka",
"input": "",
"output": ""
},
{
"instruction": "Who was Lionel Danthanarayana ?",
"input": "",
"output": ""
},
{
"instruction": "Please give me a summary of what AES-GCM is and what are its inputs and outputs.",
"input": "",
"output": ""
},
{
"instruction": "Extract the areas of science using differential equations in this text in an alphabetically ordered list.",
"input": "",
"output": ""
},
{
"instruction": "In the series A Song of Ice and Fire, who is the founder of House Targaryen?",
"input": "",
"output": ""
},
{
"instruction": "Given this short summary of Giovan Battista Cavagna, how long did it take to build the second Monte di Pieta?",
"input": "",
"output": ""
},
{
"instruction": "What is Beggar's Chicken?",
"input": "",
"output": ""
},
{
"instruction": "Is homekit's are necessary for a home?",
"input": "",
"output": ""
},
{
"instruction": "Let me know if you think these are musical instruments or tools: Piano, chisel, Marimba, hammer, drill, scissor, violin, drums, screwdriver, brass, clarinet.",
"input": "",
"output": ""
},
{
"instruction": "Name three different bug type Pokemon.",
"input": "",
"output": ""
},
{
"instruction": "Choose the odd one out: Roger Federer, Roger Moore, Roger Binny",
"input": "",
"output": ""
},
{
"instruction": "Given this short paragraph about the life of George K. McGunnegle, how old was he when he retired and what month of the year did that happen?",
"input": "",
"output": ""
},
{
"instruction": "When going skydiving, categorize each of the following as 'useful' or 'not useful': a parachute, an Acme anvil, a helmet, a go-pro camera, a small herd of miniature ponies, wraparound sunglasses, a backpack full of uranium",
"input": "",
"output": ""
},
{
"instruction": "Which is a species of fish? Reedfish or Reed",
"input": "",
"output": ""
},
{
"instruction": "What are some different ways I can use many fresh lemons?",
"input": "",
"output": ""
},
{
"instruction": "Why is Grand Canyon a big deal?",
"input": "",
"output": ""
},
{
"instruction": "Where is Lake Como located?",
"input": "",
"output": ""
},
{
"instruction": "America’s cup comeback",
"input": "",
"output": ""
},
{
"instruction": "Extract the countries that are named in the text separated by a comma.",
"input": "",
"output": ""
},
{
"instruction": "Write a short summary of the text below (max 20 words):\n\nFinland’s prime minister, Sanna Marin, has lost her battle to stay in power after her centre-left Social Democratic party (SDP) was narrowly beaten into third place in a cliffhanger election by its conservative and far-right rivals.\n\nWith 99.4% of votes counted on Sunday, the right-wing National Coalition party was on course to secure 20.7% of the vote, with the populist, nation-first Finns party predicted to score 20.1%. Marin’s SDP was forecast to collect 19.9%.\n\nMarin congratulated the election winners during her concession speech, but hailed an improvement in both her party’s vote share and its projected number of MPs. “It’s a really good achievement, even though I didn’t finish first today,” she told supporters in Helsinki.\n\n“Democracy has spoken, the Finnish people have cast their vote, and the celebration of democracy is always a wonderful thing,” she added. “We have good reason to be happy about this result.”",
"input": "",
"output": ""
},
{
"instruction": "Kindly provide some details regarding the plot of science fiction 'A Borrowed Man' from the given passage.",
"input": "",
"output": ""
},
{
"instruction": "What is Linux?",
"input": "",
"output": ""
},
{
"instruction": "Given this reference text about the Hawaiian scale, how tall is a wave that is six foot Hawaiian?",
"input": "",
"output": ""
},
{
"instruction": "Extract all of the dates mentioned in this paragraph and list them using bullets in the format {Date} - {Description}",
"input": "",
"output": ""
},
{
"instruction": "What is L-AP4",
"input": "",
"output": ""
},
{
"instruction": "who is the prime minister of india",
"input": "",
"output": ""
},
{
"instruction": "Which sports offer championship belts to their winners?",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or woodwind: Balaban, Lute",
"input": "",
"output": ""
},
{
"instruction": "What's a gaya melon? How does it taste like?",
"input": "",
"output": ""
},
{
"instruction": "Where is the corporate headquarters of Adobe Systems?",
"input": "",
"output": ""
},
{
"instruction": "Which states produced more than 10% of total US oil production in 2020?",
"input": "",
"output": ""
},
{
"instruction": "Tell me about Reno, Nevada.",
"input": "",
"output": ""
},
{
"instruction": "Name a good ski mountain in Vermont",
"input": "",
"output": ""
},
{
"instruction": "Classify each of the following on the basis of text (alphabetically) or numbers (numerically) - Bangalore, 265, Apple, 10, Bag, 49.",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or percussion: Hydraulophone, Mandriola",
"input": "",
"output": ""
},
{
"instruction": "Given a reference text about Run Towards the Danger, tell me how many essays are part of the collection.",
"input": "",
"output": ""
},
{
"instruction": "What type of weather is typically associated with the desert?",
"input": "",
"output": ""
},
{
"instruction": "Extract the various manufacturers and suppliers of the Tomahawk missile and separate them by comma",
"input": "",
"output": ""
},
{
"instruction": "What is Ford",
"input": "",
"output": ""
},
{
"instruction": "How is data engineering different from data science?",
"input": "",
"output": ""
},
{
"instruction": "Given this paragraph on the Persian language, which are the 2 sub groups of the Western Iranian language?",
"input": "",
"output": ""
},
{
"instruction": "What are the primary causes of inflation?",
"input": "",
"output": ""
},
{
"instruction": "Make a list of different fruits you could put in a fruit salad with at least 5 ingredients",
"input": "",
"output": ""
},
{
"instruction": "Summarize what it is means to feel threatened?",
"input": "",
"output": ""
},
{
"instruction": "How do I get in shape?",
"input": "",
"output": ""
},
{
"instruction": "Tell me which of the following have been known to attack humans: mouse, goldfish, bears, mugs, cactus, moss, nudibranches, corals, hippos, wolves.",
"input": "",
"output": ""
},
{
"instruction": "What is a flat earther and is it possible for the world to be flat?",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of popular current artists in the EDM category.",
"input": "",
"output": ""
},
{
"instruction": "Name some famous Sci-Fi books",
"input": "",
"output": ""
},
{
"instruction": "What year was Genghis Khan born?",
"input": "",
"output": ""
},
{
"instruction": "List some common citrus-based beverages.",
"input": "",
"output": ""
},
{
"instruction": "What is an adjacency list?",
"input": "",
"output": ""
},
{
"instruction": "Create a beginner-intermediate push-pull-legs workout routine that I can do 6 times a week.",
"input": "",
"output": ""
},
{
"instruction": "What type of terrain is a gravel bike used for?",
"input": "",
"output": ""
},
{
"instruction": "Identify which animal species is alive or extinct: Sivatherium, Bowhead Whale",
"input": "",
"output": ""
},
{
"instruction": "How to play tic-tac-toe",
"input": "",
"output": ""
},
{
"instruction": "Why do you love travelling",
"input": "",
"output": ""
},
{
"instruction": "Would you rather be stuck on a broken ski lift or a broken elevator?",
"input": "",
"output": ""
},
{
"instruction": "What is the Maurice Richard Trophy",
"input": "",
"output": ""
},
{
"instruction": "Who wrote the novel Tom Jones in 1749",
"input": "",
"output": ""
},
{
"instruction": "How to have an evergreen garden?",
"input": "",
"output": ""
},
{
"instruction": "What does Neolithic mean?",
"input": "",
"output": ""
},
{
"instruction": "What is Accrued income security",
"input": "",
"output": ""
},
{
"instruction": "Summarize this paragraph",
"input": "",
"output": ""
},
{
"instruction": "List five titles by Mary Shelley.",
"input": "",
"output": ""
},
{
"instruction": "Give me some reasons to work for a tech company",
"input": "",
"output": ""
},
{
"instruction": "Which Roman general was conspired against and assassinated that is quoted \"Et tu, Brute?\"?",
"input": "",
"output": ""
},
{
"instruction": "What is the most produced airplane in history.",
"input": "",
"output": ""
},
{
"instruction": "Which of the following are beach wear vs what one would wear on a cold winter trek? If there are common items, create a third category called 'Common':\n\nSocks\nHats\nNeck gaiter\nSunglasses\nSwimsuits\nUndershirts\nCover-ups\nDown jacket\nTrek poles\nWater Shoes\nBeanie\nSandals",
"input": "",
"output": ""
},
{
"instruction": "Who is Anatoly Kubatsky?",
"input": "",
"output": ""
},
{
"instruction": "What is the plot of Persuasion by Jane Austen?",
"input": "",
"output": ""
},
{
"instruction": "Give me the instructions on how to escape a labyrinth",
"input": "",
"output": ""
},
{
"instruction": "Where is Allauch",
"input": "",
"output": ""
},
{
"instruction": "From the passage find the major production areas where Avocado is cultivated. Display the results in comma separated format.",
"input": "",
"output": ""
},
{
"instruction": "Which version of the church existed in 1809?",
"input": "",
"output": ""
},
{
"instruction": "How do you make an iced matcha latter?",
"input": "",
"output": ""
},
{
"instruction": "Based on this paragraph about the potential Kontinental Hockey League expansion, how many divisions and how many conferences would the proposed league have?",
"input": "",
"output": ""
},
{
"instruction": "How do you throw a cutter in Wiffle Ball?",
"input": "",
"output": ""
},
{
"instruction": "What is the capital of Finland and when was it founded?",
"input": "",
"output": ""
},
{
"instruction": "What was Mark Twain's real name?",
"input": "",
"output": ""
},
{
"instruction": "Manchester of South India ?",
"input": "",
"output": ""
},
{
"instruction": "From the passage provided, extract the freight train companies using the corridor. Place them in a bullet list.",
"input": "",
"output": ""
},
{
"instruction": "Who is Richard Wayne Bogosian?",
"input": "",
"output": ""
},
{
"instruction": "What is Violet Constance Jessop's nickname?",
"input": "",
"output": ""
},
{
"instruction": "Given this reference test, what is the daily recommended amount of magnesium for women in the U.S.?",
"input": "",
"output": ""
},
{
"instruction": "From the passage provided, extract the population of Seattle metropolitan area",
"input": "",
"output": ""
},
{
"instruction": "What are the best investments ideas?",
"input": "",
"output": ""
},
{
"instruction": "Does Indermaur work as CTO, CEO, or CFO?",
"input": "",
"output": ""
},
{
"instruction": "Is the headquarters of Surrey County Council in Surrey?",
"input": "",
"output": ""
},
{
"instruction": "How do I make a traditional Bolognese sauce?",
"input": "",
"output": ""
},
{
"instruction": "Tell me which one does not fit with the group: Blue, Green, White, Yellow",
"input": "",
"output": ""
},
{
"instruction": "How many feet are in 1 mile?",
"input": "",
"output": ""
},
{
"instruction": "How to calculate growth rate?",
"input": "",
"output": ""
},
{
"instruction": "Where Is The Charging Port On A Tesla Model Y?",
"input": "",
"output": ""
},
{
"instruction": "Why are Asian women’s fancy clothes so expensive",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of the only two American cyclists to win the Tour de France general classification.",
"input": "",
"output": ""
},
{
"instruction": "From the passage provided, extract when Gandhi moved to South Africa",
"input": "",
"output": ""
},
{
"instruction": "Based on the reference text, provide a bulleted list summarizing Newton's three laws of motion",
"input": "",
"output": ""
},
{
"instruction": "Can any piece promote to a queen?",
"input": "",
"output": ""
},
{
"instruction": "Give me 3 totally distinct ways to eat a banana",
"input": "",
"output": ""
},
{
"instruction": "What is palmitoylation",
"input": "",
"output": ""
},
{
"instruction": "Toronto Maple Leafs is a team in the NHL. Who was their captain and star player in the early 2000s?",
"input": "",
"output": ""
},
{
"instruction": "What is s3 equivalent in GCP?",
"input": "",
"output": ""
},
{
"instruction": "What was the estimated Gini coefficient of South Africa during 2008-2009?",
"input": "",
"output": ""
},
{
"instruction": "What is a popular mystery book series?",
"input": "",
"output": ""
},
{
"instruction": "Given a reference text about GDPR, tell me how GDPR helps to secure personal data.",
"input": "",
"output": ""
},
{
"instruction": "Why are drums so important to music, and what this appeal to have live drums in the modern world where drum beats can easily be sampled, and/or perfectly mimicked by software?",
"input": "",
"output": ""
},
{
"instruction": "What is the best boba order to place from a local boba store for a company that has around 300 employees in the office?",
"input": "",
"output": ""
},
{
"instruction": "What is the English football league system?",
"input": "",
"output": ""
},
{
"instruction": "Think up of different foods that are good for when you are sick",
"input": "",
"output": ""
},
{
"instruction": "What is conspicuous consumption?",
"input": "",
"output": ""
},
{
"instruction": "Which of these are car brands: Ferrari, Fiat, Batavus, Philips, Renault, BMW, IKEA and MG",
"input": "",
"output": ""
},
{
"instruction": "What year did the trek in Finding Farley end?",
"input": "",
"output": ""
},
{
"instruction": "Based on the passage provided in which years the movie named 'A star is Born' was released?",
"input": "",
"output": ""
},
{
"instruction": "What is sphingosine?",
"input": "",
"output": ""
},
{
"instruction": "What is the most popular breed of dog in the US?",
"input": "",
"output": ""
},
{
"instruction": "Extract the year that the Balloon typeface was created from the following Wikipedia article.",
"input": "",
"output": ""
},
{
"instruction": "What is backgammon?",
"input": "",
"output": ""
},
{
"instruction": "What kind of magazine was Nova",
"input": "",
"output": ""
},
{
"instruction": "How many homologous pairs do humans have and what is the exception?",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or percussion: Clapper, Chagane",
"input": "",
"output": ""
},
{
"instruction": "What is the most important element of swimming breaststroke?",
"input": "",
"output": ""
},
{
"instruction": "What is a mediterranean diet?",
"input": "",
"output": ""
},
{
"instruction": "Make a bullet list of 5 gifts you can give someone for Valentine's Day",
"input": "",
"output": ""
},
{
"instruction": "Name the members of the band Phish",
"input": "",
"output": ""
},
{
"instruction": "\"The Day the Music Died\" refers to the tragic deaths of which artists?",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether the following athletes are tennis or football players: Ibrahimovic, Medvedev, Agassi, Neymar, Halep, Davenport",
"input": "",
"output": ""
},
{
"instruction": "How can I get my dog to stop barking?",
"input": "",
"output": ""
},
{
"instruction": "What is the best football club in the world in 23 between Arsenal, Real Madrid, Napoli, Manchester City, and Bayern Munich?",
"input": "",
"output": ""
},
{
"instruction": "Who is the director of \"Who Killed Hanna Jane?\"",
"input": "",
"output": ""
},
{
"instruction": "What is the name of the first dog that went to space?",
"input": "",
"output": ""
},
{
"instruction": "What is the best seasoning to use on steak?",
"input": "",
"output": ""
},
{
"instruction": "Classify the following ten cloud types by altitude :\nCirrus, Cumulus, Stratus, Stratocumulus, Cumulonimbus, NimboStratus, Cirrocumulus, Cirrostratus, Altostratus, Altocumulus,",
"input": "",
"output": ""
},
{
"instruction": "Write a brief passage arguing for the use of genetically modified crops in agriculture.",
"input": "",
"output": ""
},
{
"instruction": "How did Frank Stagg die?",
"input": "",
"output": ""
},
{
"instruction": "Colonies or provinces? How did the Spanish Empire treat its overseas territories?",
"input": "",
"output": ""
},
{
"instruction": "How much caffeine is in a cup of coffee on average. Does the size of the cup matter?",
"input": "",
"output": ""
},
{
"instruction": "I want to buy a work monitor which is to be used along with the laptop. What features of monitor should be considered?",
"input": "",
"output": ""
},
{
"instruction": "How is jazz music different than classical?",
"input": "",
"output": ""
},
{
"instruction": "Based on the paragraph below, what bone was used to estimate the height of William the Conquerer?",
"input": "",
"output": ""
},
{
"instruction": "What was Robert Metcalfe's impact on society?",
"input": "",
"output": ""
},
{
"instruction": "Think of a bunch of different ways you could lift weights at home without any dumbbells or gym equipment.",
"input": "",
"output": ""
},
{
"instruction": "Sell me this pencil",
"input": "",
"output": ""
},
{
"instruction": "Classify each as either a vodka drink or a gin drink: Screwdriver, Bloody Mary, French 75, White Russian, Gimlet, Cosmopolitan, Tom Collins, Negroni",
"input": "",
"output": ""
},
{
"instruction": "Miles Davis, Rhianna, Elton John, John Coltrane, Taylor Swift, Amy Winehouse, Elvis, Billy Holiday. These are all musicians - list which of these are jazz musicians, and which are not.",
"input": "",
"output": ""
},
{
"instruction": "What are interesting plot twists for a novel?",
"input": "",
"output": ""
},
{
"instruction": "Classify these objects as edible or inedible: pizza, slipper, cake, banana, biscuit, shoe, pencil, chalk, soda, juice, television, computer, mirror, cereal, rice",
"input": "",
"output": ""
},
{
"instruction": "Quel a été l'impact de la révolution française ?",
"input": "",
"output": ""
},
{
"instruction": "From the passage provided, extract detail on when John Rennie first led Duke to a NCAA college cup",
"input": "",
"output": ""
},
{
"instruction": "Which of the following exercises are push exercises: bench press, bicep curl, skull crusher, tricep extension, pull up, dumbbell row.",
"input": "",
"output": ""
},
{
"instruction": "Tell me whether each of these positions is in soccer or baseball: shortstop, outfielder, midfielder, forward, goalie, catcher",
"input": "",
"output": ""
},
{
"instruction": "How comes a free-diver does not get crushed by the pressure when diving?",
"input": "",
"output": ""
},
{
"instruction": "Give me the list of books related with the series 'The Lord of the Rings', in order of publication",
"input": "",
"output": ""
},
{
"instruction": "What do giant Pandas eats?",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of pros and cons of buying a bigger house",
"input": "",
"output": ""
},
{
"instruction": "Beyond the classical states of matter, what are the modern states of matter?",
"input": "",
"output": ""
},
{
"instruction": "Is banana a flower or a fruit?",
"input": "",
"output": ""
},
{
"instruction": "How do you play blackjack?",
"input": "",
"output": ""
},
{
"instruction": "You and your friends are discussing the best tier ratings of common London-based football teams. You are trying to determine whether Chelsea F.C., Arsenal F.C., Tottenham Hotspur F.C., West Ham United F.C., Fulham F.C. and Crystal Palace F.C. are considered by fans to be the 'best', 'ok' and 'worst'.",
"input": "",
"output": ""
},
{
"instruction": "Tell me about the merger history of the Swiss bank UBS",
"input": "",
"output": ""
},
{
"instruction": "What was the first road trip after Elson joined Indiana University?",
"input": "",
"output": ""
},
{
"instruction": "Why do people travel to Puerto Rico?",
"input": "",
"output": ""
},
{
"instruction": "Why should I watch ice hockey",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of places to go in San Diego, CA with kids",
"input": "",
"output": ""
},
{
"instruction": "What is Sauvignon blanc?",
"input": "",
"output": ""
},
{
"instruction": "Who is the greatest musical theatre composer of all time?",
"input": "",
"output": ""
},
{
"instruction": "What was Meghan Markle's royal title?",
"input": "",
"output": ""
},
{
"instruction": "Give me a list of the 3 best activities to do with your kids when the weather is bad outside",
"input": "",
"output": ""
},
{
"instruction": "What are important elements to consider when putting together a team to execute your operating model for AI?",
"input": "",
"output": ""
},
{
"instruction": "What is a good way to get around without a car?",
"input": "",
"output": ""
},
{
"instruction": "Is the Vex or FIRST robotics competition a better choice for a child in high school?",
"input": "",
"output": ""
},
{
"instruction": "Who are the people named in the passage?",
"input": "",
"output": ""
},
{
"instruction": "Classify each of these as a type of instrument or a type of school subject: Mathematics, Saxophone, french horn, history, physical education, Oboe, science, drums, geography, flute, tuba",
"input": "",
"output": ""
},
{
"instruction": "Who is Anne Francis?",
"input": "",
"output": ""
},
{
"instruction": "List the founders of MicroStrategy and surround the first name of the founder who served as CEO in quotes.",
"input": "",
"output": ""
},
{
"instruction": "Extract all the airports listed in this reference paragraph",
"input": "",
"output": ""
},
{
"instruction": "Jot down some points about University of Liverpool from given text",
"input": "",
"output": ""
},
{
"instruction": "Give me a bullet list of 5 US states that have a coastline with the Pacific Ocean",
"input": "",
"output": ""
},
{
"instruction": "Identify which instrument is string or percussion: Pahu, Morin khuur",
"input": "",
"output": ""
},
{
"instruction": "What was the first modern trading card game created?",
"input": "",
"output": ""
},
{
"instruction": "Classify each of the following as either a Sega or Nintendo game: Super Mario Bros, Sonic the Hedgehog, Altered Beast, Road Rash, Legend of Zelda, Ecco the Dolphin, ToeJam & Earl, Metroid, Chrono Trigger, Donkey Kong Country",
"input": "",
"output": ""
},
{
"instruction": "What are the starting Pokemon in Pokemon Red and Blue?",
"input": "",
"output": ""
},
{
"instruction": "What is IMPS?",
"input": "",
"output": ""
},
{
"instruction": "What are some ways that an enterprise software company can cut costs?",
"input": "",
"output": ""
},
{
"instruction": "What are some criticism of Betty Friedan's Feminine Mystique?",
"input": "",
"output": ""
}
] |