forked from meta-llama/llama
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathalpaca_data_200_samples.json
1002 lines (1002 loc) · 76.9 KB
/
alpaca_data_200_samples.json
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
[
{
"instruction": "Give three tips for staying healthy.",
"input": "",
"output": "1.Eat a balanced diet and make sure to include plenty of fruits and vegetables. \n2. Exercise regularly to keep your body active and strong. \n3. Get enough sleep and maintain a consistent sleep schedule."
},
{
"instruction": "What are the three primary colors?",
"input": "",
"output": "The three primary colors are red, blue, and yellow."
},
{
"instruction": "Describe the structure of an atom.",
"input": "",
"output": "An atom is made up of a nucleus, which contains protons and neutrons, surrounded by electrons that travel in orbits around the nucleus. The protons and neutrons have a positive charge, while the electrons have a negative charge, resulting in an overall neutral atom. The number of each particle determines the atomic number and the type of atom."
},
{
"instruction": "How can we reduce air pollution?",
"input": "",
"output": "There are a number of ways to reduce air pollution, such as shifting to renewable energy sources, encouraging the use of public transportation, prohibiting the burning of fossil fuels, implementing policies to reduce emissions from industrial sources, and implementing vehicle emissions standards. Additionally, individuals can do their part to reduce air pollution by reducing car use, avoiding burning materials such as wood, and changing to energy efficient appliances."
},
{
"instruction": "Describe a time when you had to make a difficult decision.",
"input": "",
"output": "I had to make a difficult decision when I was working as a project manager at a construction company. I was in charge of a project that needed to be completed by a certain date in order to meet the client\u2019s expectations. However, due to unexpected delays, we were not able to meet the deadline and so I had to make a difficult decision. I decided to extend the deadline, but I had to stretch the team\u2019s resources even further and increase the budget. Although it was a risky decision, I ultimately decided to go ahead with it to ensure that the project was completed on time and that the client\u2019s expectations were met. The project was eventually successfully completed and this was seen as a testament to my leadership and decision-making abilities."
},
{
"instruction": "Identify the odd one out.",
"input": "Twitter, Instagram, Telegram",
"output": "Telegram"
},
{
"instruction": "Explain why the following fraction is equivalent to 1/4",
"input": "4/16",
"output": "The fraction 4/16 is equivalent to 1/4 because both numerators and denominators are divisible by 4. Dividing both the top and bottom numbers by 4 yields the fraction 1/4."
},
{
"instruction": "Write a short story in third person narration about a protagonist who has to make an important career decision.",
"input": "",
"output": "John was at a crossroads in his life. He had just graduated college and was now facing the big decision of what career to pursue. After much deliberation, he decided that he wanted to be an accountant and help the financially disadvantaged. He had always been good with numbers and enjoyed seeing the tangible results of his work. \n\nJohn enrolled in accounting courses and initially found it quite challenging. He had to learn multiple systems and regulations quickly, but he worked hard and eventually excelled in his studies. After a few years, John started working at an accounting firm in his city. He was eager to put his knowledge of taxes and accounting to use in a real-world setting.\n\nJohn loved his job, as it let him express his creativity in finding strategies to save his clients money. After a few years at the firm, he became a senior accountant and was asked to manage bigger and more challenging cases. He was now a respected figure in the financial industry, but he still remembers when he was just a recent college graduate, unsure of the direction in which his life would take him."
},
{
"instruction": "Render a 3D model of a house",
"input": "",
"output": "<nooutput> This type of instruction cannot be fulfilled by a GPT model."
},
{
"instruction": "Evaluate this sentence for spelling and grammar mistakes",
"input": "He finnished his meal and left the resturant",
"output": "He finished his meal and left the restaurant."
},
{
"instruction": "How did Julius Caesar die?",
"input": "",
"output": "Julius Caesar was assassinated by a group of up to 60 conspirators, led by Gaius Cassius Longinus and Marcus Junius Brutus, in the Senate House on the Ides of March (15 March) of 44 BC."
},
{
"instruction": "What is the capital of France?",
"input": "",
"output": "The capital of France is Paris."
},
{
"instruction": "Generate a list of ten items a person might need for a camping trip",
"input": "",
"output": "1. Tent\n2. Sleeping bags\n3. Flashlight\n4. Matches/lighter\n5. Insect repellent\n6. Extra clothes\n7. First aid kit\n8. Camp stove\n9. Cooking utensils\n10. Biodegradable soaps/shampoos"
},
{
"instruction": "Discuss the causes of the Great Depression",
"input": "",
"output": "The Great Depression was a severe global economic downturn that lasted from 1929 to 1939. It was caused by several factors, including the stock market crash of 1929, structural weaknesses in the economy, low consumer spending, high unemployment, and a lack of confidence in the banking system. Other contributing factors included overproduction of commodities, reliance on borrowing to finance investments, agricultural overproduction, and a decrease in international trade."
},
{
"instruction": "Classify the following into animals, plants, and minerals",
"input": "Oak tree, copper ore, elephant",
"output": "Oak tree: Plant\n Copper ore: Mineral\n Elephant: Animal"
},
{
"instruction": "Explain the use of word embeddings in Natural Language Processing",
"input": "",
"output": "Word embeddings are one of the most powerful tools available for Natural Language Processing (NLP). They are mathematical representations of words or phrases in a vector space, allowing similarities between words and the context in which they are used to be measured. Word embeddings are useful for tasks such as sentiment analysis, text classification, predicting the next word in a sequence, and understanding synonyms and analogies. They allow for words to be processed as numerical values, giving machines an easier way to perform NLP tasks."
},
{
"instruction": "Describe the function of a computer motherboard",
"input": "",
"output": "A computer motherboard is the main circuit board in a computer. It is the backbone of the system, connecting all other components such as the processor, RAM, storage, graphics card and peripheral ports. It provides communication pathways between all of these components, allowing them to interact and work together. The motherboard is responsible for regulating power, and also houses slots for expansion cards, as well as ports for USB, audio, Ethernet, and other connection types."
},
{
"instruction": "Reverse engineer this code to create a new version",
"input": "def factorialize(num):\n factorial = 1\n for i in range(1, num):\n factorial *= i\n \n return factorial",
"output": "def factorialize(num):\n factorial = 1\n for i in range(num, 0, -1):\n factorial *= i\n \n return factorial"
},
{
"instruction": "Propose an ethical solution to the problem of data privacy",
"input": "",
"output": "One ethical solution to the problem of data privacy is to implement an opt-in data collection policy. This means that companies cannot collect and use personal data without the explicit permission of the data owners. This approach gives users the power to determine which data companies can use and for what purpose. Companies should also be transparent about how they use the collected data, so that users can make informed decisions and have control over their own data."
},
{
"instruction": "Generate three verbs that mean the same as \"to apologize\"",
"input": "",
"output": "Acknowledge, express regret, make amends."
},
{
"instruction": "What does DNA stand for?",
"input": "",
"output": "DNA stands for deoxyribonucleic acid."
},
{
"instruction": "Compare and contrast the Cuban Missile Crisis and the Vietnam War.",
"input": "",
"output": "The Cuban Missile Crisis and the Vietnam War were two of the largest and deadliest conflicts of the 20th century. The Cuban Missile Crisis involved a standoff between the United States and the Soviet Union over Soviet nuclear missile bases in Cuba, while the Vietnam War was a prolonged military conflict in Indochina between the North, which was backed by the Soviet Union and the South, which was backed by the United States. The Cuban Missile Crisis unfolded over a period of 13 days in October 1962, with the resolution coming in the form of a diplomatic agreement. The Vietnam War lasted for 19 years, beginning in 1954 and ending in 1973, with the signing of the Paris Peace Accords. While both of these conflicts were Cold War related, they were also very different in terms of causes, objectives, strategic objectives and outcomes. The Cuban Missile Crisis did not result in any direct military conflict and was resolved primarily through diplomacy and the decision to withdraw nuclear weapons from Cuba. On the other hand, the Vietnam War was a prolonged series of battles resulting in significant losses for both sides. The Vietnam War also had a significant impact on the United States, as it highlighted the realities of a prolonged conflict and the limits of U.S. military intervention. Additionally, the Vietnam War also drastically changed the way public opinion viewed the military and the use of force."
},
{
"instruction": "Generate a list of random words.",
"input": "",
"output": "sneeze, conflict, ancestor, thunder, companion, amulet, forge, serpent, magnify, jester, cascade, universe, surge, nausea, oasis, anomaly, pursue, rapture, pagoda, mosaic."
},
{
"instruction": "Transcribe the recording into text.",
"input": "Recording about the history of Waterloo",
"output": "The Battle of Waterloo, fought on June 18, 1815, was the last major battle of the Napoleonic Wars. It marked the end of Napoleon Bonaparte's rule. The battle was fought between Napoleon Bonaparte's French forces and an allied force of British, Dutch, Belgian and Prussian troops, led by the Duke of Wellington. It was fought near the town of Waterloo in the former Austrian Netherlands, now present-day Belgium. The battle was a defeat for Napoleon's forces and ended Napoleon's rule over France. Napoleon himself was exiled to St. Helena, where he would die in 1821. The battle marked the end of French domination of Europe and the beginning of a period of peace in the region. It was also the last major battle of the Napoleonic Wars and is remembered as one of the most important battles in history. The victory of the allied forces at Waterloo helped to bring an end to French imperial ambitions in Europe. It also established the British as one of the most powerful nations in Europe. The battle was fought with a combination of infantry, cavalry, and artillery tactics, and showed the beginning of the changing nature of warfare. Although the French forces greatly outnumbered the allies, their strategic and tactical mistake led to the loss of the battle. This defeat signaled the end of French imperial power in Europe. The legacy of Waterloo still stands today, and it cemented the British Empire's position for the next one hundred years."
},
{
"instruction": "Who is the world's most famous painter?",
"input": "",
"output": "The world's most famous painter is generally considered to be the Italian renaissance artist Leonardo da Vinci. His work includes the Mona Lisa and The Last Supper, both of which are considered masterpieces. Da Vinci was also a master of science, inventing the helicopter and the tank, among other inventions. He was also a prolific musician, sculptor, and architect. His work has inspired generations of artists and continues to be revered today."
},
{
"instruction": "Explain the concept of cogging torque.",
"input": "",
"output": "Cogging torque is the torque that is applied to a rotating device when the device experiences resistance from the teeth of the gears that are connected to the device. Cogging torque occurs due to the reaction force generated when the teeth of the gear drive mesh. This force pushes against each other, resulting in a drag force that is transmitted from the gears to the shaft. The magnitude of the cogging torque can vary depending on the size and number of teeth, as well as the gear's material and design. Cogging torque is undesirable in most motorized applications, as it can lead to loss of efficiency. To reduce cogging torque, gear designs are often symmetrical or have certain tooth profiles which reduce the force of contact between the teeth when they come into contact with each other."
},
{
"instruction": "Look up the boiling point of water.",
"input": "",
"output": "The boiling point of water is 100\u00b0C (212\u00b0F), at standard atmospheric pressure. When heated at higher pressures, water's boiling point increases. For example, water will boil at a temperature of 115\u00b0C (239\u00b0F) at an atmospheric pressure of 1 bar. At higher pressures, such as those experienced at the bottom of the ocean, the boiling point of water can be as high as 374\u00b0C (705\u00b0F)."
},
{
"instruction": "Describe the life and reign of King Charles II.",
"input": "",
"output": "King Charles II ascended to the throne of England following the English Civil War and the death of his father, Charles I. He was crowned in 1661 and his reign lasted until his death in 1685. Charles II was also a patron of the arts, working with some of the greatest painters and sculptors of his day. He also encouraged theater and sports and had an interest in sciences such as astronomy and natural history. Charles II was a moderate ruler who respected the civil and religious liberties of his citizens. He was tolerant of other religions and gave Jews and Catholics more rights in the kingdom. Charles II was also a strong supporter of the Royal Navy, which saw England increase its power in the world. He also promoted the development of industry and commerce, which helped to modernize the country. Charles II's reign was an important step in restoring the monarchy of England after the turmoil of the English Civil War."
},
{
"instruction": "Find the area of a circle given its radius.",
"input": "Radius = 4",
"output": "The area of a circle with a radius of 4 is equal to 12.5664 square units. This is calculated by using the formula A = \u03c0r2, where A is the area, \u03c0 is roughly equal to 3.1416 and r is the radius of the circle."
},
{
"instruction": "Identify the lines of longitude that divides North and South America.",
"input": "",
"output": "The lines of longitude that divides North and South America is the line of the Panama Canal. This line of longitude cuts through the Isthmus of Panama and separates South America from Central America. It is approximately 800 km (500 mi) in total length and was completed in 1914. The Panama Canal is an important shipping route and serves as an international waterway connecting the Caribbean Sea with the Pacific Ocean."
},
{
"instruction": "Explain the process of cellular respiration in plants.",
"input": "",
"output": "Cellular respiration in plants is a complex process in which the plant converts glucose into usable energy. The process begins when the plant takes in carbon dioxide from the environment and combines it with water to form glucose molecules using the energy from sunlight. This glucose is then broken down into simpler molecules of carbon dioxide and water. During this process, the energy released is used to produce adenosine triphosphate (ATP) molecules. ATP is used by the plant to power other processes, such as growth and reproduction. Additionally, the ATP can also be broken down further to produce heat energy, which helps to sustain the plant's temperature. The carbon dioxide and water molecules produced in the process are then released back into the environment to complete the cycle."
},
{
"instruction": "Rewrite the following sentence using active voice.",
"input": "The news report was read by the captain.",
"output": "The captain read the news report."
},
{
"instruction": "Generate a list of adjectives that describe a person as brave.",
"input": "",
"output": "Courageous, heroic, audacious, vigorous, valorous, resolute, intrepid, bold, brave, daring, tenacious, plucky, stout-hearted, doughty, gallant, fearless, undaunted, spirited, daredevil."
},
{
"instruction": "Outline the consequences of deforestation.",
"input": "",
"output": "Deforestation is the process of clearing and removing forests. The consequences of deforestation can include soil erosion, reduced water quality, decreased biodiversity, increased carbon dioxide in the atmosphere and loss of habitat for wildlife. Soil erosion occurs when the trees that help retain water and soil are removed, leading to soil particles being washed away. This can cause siltation in rivers and streams, affecting water quality and leading to flooding. Additionally, when trees are removed, wildlife lose their habitat. This can cause species to become endangered, leading to further loss of biodiversity. Deforestation can also lead to increased carbon dioxide in the atmosphere as there are fewer trees to take up the gas during photosynthesis, which can contribute to climate change."
},
{
"instruction": "Develop a plan to reduce electricity usage in a home.",
"input": "",
"output": "A plan to reduce electricity usage in a home can include a number of different strategies. These include replacing inefficient lightbulbs with energy-efficient LEDs, unplugging appliances and electronics when not in use, using natural light instead of electric lights where possible, using a touch-free faucet to reduce water heater use, using a smart thermostat to monitor and adjust temperatures automatically, installing a solar hot water heater, and turning off electronics when not in use. Additionally, making sure to install and seal windows and doors correctly to reduce air leakage can also help reduce electricity usage."
},
{
"instruction": "Arrange the words in the given sentence to form a grammatically correct sentence.",
"input": "quickly the brown fox jumped",
"output": "The quick brown fox jumped quickly."
},
{
"instruction": "Analyze the given text for its tone.",
"input": "The world has been greatly impacted by the COVID-19 pandemic and it has drastically changed our lives.",
"output": "The tone of the text is one of concern and recognition of the dramatic effects of the COVID-19 pandemic on the world. It is an acknowledgement of the upheaval that the virus has caused and that our lives have been drastically changed."
},
{
"instruction": "Use the given data to calculate the median.",
"input": "[2, 3, 7, 8, 10]",
"output": "The median of the given data is 7."
},
{
"instruction": "Rewrite the given paragraph in a shorter, easier to understand form.",
"input": "Although it is generally accepted that the internet has allowed us to connect with people all over the world, there are still those people who are not familiar with its basic functions, who don\u2019t understand why it has become so commonplace, or what its true capabilities are.",
"output": "The internet has allowed us to connect globally, even though some people are unfamiliar with its functions, don't comprehend its widespread use, and don't know its full potential."
},
{
"instruction": "Design a logo for a website about recycling.",
"input": "",
"output": "The logo should feature a green motif that is recognizable and memorable, such as a recycle symbol or a stylized representation of a recycling bin. The logo should also include text that communicates the website's purpose, such as \"Recycling\" or \"Go Green\"."
},
{
"instruction": "Generate a poem that expresses joy.",
"input": "",
"output": "Joy flows through me like a river clear,\nBringing laughter and bliss to my soul to hear.\n\nThe world is bright and wonderful, I can see,\nMaking every moment something happy and free.\n\nMy heart feels light, my cares have flown,\nAs I discover what happiness gives me alone.\n\nI open my arms and accept the joy,\nBringing life to my song, so sweet like a toy.\n\nEvery moment is a precious gift,\nThat I savor and never let drift."
},
{
"instruction": "Convert the given equation into an algebraic expression.",
"input": "3x+5y=9",
"output": "3x + 5y - 9 = 0"
},
{
"instruction": "Brainstorm possible solutions to reduce water pollution.",
"input": "",
"output": "- Implement stricter regulations on industrial waste disposal\n- Increase the use of green technology in wastewater treatment\n- Provide incentives to businesses that reduce their water consumption and waste generation\n- Educate citizens about water conservation and pollution prevention\n- Offer recycling programs to reduce plastic waste\n- Replace disposable plastics with biodegradable alternatives\n- Improve sewer systems\n- Re-introduce native plant species\n- Foster artificial wetlands and green infrastructure\n- Provide filtration systems at water treatment plants\n- Implement best practices for agricultural runoff\n- Increase research and monitoring of water quality\n- Establish buffer zones between aquatic environments and land-based activities."
},
{
"instruction": "Explain why the given definition is wrong.",
"input": "A mole is an animal that lives underground.",
"output": "The definition is wrong because a mole is actually a small mammal that lives above ground and feeds on insects. It is most distinguishable by its long snout and wide, paddle-like feet. It does, however, often dig burrows in which it lives and shelters."
},
{
"instruction": "Variable x is defined as \u201c4x + 2y = 10\u201d. Find the value of x.",
"input": "",
"output": "The value of x is 2. To find the value, simplify the equation by subtracting 2y from both sides, giving 4x = 10; dividing both sides by 4, giving x = 2/4, which is equal to 2."
},
{
"instruction": "Write a short paragraph about the given topic.",
"input": "The importance of using renewable energy",
"output": "The use of renewable energy is growing rapidly in relevance and importance as the world looks towards solutions to combat climate change. Renewable energy sources, such as solar, wind, and hydropower, are sustainable and have a much lower environmental impact than traditional energy sources like coal and oil. Switching to renewable energy can reduce carbon emissions, improve air quality, lessen the dependence on non-renewable resources, and provide a stable and secure energy future. Renewable energy is essential for achieving a sustainable future and should be an important part of any country\u2019s energy portfolio."
},
{
"instruction": "Explain the concept of artificial intelligence in simple terms.",
"input": "",
"output": "Artificial Intelligence (AI) is the ability of machines and computers to make decisions and complete tasks similar to what humans can do. AI can learn from data, recognize patterns, and make predictions. AI technology can automate tedious and complex processes, helping to reduce human effort and errors, and enable more accurate and efficient decisions. AI can be used in a wide range of applications, from robotics and autonomous vehicles to healthcare and finance. It is increasingly becoming an integral part of everyday life."
},
{
"instruction": "Design an app for a delivery company.",
"input": "",
"output": "The app should allow customers to order items from local businesses and nearby store, place delivery requests with detailed delivery requirements, and track their orders. It should also allow customers to easily find and pay for services. The app should allow businesses to manage orders, track deliveries and drivers, set delivery boundaries, and set prices. It should also have features to help businesses promote their products and services, as well as options to provide customer feedback and support."
},
{
"instruction": "Summarize the given passage.",
"input": "A recent study showed that global climate change is one of the most important challenges facing the world today. The consequences of global warming include rising sea levels, extreme weather events and biodiversity loss. Climate change is caused by human activities such as burning fossil fuels, and if unchecked will have long-term and devastating impacts on the planet.",
"output": "A recent study revealed that global climate change is one of the world\u2019s most pressing issues. In addition to rising sea levels, extreme weather events and biodiversity loss, it is caused largely by human activities like burning fossil fuels. If left unchecked, climate change will have far-reaching and devastating consequences."
},
{
"instruction": "Extract the facts from the paragraph.",
"input": "Online education continues to become more popular for schools and students alike. Its advantages are generally lower costs, less commitment and the ability to study at a time, place and pace that suits the student.",
"output": "- Online education is becoming increasingly popular.\n- It has several advantages such as lower costs, less commitment and the ability to study at one\u2019s own time and pace."
},
{
"instruction": "Edit the following sentence to make it more concise.",
"input": "He ran to the bus stop in order to catch the bus that was due to arrive in five minutes.",
"output": "He ran to the bus stop, due to arrive in five minutes."
},
{
"instruction": "Generate a poem with 10 lines.",
"input": "",
"output": "The evening light shimmers on the shore\nSoftly the waves echoes around and more \nAs I bask in the sun, my worries are all gone\nThe sound of seagulls I now foolishly ignore \nGlistening sand, beckons me with a silent plea \nGlistening seawater, cool to the touch and refreshingly free \nThe evening brings peace, yet I can't find any \nBut maybe in the morning there'll be time for me\nMy bottled peacefulness, I uncork and pour \nThe sound of the ocean, lulls me even more \nAnd for just a moment I close my eyes and behold \nThe vastness of the ocean, to my soul I now unfold."
},
{
"instruction": "Convert from celsius to fahrenheit.",
"input": "Temperature in Celsius: 15",
"output": "Temperature in Fahrenheit: 59"
},
{
"instruction": "Arrange the given numbers in ascending order.",
"input": "2, 4, 0, 8, 3",
"output": "0, 2, 3, 4, 8"
},
{
"instruction": "Calculate the total surface area of a cube with a side length of 5 cm.",
"input": "",
"output": "Total surface area of the cube: 150 cm^2"
},
{
"instruction": "What is the force on a 1 kg mass due to the gravitational force?",
"input": "",
"output": "The force on a 1 kg mass due to the gravitational force is 9.8 N."
},
{
"instruction": "Provide one example for a cultural practice.",
"input": "",
"output": "An example of a cultural practice is the Japanese tea ceremony."
},
{
"instruction": "Given a set of numbers, find the maximum value.",
"input": "Set: {10, 3, 25, 6, 16}",
"output": "The maximum value is 25."
},
{
"instruction": "Give two examples of a liquid.",
"input": "",
"output": "Two examples of liquids are water and oil."
},
{
"instruction": "What is the product of 6 and 2?",
"input": "",
"output": "The product of 6 and 2 is 12."
},
{
"instruction": "What type of plant is a skunk cabbage?",
"input": "",
"output": "Skunk cabbage is a type of perennial flowering plant."
},
{
"instruction": "Convert the given binary number to its decimal equivalent.",
"input": "101101",
"output": "The decimal equivalent of 101101 is 45."
},
{
"instruction": "Name two types of desert biomes.",
"input": "",
"output": "Two types of desert biomes are xeric and subpolar deserts."
},
{
"instruction": "Given a sentence, convert it into passive voice.",
"input": "The dog barked at the alley cat.",
"output": "The alley cat was barked at by the dog."
},
{
"instruction": "Transform the following sentence into the passive voice",
"input": "I bought a book",
"output": "A book was bought by me."
},
{
"instruction": "Create a dialog between two people who are discussing a scientific phenomenon",
"input": "Hydropower",
"output": "Person 1: Did you know that hydropower is now being used to generate electricity?\nPerson 2: Really? That\u2019s incredible! How does it work?\nPerson: 1: Well, hydropower utilizes the energy of moving water to generate electricity. By capturing and harnessing the energy of falling or flowing water, hydropower can be used for efficient electricity generation."
},
{
"instruction": "Identify the most suitable adverb for the following sentence",
"input": "She works",
"output": "She works diligently."
},
{
"instruction": "Find the main idea of the following passage",
"input": "Climate change is an increasingly contentious global issue. It is already having a drastic effect on the environment and human lives. We are already seeing an increase in extreme weather events and rising sea levels, both of which have a major impact on the planet.",
"output": "The main idea of the passage is that climate change is a global issue that is having a detrimental effect on the environment and has caused an increase in extreme weather events and rising sea levels."
},
{
"instruction": "Analyze the tone of the following sentences",
"input": "I am so upset with you right now",
"output": "The tone of the sentences is angry and accusatory."
},
{
"instruction": "Construct an argument to defend the following statement",
"input": "Alternative energy sources are critical to solving the climate crisis",
"output": "Alternative energy sources are absolutely vital in order to mitigate the most detrimental impacts of climate change. As the world transitions away from fossil fuels and towards more sustainable sources of energy, such as wind, solar, and hydropower, we can reduce the number of greenhouse gases in the atmosphere and prevent further warming of our planet. Additionally, using renewable and alternative energies sources will create thousands of jobs and can help to create a healthy, stable economy. Investing in alternative energy sources is a sound decision and a necessary step if we want to effectively address the climate crisis."
},
{
"instruction": "Convert the following sentence into the present continuous tense",
"input": "He reads books",
"output": "He is reading books."
},
{
"instruction": "Give an example of a metaphor that uses the following object",
"input": "Stars",
"output": "The stars were twinkling diamonds in the night sky."
},
{
"instruction": "Describe the following person",
"input": "John",
"output": "John is a tall, dark-haired man with a kind smile and a twinkle in his eyes. He has a gentle, caring nature, and he always strives to understand others. He has a passion for learning and exploring new places, experiences and cultures."
},
{
"instruction": "Construct a mathematical problem with the following numbers",
"input": "21, 4",
"output": "If 21 pieces of candy are divided among 4 people, how many pieces of candy does each person get?"
},
{
"instruction": "Aim to reduce the following sentence without changing its meaning",
"input": "When he came in, he woke everyone up",
"output": "He woke everyone on entering."
},
{
"instruction": "Identify the conjunctions in the following sentence",
"input": "She wrote a letter and sealed it",
"output": "The conjunctions in the sentence are \"and\"."
},
{
"instruction": "Rewrite the following sentence in the third person",
"input": "I am anxious",
"output": "She is anxious."
},
{
"instruction": "Generate a list of business ideas for a food delivery service.",
"input": "",
"output": "- Offer discounts and loyalty programs for frequent customers.\n- Partner with local restaurants and promote their food.\n- Train delivery personnel to handle orders and provide good customer service.\n- Use mobile apps and websites for ordering.\n- Offer diverse payment options for customers.\n- Allow customers to customize their orders.\n- Pack food in recyclable and compostable packaging.\n- Launch a subscription model for regular customers.\n- Offer special services like food suggestions based on customers' preferences.\n- Provide contactless delivery and curbside pickup.\n- Provide catering services for large orders and special events.\n- Use online marketing and social media platforms to reach more customers.\n- Create incentives to encourage customers to try new dishes.\n- Create meal kits with all the necessary ingredients and a recipe.\n- Make use of food delivery robots and drones.\n- Offer a loyalty points system for customers.\n- Collaborate with local farmers to source produce and ingredients.\n- Offer vegetarian, vegan, and gluten-free options.\n- Allow customers to select the delivery time.\n- Implement AI-powered recommendations for customers."
},
{
"instruction": "Edit the following sentence to improve clarity and flow.",
"input": "The restaurant has great food though the prices are a bit hefty",
"output": "The restaurant offers great food but at a slightly higher price."
},
{
"instruction": "Imagine you are speaking with a customer who is unsatisfied with the product they bought from you. Construct a response that diffuses the situation.",
"input": "",
"output": "I'm sorry that you're not happy with your purchase. We want all of our customers to be satisfied, so I'd like to offer you a full refund, as well as a 15% discount for your next purchase. Is there anything else I can do to make this right for you?"
},
{
"instruction": "Explain the concept of a bubble sort algorithm to a non-technical audience.",
"input": "",
"output": "A bubble sort algorithm is a type of sorting algorithm that is used to sort elements in an array. It works by looking at each element of the array and comparing it to the next element. If the first element is bigger than the second element, they are swapped. This process is repeated until the whole array is sorted. This type of sorting is one of the simplest sorting algorithms, but it can be slow if the array has many elements."
},
{
"instruction": "Classify the following incident as a breach of protocol. Output 1 for breach, and 0 for no breach.",
"input": "Using a school laptop for personal use",
"output": "1"
},
{
"instruction": "Given the following input, construct a creative story.",
"input": "A magic bow and arrow",
"output": "Once upon a time, there lived a young girl named Alexa who was gifted with an incredible magical bow and arrow. Whenever she pulled back her bow and let an arrow fly, wherever it landed, something extraordinary happened. Flowers bloomed, oceans calmed, and the sun shone brighter. Alexa's bow and arrow were so powerful, that it could make even the most impossible things possible. One day, during a great storm, Alexa used her magical bow and arrow to bring calm and harmony to her hometown. She was praised and celebrated by the whole town, and she soon became a symbol of hope and peace."
},
{
"instruction": "Generate a list of methods to reduce food waste.",
"input": "",
"output": "- Shop smarter and only buy what you need.\n- Save leftovers for later and freeze them if necessary. \n- Monitor expiration dates and consume items before they go bad.\n- Participate in community or public food sharing initiatives.\n- Compost leftover food scraps.\n- Reuse containers, jars, and bags.\n- Make use of restaurant discounts to reduce over-ordering. \n- Donate foods that have short expiration dates to local food banks. \n- Buy more produce that is close to the expiration date and prepare it soon.\n- Order small portions while dining out.\n- Educate yourself and others about food waste.\n- Plan meals in advance and base your grocery list on the meals. \n- Store food correctly to reduce spoilage.\n- Make sure your fridge is at the right temperature.\n- Have a system to track leftovers in the fridge. \n- Eat all edible parts of food, including stems and skins.\n- Use creative recipes to use the entire food item.\n- Use food that would otherwise be thrown away for animal feed.\n- Take part in campaigns to make food sustainability an issue."
},
{
"instruction": "Propose an idea for a self-driving car.",
"input": "",
"output": "My idea for a self-driving car is to develop an AI system that uses machine learning to help the car recognize its environment. The AI system will also be able to learn from its mistakes and increase its accuracy. Additionally, the self-driving car will be able to detect potential hazards and warn the driver, or take corrective action if necessary. The car will also be equipped with an emergency button, in case the driver needs to take manual control of the vehicle. Furthermore, the car will be capable of automated parking and will be able to drive itself to a nearby charging station when the battery is low. Finally, the software will be able to connect with smartphones, so the user can access their navigation system and entertainment options even while on the move."
},
{
"instruction": "Explain the concept of a linear regression model using simple language.",
"input": "",
"output": "A linear regression model is a type of machine learning model that can be used to predict or estimate the value of a continuous numerical variable from a set of input variables. In this model, a line is fitted to a set of data points such that the sum of the squared distance of the data points from the line is minimized. This line of best fit can then be used to estimate the value of the output variable based on the values of the input variables."
},
{
"instruction": "Construct a list of tips to help reduce stress.",
"input": "",
"output": "- Take a time out and acquire some rest when feeling overwhelmed. \n- Make time for yourself and learn to relax. \n- Exercise regularly and get plenty of sleep. \n- Listen to music you like, or take a warm bath. \n- Stick to a healthy diet full of essential vitamins and minerals.\n- Reach out to friends and family for support.\n- Try aromatherapy or yoga. \n- Do something creative like drawing, painting, or writing. \n- Engage in activities that bring you joy and peace of mind. \n- Avoid drugs or excessive amounts of alcohol. \n- Practice deep breathing and progressive muscle relaxation. \n- Take up a new hobby to stay occupied. \n- Break big tasks down into smaller, more manageable tasks. \n- Practice positive self-talk to keep your morale high. \n- Talk to a therapist or trusted mentor if necessary. \n- Make time for fun activities and social events. \n- Prioritize tasks and create a weekly schedule. \n- Create a plan of action and identify solutions to problems. \n- Learn to forgive yourself and others."
},
{
"instruction": "Write a review of a recent movie you watched.",
"input": "Parasite (2019)",
"output": "I recently watched the movie Parasite, directed by Bong Joon-Ho, and I was absolutely blown away. This movie is a masterful blend of genres\u2014it's both a black comedy and a commentary on classism, with a twist ending that no one could see coming. The acting is fantastic, particularly Song Kang-ho as the head of the poor household, and the cinematography is stunning. The movie has a perfect balance of humor and thought-provoking drama, and it will leave you talking about the ending for days afterwards. Overall, I highly recommend Parasite; it is an exceptional movie and an experience you won't soon forget."
},
{
"instruction": "Create a Twitter post to promote your new product.",
"input": "Alisha's All Natural Jam",
"output": "Introducing Alisha's All Natural Jam, handmade with love using only the finest ingredients! Get ready for a delicious treat that will give your tastebuds a flavor explosion! Try our five amazing flavors: Strawberry, Blueberry, Peach, Raspberry, and Blackberry. Buy now and snack with the world! #snacktime #allnatural #jam #tastebuds #freshfruit #homemade #delicious #salttw"
},
{
"instruction": "Given the following input, classify the verb as transitive or intransitive.",
"input": "improve",
"output": "Transitive."
},
{
"instruction": "Generate a list of marketing strategies to promote a new mobile app.",
"input": "",
"output": "- Implement paid campaigns on social media platforms.\n- Utilize influencer marketing.\n- Reach out to tech bloggers and websites.\n- Share the app through word of mouth among friends.\n- Create demo videos and tutorials to explain the app's features.\n- Offer discounts and special incentives to early adopters.\n- Build a basic website to explain the app's purpose and features. \n- Take advantage of app store optimization techniques.\n- Send out emails and newsletters to inform new users about the app.\n- Aim for awards and good reviews on the app store.\n- Include the app link in your email signature.\n- Try promotional press releases and campaigns.\n- Encourage users to rate and review the app on the app store.\n- Leverage user-generated content to your advantage. \n- Integrate the app with existing or popular apps.\n- Hold giveaways or contests to drive engagement.\n- Feature the app on your company's website and blog.\n- Cross-promote the app with other apps, websites, and social media platforms. \n- Create promotional content such as blogs and podcasts."
},
{
"instruction": "Rewrite the sentence to provide more clarity and flow.",
"input": "Making the decision to rent a house was a wise choice",
"output": "Renting a house was a wise decision to make."
},
{
"instruction": "Give a description of the following customer segment.",
"input": "Online shoppers in the US aged between 18-25",
"output": "This customer segment consists of online shoppers in the US aged between 18-25. They are typically young adults who are tech-savvy and prefer to shop online for convenience and variety. They often shop for a variety of items, ranging from clothing to electronics and are comfortable using different payment methods such as credit or debit cards and digital wallets."
},
{
"instruction": "Design a logo for a mobile application.",
"input": "",
"output": "The logo design should be simple, modern, and unique. It should capture the essence of the application and communicate its functions. The logo should feature bold colors that are eye-catching, and the design should be adaptable to various sizes and platforms, such as websites and mobile devices."
},
{
"instruction": "Generate a list of country names in the western hemisphere.",
"input": "",
"output": "- Canada\n- United States \n- Mexico \n- Brazil\n- Argentina \n- Chile \n- Colombia \n- Venezuela \n- Cuba\n- Jamaica \n- Ecuador\n- Peru \n- Uruguay\n- Paraguay \n- Costa Rica \n- Panama \n- Honduras \n- Nicaragua\n- Guatemala"
},
{
"instruction": "Translate the following phrase into French.",
"input": "I miss you",
"output": "Je te manque."
},
{
"instruction": "Explain what an API is.",
"input": "",
"output": "API stands for Application Programming Interface. It is a set of instructions or programming instructions that allow two applications to communicate and exchange data with each other. APIs provide a way for developers to access and manipulate data and services offered by other applications or platforms. They are an essential part of modern web development and allow developers to develop complex applications and websites using modular components."
},
{
"instruction": "Compute the area of a rectangle with length 10cm and width 5cm.",
"input": "",
"output": "The area of the rectangle is 50 cm2."
},
{
"instruction": "Find the capital of Spain.",
"input": "",
"output": "The capital of Spain is Madrid."
},
{
"instruction": "Classify the following statement as true or false.",
"input": "The Supreme Court is the highest court in the US.",
"output": "True."
},
{
"instruction": "Design a database to record employee salaries.",
"input": "",
"output": "The database should contain fields for employee name, position, salary, and date. It should also include a field for the employee's manager, so that the salaries can be properly allocated across departments. The database should also be able to generate reports on salary expenses for departments or individuals."
},
{
"instruction": "Identify the theme of the following book.",
"input": "The book is about a small town in the Midwest and how people respond to a series of tragedies and unexpected events that shake their lives.",
"output": "The theme of the book is resilience in the face of unexpected tragedy, and how the people of a small town come together to overcome difficult times."
},
{
"instruction": "Assign each word in the sentence below to its part of speech.",
"input": "Kittens often scamper around excitedly.",
"output": "Kittens - Noun \noften - Adverb \nscamper - Verb \naround - Preposition \nexcitedly - Adverb"
},
{
"instruction": "Generate a password of 8 characters.",
"input": "",
"output": "e9gKyd2D"
},
{
"instruction": "Create a web page about robotics.",
"input": "",
"output": "The web page should include an introduction to robotics, covering what it is and how it can be applied in various industries. It should also include a section on the history of robotics, an overview of major advances in the field, and current trends. Information about the different types of robots and their applications should be included, as well as links to resources for further research."
},
{
"instruction": "What is the most commonly shared type of content on social media?",
"input": "",
"output": "The most commonly shared type of content on social media is images."
},
{
"instruction": "What is the main idea of this text?",
"input": "The robotics industry has become one of the fastest growing sectors in today\u2019s economy. Robotics technology is being applied in various industries and applications, such as manufacturing, healthcare, and defense.",
"output": "The main idea of this text is that robotics technology is being used in many different industries and applications and is a rapidly growing sector of today's economy."
},
{
"instruction": "Generate a list of present continuous verbs.",
"input": "",
"output": "Running, eating, sleeping, calling, texting, working, reading, watching, writing, listening, playing, cooking, shopping, dancing, studying, walking, driving, flying, jumping, laughing."
},
{
"instruction": "Think of a phrase or idiom containing the word \"sleep\".",
"input": "",
"output": "Sleep like a log."
},
{
"instruction": "Make a prediction about what will happen in the next paragraph.",
"input": "Mary had been living in the small town for many years and had never seen anything like what was coming.",
"output": "It appears that something extraordinary and unprecedented will happen in the next paragraph."
},
{
"instruction": "Generate a headline for the following article.",
"input": "This article discusses the future of renewable energy sources in the US.",
"output": "Renewable Energy Sources are the Future of the US"
},
{
"instruction": "What type of punctuation should be used at the end of the following sentence?",
"input": "Let's look at the bird",
"output": "A question mark (?) should be used at the end of the sentence."
},
{
"instruction": "Identify the incorrect word and suggest a better version.",
"input": "The waitress served a humonguous burger.",
"output": "The incorrect word is \"humonguous\" and it should be replaced with \"huge\"."
},
{
"instruction": "Rewrite this sentence using the third person point of view.",
"input": "I went to the store.",
"output": "He/She went to the store."
},
{
"instruction": "Change this sentence into the future tense.",
"input": "She walks to school.",
"output": "She will walk to school."
},
{
"instruction": "Summarize the following article in your own words.",
"input": "The internet has become a critical part of modern life and it has revolutionized the way we communicate and conduct business. It has enabled the spread of ideas and experiences quickly, globally, and cheaply.",
"output": "The internet has drastically changed our lives by allowing us to easily and quickly communicate and conduct business across the globe. It has enabled the rapid spread of ideas and experiences worldwide."
},
{
"instruction": "What is the meaning of the following idiom?",
"input": "It\u2019s raining cats and dogs",
"output": "The idiom \"it\u2019s raining cats and dogs\" means that it is raining heavily."
},
{
"instruction": "Generate a sentence using the following words in the correct order.",
"input": "house on fire",
"output": "The house was on fire."
},
{
"instruction": "Is the sentence grammatically correct?",
"input": "The boy was playing with her toys.",
"output": "Yes, the sentence is grammatically correct."
},
{
"instruction": "Classify the relationship between John and Mary.",
"input": "John and Mary are siblings.",
"output": "John and Mary are brother and sister."
},
{
"instruction": "Identify the language used in the given sentence.",
"input": "Il est incroyable.",
"output": "The sentence is in French."
},
{
"instruction": "Generate a summary of the given article.",
"input": "Between 1989 and 2019, the size of the U.S. economy, measured in terms of the gross domestic product (GDP), more than doubled. The growth was faster than in the prior two decades, driven in part by the dramatic expansion of the information technology sector in the 1990s and early 2000s, gains in worker productivity and strong consumer demand, and government investments in research and development.",
"output": "The U.S. economy more than doubled in size between 1989 and 2019, largely due to the rise of the information technology sector, improvements in worker productivity and consumer demand, and government investments. This growth was faster than in the prior two decades."
},
{
"instruction": "Conver the temperature from Fahrenheit to Celsius.",
"input": "94F",
"output": "34.4C"
},
{
"instruction": "Construct a phrase using the given words",
"input": "Pandemic, challenge, action",
"output": "Our action in the face of the pandemic is the ultimate challenge."
},
{
"instruction": "Find the synonyms of the following word: 'Tenacious'.",
"input": "",
"output": "Persistent, dogged, determined, resolute, steadfast, unwavering, unyielding, persistent, persistent."
},
{
"instruction": "Suggest a good restaurant.",
"input": "Los Angeles, CA",
"output": "In Los Angeles, CA, I suggest Rossoblu Italian restaurant."
},
{
"instruction": "Calculate the area of the triangle.",
"input": "Base: 5cm; Height: 6cm",
"output": "The area of the triangle is 15 cm\u00b2."
},
{
"instruction": "Rewrite the sentence with more descriptive words.",
"input": "The game is fun.",
"output": "The game is exhilarating and enjoyable."
},
{
"instruction": "Generate a creative birthday wish for a friend.",
"input": "",
"output": "Happy birthday! May this special day bring you joy, laughter, and all the blessings you deserve. Have a wonderful year ahead!"
},
{
"instruction": "Make the second sentence shorter.",
"input": "Winter is usually the coldest season of the year. Snow is a common element during winter.",
"output": "Winter is the coldest season, often accompanied by snow."
},
{
"instruction": "Find the solution to the quadratic equation.",
"input": "3x\u00b2 + 7x - 4 = 0",
"output": "The solution of the quadratic equation is x = -4 and x = 1/3."
},
{
"instruction": "Find the average of these three numbers.",
"input": "2, 5, 10",
"output": "The average of 2, 5, 10 is 5.67."
},
{
"instruction": "Rewrite the sentence in a different tense.",
"input": "He asked her to join him for lunch.",
"output": "He had asked her to join him for lunch."
},
{
"instruction": "Classify the following data with three labels.",
"input": "fjsklfjdsklfjsklfjsklfjs",
"output": "Label1: Character data\nLabel2: Alphabetical data\nLabel3: Non-alphabetical data"
},
{
"instruction": "Compose a five word sentence describing your day.",
"input": "",
"output": "Today was an amazing day."
},
{
"instruction": "Describe the following painting in one sentence.",
"input": "Attached Painting",
"output": "The painting depicts a sprawling landscape on a beautiful day with rolling hills and a river winding its way through the terrain."
},
{
"instruction": "Search the web and find the title of the longest novel.",
"input": "",
"output": "The title of the longest novel is \"Gordale\", written by Carolyn Redfearn."
},
{
"instruction": "Change the following sentence from the singular form to the plural form.",
"input": "The cat is drinking.",
"output": "The cats are drinking."
},
{
"instruction": "Compile a list of 5 US states located in the Mid West.",
"input": "",
"output": "The 5 US states located in the Midwest are Illinois, Indiana, Michigan, Ohio, and Wisconsin."
},
{
"instruction": "Analyze the following sentence and find the direct object.",
"input": "She wrote a book.",
"output": "The direct object of the sentence is \"book\"."
},
{
"instruction": "During the last member meeting, create a list of 5 ideas to improve the club.",
"input": "",
"output": "At the last member meeting, the following 5 ideas to improve the club were suggested: 1. Increase the frequency of meetings, 2. Create a mentorship program, 3. Develop a website to advertise the club, 4. Create a budget to finance activities, 5. Offer incentives to encourage participation."
},
{
"instruction": "Edit the following sentence to correct the grammar and syntax errors",
"input": "You was late to the party",
"output": "You were late to the party."
},
{
"instruction": "Create a questions that can be answered using the following sentence.",
"input": "\"It was a beautiful day\"",
"output": "What type of day was it?"
},
{
"instruction": "Write a simple definition of the word \"economics\".",
"input": "",
"output": "Economics is the study of how society uses its limited resources to produce and distribute goods and services."
},
{
"instruction": "Find the cutoff score for successful completion of the exam",
"input": "The exam had 100 multiple-choice questions with 4 options each",
"output": "The cutoff score for successful completion of the exam is 75."
},
{
"instruction": "Generate a topic sentence to introduce the following text.",
"input": "Amidst increasing violence in the region, many civilians are fleeing their homes in search of safety.",
"output": "Due to the escalating tensions and violence, countless civilians are being forced from their homes in fear for their lives."
},
{
"instruction": "Write a function to calculate the factorial of a given number.",
"input": "",
"output": "def factorial(n):\n if n == 0:\n return 1\n return n * factorial(n-1)"
},
{
"instruction": "Write a function to convert a given string to uppercase.",
"input": "",
"output": "def toUpperCase(str):\n return str.upper()"
},
{
"instruction": "Extract the positive integers from an array?",
"input": "arr = [5,-2,8,-7,3,-1,0,5]",
"output": "[5, 8, 3, 5]"
},
{
"instruction": "Calculate the square root of a given number.",
"input": "",
"output": "def sqrt(n):\n low = 0\n high = n\n \n while low <= high:\n mid = (low + high) // 2\n if mid * mid == n:\n return mid\n elif mid * mid < n:\n low = mid + 1\n else:\n high = mid - 1\n \n return low - 1"
},
{
"instruction": "Reverse a linked list.",
"input": "",
"output": "def reverse(head): \n prev = None\n cur = head \n\n while cur:\n next = cur.next\n cur.next = prev \n prev = cur \n cur = next\n head = prev\n \n return head"
},
{
"instruction": "Compute the longest increasing subsequence of a given array?",
"input": "arr = [7, 10, 8, 11, 9, 5]",
"output": "[7, 8, 9, 11]"
},
{
"instruction": "Design an algorithm to find the maximum profit of a stock buy and sell?",
"input": "",
"output": "def maxProfit(prices):\n min_price = float('inf')\n max_profit = 0\n\n for price in prices:\n min_price = min(min_price, price) \n profit = price - min_price\n max_profit = max(max_profit, profit)\n\n return max_profit"
},
{
"instruction": "Given two strings, check whether one string is a rotation of another?",
"input": "s1 = \u2018waterbottle\u2019\ns2 = \u2018erbottlewat\u2019",
"output": "def isRotation(s1, s2):\n if len(s1) != len(s2):\n return False\n\n s3 = s1 + s1 \n return s3.find(s2) != -1"
},
{
"instruction": "Given an array of integers, return the first repeating element.",
"input": "arr = [3, 6, 7, 1, 4, 6, 7]",
"output": "6"
},
{
"instruction": "Find the two non-repeating elements in an array of repeating elements?",
"input": "arr = [2, 3, 7, 9, 11, 2, 3, 11]",
"output": "7, 9"
},
{
"instruction": "Given a binary tree, check if it is a binary search tree?",
"input": "",
"output": "def isBST(root):\nif root is None : \n\treturn True\n\nif root.left is not None and root.left.val > root.val: \n\treturn False\n\nif root.right is not None and root.right.val < root.val: \n\treturn False\n\nreturn isBST(root.left) and isBST(root.right)"
},
{
"instruction": "Find the maximum profit that can be earned from a given sequence of transactions?",
"input": "arr = [100, 180, 260, 310, 40, 535, 695]",
"output": "865"
},
{
"instruction": "Calculate the amount of money in a bank account with an initial $100 deposit and an interest rate of 6%, compounded annually",
"input": "",
"output": "At the end of year 1, the amount in the bank account would be $106. In year 2, the amount would be $112.36 and at the end of the 10th year, the amount would be $160.54. This illustrates the power of compound interest."
},
{
"instruction": "Give me a detailed overview of the framework of a web service.",
"input": "",
"output": "A web service should be composed of several components: a client application, a set of API (application programming interface) to interact with the client, a database to store data, a server to run the service, and a client-side application to process requests. The API should be designed with RESTful architecture and the server should be built with a language like Python or Ruby. The database should be tailored to the data that needs to be stored, and the client-side application should handle the response from the API. Additionally, for security purposes, certain requests should be encrypted or secured using authentication mechanisms."
},
{
"instruction": "Create a timeline describing the history of the internet",
"input": "",
"output": "1968: ARPANET, the first internet network, is created.\n 1973: TCP/IP is created, allowing computers to communicate with each other.\n 1983: DNS is created to simplify the communication process. \n 1989: The World Wide Web is created, giving birth to the public internet.\n 1995: JavaScript is developed, introducing dynamic content to the web.\n 2001: Wikipedia is launched, providing an online encyclopedia.\n 2004: Facebook is launched, growing quickly to 1 billion users.\n 2007: Apple introduces the iPhone, making mobile devices commonplace.\n 2009: Cloud computing begins to revolutionize data storage. \n 2011: HTML5 is released, encouraging richer web experiences.\n 2013: The Internet of Things (IoT) emerges, connecting dozens of durable devices. \n 2015: \"Voice first\" technology, such as Amazon's Alexa, launches.\n 2018: 5G networks begin rolling out, allowing for faster connection speeds.\n 2020: AI begins to be used to power home assistants like Alexa."
},
{
"instruction": "Paraphrase the following sentence",
"input": "The scientists conducted a rigorous experiment",
"output": "The scientists ran a thorough experiment."
},
{
"instruction": "Develop a web-based application that does the following",
"input": "Sorts images according to category",
"output": "This web-based application should use a database to store the images and associated categorization information. The application should allow users to upload images and assign tags to them. Additionally, there should be an interface which provides the ability to search and filter the images by tags. Lastly, the application should use computer vision techniques, like object detection and image classification, to sort the images into categories."
},
{
"instruction": "Describe the pros and cons of the following policy",
"input": "Providing free college education",
"output": "The pros of providing free college education include making education more accessible to individuals of all backgrounds, enhancing access to skilled professionals, providing equal opportunity for all, and boosting the economy. On the other hand, the drawbacks could include an increase in taxation and a greater burden on the government, an excessive influx of graduates in certain professions, a decrease in the quality of education, and an increased risk of overcrowding in certain universities."
},
{
"instruction": "Design a post for a social media account to promote the following product",
"input": "Fresh fruit smoothie",
"output": "Introducing our new and extra refreshing fruit smoothie! Made from only the freshest fruits, this smoothie is a delicious way to stay energized and get your daily dose of nutrients. Get yours today! #smoothie #fruitsmoothie #refreshing"
},
{
"instruction": "Summarize the following article",
"input": "https://www.nytimes.com/2010/07/05/business/global/05phone.html",
"output": "This article discusses mobile phones and their unprecedented influence on different aspects of the global economy. After analyzing data from several countries, the article found that mobile phones have enabled economic growth, improved access to financial services, and created a platform for innovation. Mobile phones have also helped reduce poverty and corruption, and have opened the door for new business models."
},
{
"instruction": "Create a job description for the following role",
"input": "Data Analytics Consultant",
"output": "We are looking for a data analytics consultant to support our operations. The consultant will develop strategies to understand, interpret, and act on data insights. The consultant should have experience in data visualization and dashboard development, machine learning, and communication of data insights to internal and external stakeholders. The ideal candidate will have excellent problem-solving skills, be detail-oriented, and be able to work confidently with stakeholders of varying levels."
},
{
"instruction": "Identify the correct order for the following commands",
"input": "pack, prepare, travel",
"output": "The correct order is: prepare, pack, travel."
},
{
"instruction": "Create a survey question to measure customer satisfaction",
"input": "",
"output": "On a scale of 1-5, how satisfied are you with our services?"
},
{
"instruction": "Create a list of 10 different animals",
"input": "",
"output": "1. Tiger\n2. Elephant\n3. Chimpanzee\n4. Gorilla\n5. Wolf \n6. Fox\n7. Kangaroo\n8. Hedgehog\n9. Porcupine\n10. Beave."
},
{
"instruction": "Suggest a good idea for a family photoshoot.",
"input": "",
"output": "How about a photoshoot in a park or garden with a picnic theme? Have the family dress up in fun and whimsical clothes and poses, and use props like vintage furniture, outdoor accessories, and decorations. Another idea could be a photoshoot in a game hall or arcade with the family playing games dressed up in matching costumes."
},
{
"instruction": "Create a response for a customer's email about a refund issue.",
"input": "Dear [Company],\n\nI recently purchased a product from your store and I'm disappointed with the quality. I would like to request a refund.",
"output": "Dear [Customer],\n\nThank you for bringing this to our attention. We apologize for the issue with the product. We will process your refund request as soon as possible. Please let us know if we can help with anything else. Thank you for your understanding. Kind regards, [Company]"
},
{
"instruction": "Summarize the given news article in one sentence.",
"input": "In the latest budget announcement, the Chancellor has promised to introduce a new employment allowance to help employees of small businesses.",
"output": "The government has announced an employment allowance to help employees of small businesses in their most recent budget announcement."
},
{
"instruction": "Provide five adjectives that describe a particular animal.",
"input": "Lion",
"output": "Regal, mighty, majestic, brave, intelligent."
},
{
"instruction": "Rearrange the words to create a complete sentence.",
"input": "Underwater creatures are fascinating",
"output": "Fascinating are underwater creatures."
},
{
"instruction": "Write a story that begins with the following sentence.",
"input": "She opened the door to find a tall figure cloaked in shadows.",
"output": "She opened the door with a trembling hand, expecting to find her friend. Instead, a tall figure cloaked in shadows stood in the doorway. Startled by the unexpected presence, she stepped back and her heart pounded. The figure made no sound and stood still, seemingly lost in thought. She wanted to speak, but before she could utter a word, the figure stepped forward, revealing a single rose in its hand. Taking the rose, she felt an overwhelming sense of something unknown, something of which she could not explain."
},
{
"instruction": "Convert the given sentence into active voice.",
"input": "One hundred and fifty books were sold.",
"output": "Someone sold one hundred and fifty books."
},
{
"instruction": "Explain why a given topic is important.",
"input": "Environmental protection",
"output": "Environmental protection is essential for maintaining the health of our planet for future generations. Human activities such as emissions, farming, and deforestation are contributing to climate change, air and water pollution, reduction in biodiversity, and other environmental threats. By placing a priority on environmental protection, we can limit the speed of environmental damage and conserve natural resources for our own and future generations' use."
},
{
"instruction": "Describe the sound of the given object.",
"input": "Wind chime",
"output": "A wind chime produces a peaceful and melodic sound, with a mix of high-pitched and low-pitched tones. The sound of the chime is like a gentle breeze, reflecting the calming atmosphere of a light summer day."
},
{
"instruction": "Rewrite the given sentence using a different but similar word.",
"input": "She partook in the event.",
"output": "She participated in the event."
},
{
"instruction": "Classify the given input as either a poem, story, or song.",
"input": "Once upon a midnight dreary, while I pondered, weak and weary.",
"output": "Poem"
},
{
"instruction": "Create a title for the following description.",
"input": "A story about a journey of self-discovery by a young girl.",
"output": "The Road to Finding Myself"
},
{
"instruction": "Rewrite the given sentence in a more formal tone.",
"input": "I had to go to the store real quick.",
"output": "I had to make a quick trip to the store."
},
{
"instruction": "Write a few sentences about a given historical figure.",
"input": "Amelia Earhart",
"output": "Amelia Earhart was an American aviation pioneer and a renowned aviation figure. She was the first female aviator to fly solo across the Atlantic Ocean. Despite tragic circumstances, she is remembered as an inspiring role model and a symbol of courage, adventure, and determination. Her groundbreaking achievements pushed the boundaries of gender roles and inspired many."
},
{
"instruction": "Generate a list of questions related to a given topic.",
"input": "Innovation",
"output": "1. What are the most current trends in the field of innovation? \n2. What aspects of innovation offer the most potential for success? \n3. What challenges have businesses recently faced related to innovation? \n4. What strategies can businesses use to drive innovation? \n5. How have technological advances helped shape new models of innovation? \n6. What unique approaches to innovation have proven successful? \n7. What principles guide successful innovation projects? \n8. What opportunities for innovation exist in emerging markets?\n9. In what ways does collaboration foster innovation? \n10. How can ideas be leveraged to promote innovation?"
},
{
"instruction": "Create a slogan for a given product.",
"input": "Healthy snack",
"output": "A bite of goodness - Healthy snacks for your whole family!"
},
{
"instruction": "Categorize the following text into one of the two sentiment classes: positive or negative.",
"input": "I didn't like the product very much because it was too slow and not user friendly.",
"output": "Negative."
},
{
"instruction": "Summarize the paragraph into a sentence.",
"input": "When buying furniture, it's important to take into account the overall look and feel of the space. That means that you should ask yourself if the pieces you are selecting are a good match for the existing furnishings as well as what you imagine the overall style to be.",
"output": "Think about the existing furnishings and desired style when selecting furniture."
},
{
"instruction": "Make the following sentence more concise.",
"input": "I have a really bad cold and it is making me feeling really miserable.",
"output": "I have a bad cold and feeling miserable."
},
{
"instruction": "Transform the following sentence into a yes/no question.",
"input": "It is going to rain tomorrow.",
"output": "Is it going to rain tomorrow?"
},
{
"instruction": "Compose a tweet that addresses the issue of environmental degradation.",
"input": "",
"output": "We can't keep wasting resources and ignoring #EnvironmentalDegradation. Let's make our planet greener and healthier for future generations. #savetheenvironment #EnvironmentalProtection"
},
{
"instruction": "Replace the underlined words with appropriate synonyms.",
"input": "The robbers snitched on their partners.",
"output": "The robbers divulged on their partners."
},
{
"instruction": "Correct the grammatical errors in the sentence.",
"input": "She come to the store for supplies.",
"output": "She came to the store for supplies."
},
{
"instruction": "Identify the type of the relationship between the two words in the sentence.",
"input": "The car passed the truck.",
"output": "The relationship between the two words in the sentence is comparison."
},
{
"instruction": "Compose an informative sentence explaining the given term.",
"input": "Green bonds",
"output": "Green bonds are debt instruments issued to finance projects aimed at mitigating climate change and promoting sustainable development."
},
{
"instruction": "Rewrite the following sentence without changing the meaning.",
"input": "The sales report was not accurate.",
"output": "The sales report was inaccurate."
},
{
"instruction": "What's the output of this code?",
"input": "x = [1, 2, 3, 4]\ny = [i**2 for i in x]",
"output": "y = [1, 4, 9, 16]"
},
{
"instruction": "Write a short review for the novel \"The Catcher in the Rye\".",
"input": "",
"output": "I recently read \u201cThe Catcher in the Rye\u201d and was impressed by J.D. Salinger's ability to capture the struggles of teenage life. This coming of age tale tells the story of Holden Caulfield's journey to adulthood, as he navigates the issues of identity, alienation, and despair. The novel manages to shed light on difficult topics through its humorous and vivid writing, making it an enjoyable and thought-provoking read."
},
{
"instruction": "Identify the following animal.",
"input": "It has thick fur, a long tail, and pointed ears.",
"output": "The animal is a fox."
},
{
"instruction": "Describe the impact of the coronavirus on the economy.",
"input": "",
"output": "The coronavirus has had a major impact on the economy, causing disruptions in industries such as tourism, travel, hospitality, retail, and more. These industries have seen sharp decreases in activity, resulting in surging unemployment levels, a weakened stock market, and decreased consumer spending. Business closures have been rampant, and some companies have even been forced to permanently close their doors. As a result, fiscal and monetary policies have been embraced by governments to help stem the economic downturn."