forked from rasbt/LLMs-from-scratch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstruction-data.json
5502 lines (5502 loc) · 199 KB
/
instruction-data.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": "Evaluate the following phrase by transforming it into the spelling given.",
"input": "freind --> friend",
"output": "The spelling of the given phrase \"freind\" is incorrect, the correct spelling is \"friend\"."
},
{
"instruction": "Edit the following sentence for grammar.",
"input": "He go to the park every day.",
"output": "He goes to the park every day."
},
{
"instruction": "Convert 45 kilometers to meters.",
"input": "",
"output": "45 kilometers is 45000 meters."
},
{
"instruction": "Rewrite this sentence to start with 'Although': Despite the rain, they went for a walk.",
"input": "",
"output": "Although it was raining, they went for a walk."
},
{
"instruction": "What are the first 10 square numbers?",
"input": "",
"output": "1, 4, 9, 16, 25, 36, 49, 64, 81, 100."
},
{
"instruction": "Suggest a more formal synonym for \"happy.\"",
"input": "",
"output": "A more formal synonym for \"happy\" is \"content.\""
},
{
"instruction": "Translate the following sentence into French.",
"input": "Where is the nearest restaurant?",
"output": "O\u00f9 est le restaurant le plus proche?"
},
{
"instruction": "Look up the melting point of iron.",
"input": "",
"output": "The melting point of iron is approximately 1538 degrees Celsius or 2800 degrees Fahrenheit."
},
{
"instruction": "Rewrite the following sentence so that it is in active voice.",
"input": "The cake was baked by Sarah.",
"output": "Sarah baked the cake."
},
{
"instruction": "Convert the active sentence to passive: 'The manager approved the project.'",
"input": "",
"output": "The project was approved by the manager."
},
{
"instruction": "What is the contraction for \"will not\"?",
"input": "",
"output": "The contraction for \"will not\" is \"won't\"."
},
{
"instruction": "Rewrite the following sentence to remove redundancy.",
"input": "The actual fact is that he was late.",
"output": "The fact is that he was late."
},
{
"instruction": "What is the capital of Indonesia?",
"input": "",
"output": "The capital of Indonesia is Jakarta."
},
{
"instruction": "Provide a synonym for 'bright'.",
"input": "",
"output": "A synonym for 'bright' is 'radiant'."
},
{
"instruction": "Suggest an alternate word for 'happy'.",
"input": "",
"output": "joyful."
},
{
"instruction": "Name the device that measures atmospheric pressure.",
"input": "",
"output": "The device that measures atmospheric pressure is a barometer."
},
{
"instruction": "List two antonyms for 'intelligent.'",
"input": "",
"output": "Two antonyms for 'intelligent' are 'stupid' and 'dumb.'"
},
{
"instruction": "What is the pH of a neutral solution at 25\u00b0C?",
"input": "",
"output": "The pH of a neutral solution at 25\u00b0C is 7."
},
{
"instruction": "Rewrite the following sentence to use a metaphor",
"input": "'Her eyes are like stars.'",
"output": "Her eyes are stars in the night sky."
},
{
"instruction": "Name three types of biomes.",
"input": "",
"output": "Forest, desert, and grassland."
},
{
"instruction": "Identify the climax in 'Romeo and Juliet'.",
"input": "",
"output": "The climax of 'Romeo and Juliet' occurs when Romeo kills Tybalt, leading to his banishment and the subsequent tragic events."
},
{
"instruction": "Rewrite the sentence using a simile.",
"input": "The dog is very loyal.",
"output": "The dog is as loyal as a soldier."
},
{
"instruction": "Rewrite the sentence using an idiom.",
"input": "The storm started suddenly.",
"output": "The storm came out of the blue."
},
{
"instruction": "Convert 10 feet to meters.",
"input": "",
"output": "10 feet is equal to approximately 3.048 meters."
},
{
"instruction": "Convert this sentence to passive voice",
"input": "The chef cooked a delicious meal.",
"output": "A delicious meal was cooked by the chef."
},
{
"instruction": "What is the plural form of 'mouse'?",
"input": "",
"output": "The plural form of 'mouse' is 'mice'."
},
{
"instruction": "What is the opposite of 'thin'?",
"input": "",
"output": "The opposite of 'thin' is 'thick'."
},
{
"instruction": "What is the state capital of California?",
"input": "",
"output": "The state capital of California is Sacramento."
},
{
"instruction": "Translate 'family' into Italian.",
"input": "",
"output": "The Italian word for 'family' is 'famiglia'."
},
{
"instruction": "What is the past tense of 'draw'?",
"input": "",
"output": "The past tense of 'draw' is 'drew.'"
},
{
"instruction": "Alter the content of the sentence to use the past tense.",
"input": "The ship sails at dawn.",
"output": "The ship sailed at dawn."
},
{
"instruction": "Generate a sentence that follows the pattern: 'Rarely do I _____'",
"input": "",
"output": "Rarely do I eat fast food."
},
{
"instruction": "What is the atomic number of oxygen?",
"input": "",
"output": "The atomic number of oxygen is 8."
},
{
"instruction": "What is a synonym of 'luminous'?",
"input": "",
"output": "A synonym for 'luminous' is 'bright'."
},
{
"instruction": "What is the capital of Brazil?",
"input": "",
"output": "The capital of Brazil is Bras\u00edlia."
},
{
"instruction": "List the ingredients required to make a basic salad.",
"input": "",
"output": "Ingredients for a basic salad typically include lettuce, tomatoes, cucumbers, and dressing."
},
{
"instruction": "Rewrite the sentence using a synonym.",
"input": "It's hot outside.",
"output": "It's scorching outside."
},
{
"instruction": "Provide a synonym for 'happy'.",
"input": "",
"output": "A synonym for 'happy' is 'content'."
},
{
"instruction": "What is the derivative of x^3 + 5x^2 - 3x + 7 with respect to x?",
"input": "",
"output": "3x^2 + 10x - 3."
},
{
"instruction": "Identify the point of view used in the sentence.",
"input": "She felt a sense of relief.",
"output": "The point of view used in the sentence is third person."
},
{
"instruction": "Generate a sentence using the word 'gregarious'.",
"input": "",
"output": "He was gregarious, making friends wherever he went."
},
{
"instruction": "What is the atomic number of carbon?",
"input": "",
"output": "The atomic number of carbon is 6."
},
{
"instruction": "What is the formula for area of a triangle?",
"input": "",
"output": "The formula for the area of a triangle is 1/2 * base * height."
},
{
"instruction": "Sort the following list in alphabetical order.",
"input": "Zebra, Elephant, Crocodile",
"output": "Crocodile, Elephant, Zebra"
},
{
"instruction": "Reverse the order of the given phrase.",
"input": "Moon and stars",
"output": "Stars and moon"
},
{
"instruction": "What is a synonym for 'begin'?",
"input": "",
"output": "A synonym for 'begin' is 'commence'."
},
{
"instruction": "Find the next 3 terms in the following sequence: 4, 8, 12, 16.",
"input": "",
"output": "The next three terms in the sequence are: 20, 24, 28."
},
{
"instruction": "What is the melting point of aluminum in Celsius?",
"input": "",
"output": "The melting point of aluminum is 660.3 degrees Celsius."
},
{
"instruction": "What is an antonym of 'advanced'?",
"input": "",
"output": "An antonym of 'advanced' is 'primitive'."
},
{
"instruction": "Name an antonym for 'happiness.'",
"input": "",
"output": "An antonym for 'happiness' is 'sadness.'"
},
{
"instruction": "Identify the correct spelling of the following word.",
"input": "Ocassion",
"output": "The correct spelling is 'Occasion.'"
},
{
"instruction": "What type of figurative language is used in 'She is the apple of my eye'?",
"input": "",
"output": "The figurative language used is a metaphor."
},
{
"instruction": "Correct the spelling error in the sentence.",
"input": "I will atend the meeting tomorrow.",
"output": "The correct spelling is 'attend', not 'atend'."
},
{
"instruction": "Arrange the following events in chronological order: World War II, French Revolution, Invention of the Telephone.",
"input": "",
"output": "1. French Revolution\n2. Invention of the Telephone\n3. World War II"
},
{
"instruction": "What is the normal body temperature in Celsius?",
"input": "",
"output": "The normal body temperature is approximately 37 degrees Celsius."
},
{
"instruction": "What is the cube of 4?",
"input": "",
"output": "The cube of 4 is 64."
},
{
"instruction": "Classify the following into vegetables, animals, and metals.",
"input": "Broccoli, Iron, Elephant",
"output": "Vegetables: Broccoli\nMetals: Iron\nAnimals: Elephant"
},
{
"instruction": "Translate 'I am learning Spanish' into Spanish.",
"input": "",
"output": "Estoy aprendiendo espa\u00f1ol."
},
{
"instruction": "Edit the following sentence for clarity and style.",
"input": "He response to the issue was quick.",
"output": "His response to the issue was quick."
},
{
"instruction": "What is the melting point of gold in Celsius?",
"input": "",
"output": "The melting point of gold is 1064 degrees Celsius."
},
{
"instruction": "Provide a synonym for 'fast'.",
"input": "",
"output": "A synonym for 'fast' is 'quick'."
},
{
"instruction": "Translate 'What is your name?' into French.",
"input": "",
"output": "The French translation of 'What is your name?' is 'Comment vous appelez-vous?'."
},
{
"instruction": "Rewrite the sentence using a simile.",
"input": "She is very graceful.",
"output": "She is as graceful as a swan."
},
{
"instruction": "What is an antonym of 'soft'?",
"input": "",
"output": "hard."
},
{
"instruction": "What are the first 5 multiples of 4?",
"input": "",
"output": "4, 8, 12, 16, 20."
},
{
"instruction": "What is an antonym of 'happy'?",
"input": "",
"output": "An antonym of 'happy' is 'sad.'"
},
{
"instruction": "What type of galaxy is the Andromeda Galaxy?",
"input": "",
"output": "The Andromeda Galaxy is a spiral galaxy."
},
{
"instruction": "Rewrite the sentence using an idiom.",
"input": "She is very punctual.",
"output": "She is always on time."
},
{
"instruction": "Generate a sentence using the word 'inevitable'.",
"input": "",
"output": "The collapse of the company was inevitable due to poor management."
},
{
"instruction": "Rewrite the sentence using a simile.",
"input": "He runs very fast.",
"output": "He runs as fast as a cheetah."
},
{
"instruction": "What is the chemical symbol for aluminum?",
"input": "",
"output": "Al."
},
{
"instruction": "Name the process by which water changes from liquid to gas.",
"input": "",
"output": "The process by which water changes from liquid to gas is called evaporation."
},
{
"instruction": "What is the melting point of gold?",
"input": "",
"output": "The melting point of gold is approximately 1064 degrees Celsius."
},
{
"instruction": "Rewrite the sentence using a different adjective.",
"input": "She has a fast car.",
"output": "She has a speedy car."
},
{
"instruction": "Add the correct verb to the sentence.",
"input": "The students _________ the quiz answers.",
"output": "The students discussed the quiz answers."
},
{
"instruction": "Rewrite the sentence using an idiom.",
"input": "He is very lucky.",
"output": "He has a stroke of luck."
},
{
"instruction": "Calculate the volume of a cylinder with a radius of 4 cm and a height of 10 cm.",
"input": "",
"output": "The volume of the cylinder is approximately 502.65 cubic centimeters."
},
{
"instruction": "Edit the following sentence to correct any grammar errors.",
"input": "They was waiting for the bus all day.",
"output": "They were waiting for the bus all day."
},
{
"instruction": "Generate a sentence using the word 'serendipity.'",
"input": "",
"output": "Finding the hidden beach was pure serendipity."
},
{
"instruction": "What type of bond is formed when one atom donates an electron to another atom?",
"input": "",
"output": "The type of bond formed when one atom donates an electron to another atom is an ionic bond."
},
{
"instruction": "Create a palindrome using the word 'racecar'.",
"input": "",
"output": "A racecar."
},
{
"instruction": "What is the square of 12?",
"input": "",
"output": "The square of 12 is 144."
},
{
"instruction": "Insert the correct punctuation at the provided places in the following sentence.",
"input": "Where are you going",
"output": "Where are you going?"
},
{
"instruction": "Provide a synonym for 'strong'.",
"input": "",
"output": "A synonym for 'strong' is 'powerful'."
},
{
"instruction": "Name a mammal that lays eggs.",
"input": "",
"output": "A mammal that lays eggs is the platypus."
},
{
"instruction": "Name three types of precipitation.",
"input": "",
"output": "Three types of precipitation are rain, snow, and sleet."
},
{
"instruction": "Name the process by which skin repairs itself after a cut.",
"input": "",
"output": "The process by which skin repairs itself after a cut is called regeneration."
},
{
"instruction": "Generate a sentence using the word 'ephemeral'.",
"input": "",
"output": "The beauty of the sunset was ephemeral, fading from the sky within moments."
},
{
"instruction": "Generate a sentence using the word 'harmony'.",
"input": "",
"output": "The choir's voices blended in perfect harmony."
},
{
"instruction": "Rewrite the sentence using a metaphor.",
"input": "The storm is very strong.",
"output": "The storm is a beast."
},
{
"instruction": "What type of bond is formed when electrons are shared between atoms?",
"input": "",
"output": "The type of bond formed when electrons are shared between atoms is a covalent bond."
},
{
"instruction": "Convert 3 meters to centimeters.",
"input": "",
"output": "3 meters is 300 centimeters."
},
{
"instruction": "Arrange these technological inventions in chronological order: Telephone, Internet, Printing Press.",
"input": "",
"output": "1. Printing Press\n2. Telephone\n3. Internet"
},
{
"instruction": "What is the main ingredient in traditional French baguettes?",
"input": "",
"output": "The main ingredient in traditional French baguettes is wheat flour."
},
{
"instruction": "Classify the following text into either fiction or non-fiction.",
"input": "The documentary covers the impact of climate change on polar bears.",
"output": "Non-fiction."
},
{
"instruction": "What is the boiling point of acetone in Celsius?",
"input": "",
"output": "The boiling point of acetone is 56 degrees Celsius."
},
{
"instruction": "What is the capital of South Korea?",
"input": "",
"output": "The capital of South Korea is Seoul."
},
{
"instruction": "Convert 300 seconds to minutes.",
"input": "",
"output": "300 seconds is equal to 5 minutes."
},
{
"instruction": "Name a novel written by Jane Austen.",
"input": "",
"output": "One of the novels written by Jane Austen is 'Pride and Prejudice'."
},
{
"instruction": "Provide a synonym for 'kind'.",
"input": "",
"output": "A synonym for 'kind' is 'benevolent'."
},
{
"instruction": "Name a synonym for \"happiness.\"",
"input": "",
"output": "A synonym for \"happiness\" is \"joy.\""
},
{
"instruction": "Convert 8 kilometers to meters.",
"input": "",
"output": "8 kilometers is 8000 meters."
},
{
"instruction": "Edit the sentence.",
"input": "She enjoys reading books.",
"output": "She enjoys reading books."
},
{
"instruction": "Generate a question based on the following statement.",
"input": "Plants require sunlight to grow.",
"output": "Why do plants require sunlight to grow?"
},
{
"instruction": "What is the capital of the Philippines?",
"input": "",
"output": "The capital of the Philippines is Manila."
},
{
"instruction": "Name the process by which water cycles from the ground to the atmosphere and back.",
"input": "",
"output": "The process is called the water cycle."
},
{
"instruction": "Define the term 'ecosystem'.",
"input": "",
"output": "An ecosystem is a community of interacting organisms and their physical environment."
},
{
"instruction": "Convert the following verb to its past participle form: 'see'",
"input": "",
"output": "The past participle form of 'see' is 'seen'."
},
{
"instruction": "What is the highest mountain in the world?",
"input": "",
"output": "The highest mountain in the world is Mount Everest."
},
{
"instruction": "Convert the number 5 from decimal to binary.",
"input": "",
"output": "The binary equivalent of the decimal number 5 is 101."
},
{
"instruction": "What is the chemical formula for carbonic acid?",
"input": "",
"output": "The chemical formula for carbonic acid is H2CO3."
},
{
"instruction": "What is a synonym of 'optimistic'?",
"input": "",
"output": "A synonym for 'optimistic' is 'hopeful'."
},
{
"instruction": "Change the sentence \"This should not have happened\" into a declarative sentence.",
"input": "",
"output": "This should have happened differently."
},
{
"instruction": "Given a sentence, convert it into indirect speech.",
"input": "She said, \"I am tired.\"",
"output": "She said that she was tired."
},
{
"instruction": "Classify this text as either a scientific article or a news report.",
"input": "The researchers found a new species of bird in the Amazon rainforest.",
"output": "Scientific article"
},
{
"instruction": "Convert the following sentence to use a relative clause: The girl is a dancer. She lives next door.",
"input": "",
"output": "The girl who lives next door is a dancer."
},
{
"instruction": "Classify the following words by their grammatical categories: run, happy, quickly",
"input": "",
"output": "Run: Verb\nHappy: Adjective\nQuickly: Adverb"
},
{
"instruction": "Provide a synonym for 'brilliant'.",
"input": "",
"output": "A synonym for 'brilliant' is 'bright'."
},
{
"instruction": "Put the following words in alphabetical order: lion, zebra, elephant.",
"input": "",
"output": "Elephant, lion, zebra."
},
{
"instruction": "Perform a sentiment analysis on the given sentence.",
"input": "I hate this song!",
"output": "The sentiment of the sentence \"I hate this song!\" is negative."
},
{
"instruction": "What type of literary device is used in 'The silence was a loud scream'?",
"input": "",
"output": "The literary device used is oxymoron."
},
{
"instruction": "Rewrite the following phrase in the present tense.",
"input": "They had played soccer all afternoon.",
"output": "They play soccer all afternoon."
},
{
"instruction": "Perform a sentiment analysis on the given sentence.",
"input": "I love this song!",
"output": "The sentiment of the sentence 'I love this song!' is positive. This is indicated by the word 'love' which shows strong liking or admiration towards the subject, in this case, the song."
},
{
"instruction": "What is the capital of Canada?",
"input": "",
"output": "The capital of Canada is Ottawa."
},
{
"instruction": "Edit the following sentence to remove all passive voice.",
"input": "The song was composed by the artist.",
"output": "The artist composed the song."
},
{
"instruction": "Generate a sentence using the word 'determined'.",
"input": "",
"output": "She was determined to succeed despite the obstacles."
},
{
"instruction": "Convert the active sentence to passive: 'Julia throws the ball.'",
"input": "",
"output": "The ball is thrown by Julia."
},
{
"instruction": "Identify the predicate in the sentence.",
"input": "The quick brown fox jumps over the lazy dog.",
"output": "The predicate in the sentence is 'jumps over the lazy dog.'"
},
{
"instruction": "What type of number is 0?",
"input": "",
"output": "0 is an integer."
},
{
"instruction": "Take the following noun and turn it into a verb.",
"input": "Light",
"output": "To light."
},
{
"instruction": "Translate 'Happy Birthday' into Spanish.",
"input": "",
"output": "The Spanish translation of 'Happy Birthday' is 'Feliz Cumplea\u00f1os'."
},
{
"instruction": "Translate 'Where is the library?' into Italian.",
"input": "",
"output": "Dove \u00e8 la biblioteca?"
},
{
"instruction": "Rearrange the following list into descending order.",
"input": "12, 5, -3, 20, 9",
"output": "20, 12, 9, 5, -3"
},
{
"instruction": "Generate a five-word phrase using the words \"moon,\" \"crisp,\" and \"night.\"",
"input": "",
"output": "\"Crisp moon illuminates the night.\""
},
{
"instruction": "What is a synonym of 'content'?",
"input": "",
"output": "A synonym for 'content' is 'satisfied.'"
},
{
"instruction": "Rewrite the following sentence by adding one adverb.",
"input": "The cat slept on the mat.",
"output": "The cat peacefully slept on the mat."
},
{
"instruction": "Convert 4 liters to milliliters.",
"input": "",
"output": "4 liters is 4000 milliliters."
},
{
"instruction": "What is the atomic mass of carbon?",
"input": "",
"output": "The atomic mass of carbon is approximately 12.01 atomic mass units."
},
{
"instruction": "Classify the following into animals, plants, and metals.",
"input": "Rose, gold, cat",
"output": "Animals: Cat\nPlants: Rose\nMetals: Gold"
},
{
"instruction": "Classify the following numbers as even or odd.",
"input": "2, 7, 19, 20",
"output": "Even numbers: 2, 20\nOdd numbers: 7, 19"
},
{
"instruction": "Translate the phrase 'Life is beautiful' into Italian.",
"input": "",
"output": "The Italian translation of 'Life is beautiful' is 'La vita \u00e8 bella'."
},
{
"instruction": "What is the sum of 7 and 8?",
"input": "",
"output": "The sum of 7 and 8 is 15."
},
{
"instruction": "Generate a random alphanumeric code of 10 characters.",
"input": "",
"output": "Here is a randomly generated 10-character alphanumeric code: 3F8G6H7JQ2."
},
{
"instruction": "Provide a synonym for 'quiet'.",
"input": "",
"output": "A synonym for 'quiet' is 'silent'."
},
{
"instruction": "Reword the sentence to use other words without changing the meaning.",
"input": "It rained heavily during the night.",
"output": "The night experienced significant rainfall."
},
{
"instruction": "Rewrite the sentence using a metaphor.",
"input": "Her voice is very soothing.",
"output": "Her voice is a lullaby."
},
{
"instruction": "Fill in the blanks with appropriate words.",
"input": "The sky was filled with colorful ________ at sunset.",
"output": "The sky was filled with colorful clouds at sunset."
},
{
"instruction": "What is the boiling point of mercury in Celsius?",
"input": "",
"output": "The boiling point of mercury is 356.7 degrees Celsius."
},
{
"instruction": "Change the following sentence to past perfect tense.",
"input": "They finish the game.",
"output": "They had finished the game."
},
{
"instruction": "What is an antonym of 'bright'?",
"input": "",
"output": "An antonym of 'bright' is 'dark'."
},
{
"instruction": "Calculate the area of a circle with a radius of 4 meters.",
"input": "",
"output": "The area of the circle is approximately 50.27 square meters."
},
{
"instruction": "Determine the product of 7 and 8.",
"input": "",
"output": "The product of 7 and 8 is 56."
},
{
"instruction": "Name the device used to measure humidity.",
"input": "",
"output": "The device used to measure humidity is a hygrometer."
},
{
"instruction": "Identify the preposition in the sentence.",
"input": "The cat jumped over the fence.",
"output": "The preposition in the sentence is 'over'."
},
{
"instruction": "Re-write the following sentence to use a different verb.",
"input": "I will help you with your homework.",
"output": "I will assist you with your homework."
},
{
"instruction": "Identify the hypernym for the word 'rose.'",
"input": "",
"output": "The hypernym for the word 'rose' is 'flower.'"
},
{
"instruction": "Rewrite the sentence using a metaphor.",
"input": "He is very intelligent.",
"output": "He is a genius."
},
{
"instruction": "What is the formula for calculating the volume of a cylinder?",
"input": "",
"output": "The formula for calculating the volume of a cylinder is \u03c0r\u00b2h, where r is the radius and h is the height."
},
{
"instruction": "What is an antonym for 'difficult'?",
"input": "",
"output": "An antonym for 'difficult' is 'easy'."
},
{
"instruction": "Generate a sentence using the word 'brilliant'.",
"input": "",
"output": "The scientist had a brilliant idea that changed the world."
},
{
"instruction": "Automatically correct the given sentence.",
"input": "I want to go to london.",
"output": "I want to go to London."
},
{
"instruction": "Convert this declarative sentence into an interrogative sentence.",
"input": "You need help.",
"output": "Do you need help?"
},
{
"instruction": "Convert the sentence into a negative statement.",
"input": "You will help me.",
"output": "You will not help me."
},
{
"instruction": "Edit the following sentence for clarity and style.",
"input": "She response to the question was quick.",
"output": "Her response to the question was quick."
},
{
"instruction": "What is the boiling point of oxygen in Celsius?",
"input": "",
"output": "The boiling point of oxygen is -183 degrees Celsius."
},
{
"instruction": "Translate the word 'hello' into Spanish.",
"input": "",
"output": "The Spanish translation of 'hello' is 'hola'."
},
{
"instruction": "Classify the following fruit according to its type.",
"input": "Orange",
"output": "The fruit 'Orange' is typically classified as a citrus fruit."
},
{
"instruction": "Calculate the perimeter of a triangle with sides measuring 3, 4, and 5 cm.",
"input": "",
"output": "The perimeter of the triangle is 12 cm."
},
{
"instruction": "Convert the sentence to use an indefinite pronoun.",
"input": "Someone left a message.",
"output": "A message was left by someone."
},
{
"instruction": "What is the prime factorization of 210?",
"input": "",
"output": "2 \u00d7 3 \u00d7 5 \u00d7 7."
},
{
"instruction": "Convert this active sentence to passive: 'The company employs ten workers.'",
"input": "",
"output": "Ten workers are employed by the company."
},
{
"instruction": "Transform the given statement into an imperative sentence.",
"input": "I would like you to turn off the light.",
"output": "Please turn off the light."
},
{
"instruction": "Generate three verbs that mean the same as 'to speak.'",
"input": "",
"output": "1. To talk\n2. To converse\n3. To chat"
},
{
"instruction": "Edit the sentence below to remove any redundant words and make it more concise.",
"input": "I actually think that",
"output": "I think."
},
{
"instruction": "Fill in the blank to complete the sentence.",
"input": "The most popular fruit in the world is the ___",
"output": "The most popular fruit in the world is the banana."
},
{
"instruction": "Cut the following sentence into two, keeping the original meaning intact.",
"input": "She started her homework but was soon distracted by a phone call.",
"output": "She started her homework. However, she was soon distracted by a phone call."
},
{
"instruction": "Generate a sentence using the word 'melancholy'.",
"input": "",
"output": "The melancholy tune brought tears to her eyes."
},
{
"instruction": "Generate three adjectives to describe a river.",
"input": "",
"output": "1. Serene\n2. Flowing\n3. Winding"
},
{
"instruction": "Name the longest river in the world.",
"input": "",
"output": "The longest river in the world is the Nile River."
},
{
"instruction": "Translate 'Happy New Year' into Italian.",
"input": "",
"output": "Buon Anno Nuovo"
},
{
"instruction": "Select the noun phrase in the following sentence.",
"input": "He enjoyed a delicious cake at the party.",
"output": "The noun phrases in the given sentence are \"a delicious cake\" and \"the party.\""
},
{
"instruction": "Summarize the plot of Shakespeare's play 'Macbeth'.",
"input": "",
"output": "Macbeth, a Scottish general, is led to wicked thoughts by the prophecies of three witches, leading him to murder the king and take the throne. His lust for power causes a descent into madness and destruction."
},
{
"instruction": "Classify the following items: gold ring, daisy, python.",
"input": "",
"output": "Animals: Python\nPlants: Daisy\nMinerals: Gold ring"
},
{
"instruction": "What is the capital of Greece?",
"input": "",
"output": "The capital of Greece is Athens."
},
{
"instruction": "Convert the following number from decimal to hexadecimal: 255.",
"input": "",
"output": "The hexadecimal equivalent of the decimal number 255 is FF."
},
{
"instruction": "Rewrite the sentence using a simile.",
"input": "The music is very loud.",
"output": "The music is as loud as thunder."
},
{
"instruction": "What is the capital of Argentina?",
"input": "",
"output": "The capital of Argentina is Buenos Aires."
},
{
"instruction": "Name a punctuation mark used to indicate a question.",
"input": "",
"output": "A punctuation mark used to indicate a question is the question mark (?)."
},
{
"instruction": "What is an antonym of \"ancient\"?",
"input": "",
"output": "An antonym of \"ancient\" is \"modern.\""
},
{
"instruction": "Determine the mass of an object that has a density of 10 g/cm\u00b3 and a volume of 2 cm\u00b3.",
"input": "",
"output": "The mass of the object is 20 grams."
},
{
"instruction": "Convert this compound sentence to a complex sentence.",
"input": "She likes coffee, and he likes tea.",
"output": "She likes coffee while he likes tea."
},
{
"instruction": "Identify the antagonist in 'Harry Potter and the Sorcerer's Stone'.",
"input": "",
"output": "The antagonist in 'Harry Potter and the Sorcerer's Stone' is Voldemort."
},
{
"instruction": "What is the capital of Sweden?",
"input": "",
"output": "The capital of Sweden is Stockholm."
},
{
"instruction": "Generate a sentence using the word 'curious'.",
"input": "",
"output": "The cat was curious about the new toy."
},
{
"instruction": "Convert the given sentence into passive voice.",
"input": "The company will announce the results tomorrow.",
"output": "The results will be announced by the company tomorrow."
},
{
"instruction": "Classify an input string as either a noun or a verb.",
"input": "jump",
"output": "\"jump\" can be classified as a verb."
},
{
"instruction": "Split the following sentence into two declarative sentences: \"The book is interesting but the cover is dull\".",
"input": "",
"output": "The book is interesting.\nThe cover is dull."
},
{
"instruction": "Rewrite the sentence using a metaphor.",
"input": "The book is very boring.",
"output": "The book is a cure for insomnia."
},
{
"instruction": "What is an antonym of 'fast'?",
"input": "",
"output": "slow."
},
{
"instruction": "Calculate the kinetic energy of an object with a mass of 10 kilograms moving at a velocity of 5 meters per second.",
"input": "",
"output": "The kinetic energy of the object is 125 joules, calculated using the formula KE = 0.5 * mass * velocity^2."