-
Notifications
You must be signed in to change notification settings - Fork 0
/
processed_data.json
18030 lines (18030 loc) · 641 KB
/
processed_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
[
{
"user_query": "Produce a list of common words in the English language.",
"hallucination": "no"
},
{
"user_query": "Provide a few examples of homophones.",
"hallucination": "yes"
},
{
"user_query": "Create a chart outlining the world's population from 2000-2015.",
"hallucination": "yes"
},
{
"user_query": "Design a shape with 10 vertices (corners).",
"hallucination": "yes"
},
{
"user_query": "Automatically generate a 10 by 10 multiplication table.",
"hallucination": "yes"
},
{
"user_query": "Design a web page that allows a user to sign up for an email list.",
"hallucination": "no"
},
{
"user_query": "Create the HTML code necessary to display the following text.",
"hallucination": "yes"
},
{
"user_query": "Name a few members of the LGBTQ+ community",
"hallucination": "no"
},
{
"user_query": "Create a bar chart of the following values\n10, 20, 30, 40",
"hallucination": "yes"
},
{
"user_query": "Create a design for the given text snippet.\nUnited We Stand",
"hallucination": "no"
},
{
"user_query": "Create a class labeled \u201cNIGHT\u201d which describes the average evening of a person",
"hallucination": "no"
},
{
"user_query": "Create a chart showing the comparison between COVID-19 cases and deaths in different countries.",
"hallucination": "yes"
},
{
"user_query": "Provide a data visualization for the following data.\nCars per 100 households in 2020 by city\nBoston: 22\nMiami: 17\nAustin: 19",
"hallucination": "yes"
},
{
"user_query": "Generate an input data set that has three members and five attributes.",
"hallucination": "no"
},
{
"user_query": "Create a library of code that implements a linked list data structure.",
"hallucination": "yes"
},
{
"user_query": "Provide a list of items of the food in the given kitchen.\n<image>",
"hallucination": "no"
},
{
"user_query": "Create a webpage that displays a contact us form.",
"hallucination": "yes"
},
{
"user_query": "Generate sample code using the given variables.\nvariables: num1, num2",
"hallucination": "yes"
},
{
"user_query": "Generate a web page for a book review website.",
"hallucination": "yes"
},
{
"user_query": "Create a web page to allow users to register for your workshop.",
"hallucination": "yes"
},
{
"user_query": "Create a data table of countries located in Oceania",
"hallucination": "no"
},
{
"user_query": "Insert the data into the table.\nChina | 437.11\nRussia | 463.67\nCanada | 29.6",
"hallucination": "yes"
},
{
"user_query": "Create a C++ function that orders an array\n",
"hallucination": "yes"
},
{
"user_query": "Find the software release notes for the latest version of Google Chrome.",
"hallucination": "yes"
},
{
"user_query": "Come up with an encryption method that encrypts the following message.\nMy name is John",
"hallucination": "yes"
},
{
"user_query": "Create a Gantt chart to visualize the timeline of a project.\nThe project includes researching and writing a 10,000-word paper due in 5 weeks.",
"hallucination": "no"
},
{
"user_query": "Generate a list of present continuous verbs.",
"hallucination": "no"
},
{
"user_query": "Develop an HTML page from scratch introducing a pet store.",
"hallucination": "yes"
},
{
"user_query": "Determine the size of a shoe, given shoe length and width measurements in centimeters.\nShoe length: 25 cm, Shoe width: 11 cm",
"hallucination": "no"
},
{
"user_query": "Make a table of the top 10 fastest animals",
"hallucination": "yes"
},
{
"user_query": "Sift through a text and find the most repeated words.\nJohn went to the store with his friend Sam to buy some groceries. Sam had purchased some apples and oranges and wanted to try a different type of fruit. He wanted to buy a mango, but John warned him against it.",
"hallucination": "yes"
},
{
"user_query": "Create the HTML code for a website with a header and a body.",
"hallucination": "no"
},
{
"user_query": "Create a CSS style.",
"hallucination": "no"
},
{
"user_query": "Create an invoice for a client.\nClient: Joe Smith\nProducts purchased: 2 bottles of shampoo, 1 bar of soap",
"hallucination": "yes"
},
{
"user_query": "Build a calculator using HTML and JavaScript.",
"hallucination": "yes"
},
{
"user_query": "Create a popup window with a message to the user.",
"hallucination": "no"
},
{
"user_query": "Create an acrostic poem about 'belief'.",
"hallucination": "no"
},
{
"user_query": "Given the type of words below, provide three examples of each.\nAdjectives",
"hallucination": "no"
},
{
"user_query": "Create a web page that displays the following data as a bar chart.\nData: {\n \"January\": 20,\n \"February\": 15,\n \"March\": 10,\n \"April\": 25,\n \"May\": 30\n }",
"hallucination": "yes"
},
{
"user_query": "Choose the correctly punctuated sentence:",
"hallucination": "no"
},
{
"user_query": "Write a script to delete all the users who have not been active for the past 3 months",
"hallucination": "yes"
},
{
"user_query": "Please recommend me a movie.",
"hallucination": "no"
},
{
"user_query": "Create a data table that lists five artificial intelligence companies and their founding years.",
"hallucination": "yes"
},
{
"user_query": "Create a web page that displays the temperature of the city of Florence.",
"hallucination": "yes"
},
{
"user_query": "Create a data set containing the population of 5 countries.",
"hallucination": "yes"
},
{
"user_query": "Cite an article from a scientific journal that supports the use of GPT models.",
"hallucination": "yes"
},
{
"user_query": "Create an HTML page with a dark theme.",
"hallucination": "no"
},
{
"user_query": "Create an example for the given data structure.\nHeap",
"hallucination": "no"
},
{
"user_query": "Summarize a given article in 50 words or less.",
"hallucination": "no"
},
{
"user_query": "Generate a humorous or creative poem about a topic of your choice.",
"hallucination": "no"
},
{
"user_query": "Given the following python function, what is the result of calling it with the following argument: count_words('Loving living life')",
"hallucination": "yes"
},
{
"user_query": "Invent a new word and explain its meaning.",
"hallucination": "no"
},
{
"user_query": "Create an example of a data visualization chart to express the given data.\nPopulation of China in 2020 is 1,439,323,776.",
"hallucination": "yes"
},
{
"user_query": "Assume you are a web designer, create an HTML layout using CSS classes.\n",
"hallucination": "yes"
},
{
"user_query": "Create a table of nutritional value for the following food item.\nStrawberries",
"hallucination": "yes"
},
{
"user_query": "Summarize a recent major news event in 5 sentences.",
"hallucination": "no"
},
{
"user_query": "Identify the most commonly used words in the text\nI am so excited to go on an adventure and explore the world, it is going to be great!",
"hallucination": "yes"
},
{
"user_query": "Update the content of the given table\nTable with four columns containing country, population, GDP and GDP per capita",
"hallucination": "yes"
},
{
"user_query": "Generate an example of a data frame with seven columns and five rows.",
"hallucination": "yes"
},
{
"user_query": "Given a number, generate a poem with the same number of syllables in each line.\nNumber: 8",
"hallucination": "no"
},
{
"user_query": "Create a web page with a contact form.",
"hallucination": "no"
},
{
"user_query": "Build a decision tree to classify the following data.\n| Color | Type |\n| ---- | ---- |\n| Red | Apple |\n| Green | Apple |\n| Red | Orange |\n| Yellow | Banana |",
"hallucination": "yes"
},
{
"user_query": "Write an acrostic poem about friendship.",
"hallucination": "no"
},
{
"user_query": "Construct a training data set for a classification task.\nClassification task: Identify all countries in the world with a population of 1 million or more.",
"hallucination": "no"
},
{
"user_query": "Recite an acrostic poem with the given theme.\nThe theme should be \"Focus.\"",
"hallucination": "no"
},
{
"user_query": "Complete the wordcloud with appropriate words given a topic.\nTopic: Space Exploration",
"hallucination": "no"
},
{
"user_query": "Create a database table for storing customer purchase history.",
"hallucination": "no"
},
{
"user_query": "Write a function that takes in a string and returns the number of 'a' characters in it.",
"hallucination": "no"
},
{
"user_query": "Write a function that will calculate the distance in terms of longitude and latitude.\nStart longitude : -75.45 Start latitude: 45.40",
"hallucination": "yes"
},
{
"user_query": "Create a user-friendly registration form.",
"hallucination": "no"
},
{
"user_query": "Compose a Twinkle twinkle little star in French.",
"hallucination": "yes"
},
{
"user_query": "Given a document, find the most frequently used words.\nJohn went to the store to buy some candy.",
"hallucination": "yes"
},
{
"user_query": "Generate a tweet (140 characters or less) about an event that happened this week.",
"hallucination": "no"
},
{
"user_query": "Please generate a Dr. Seuss inspired poem.",
"hallucination": "yes"
},
{
"user_query": "Write a C++ code",
"hallucination": "yes"
},
{
"user_query": "Create a user interface for a chatbot",
"hallucination": "no"
},
{
"user_query": "Identify the number of positive integers less than 100 that are both multiples of 6 and 7.",
"hallucination": "yes"
},
{
"user_query": "Compose an acrostic poem with the word 'kindness'.",
"hallucination": "no"
},
{
"user_query": "Write a code snippet that creates an HTTPS POST request.",
"hallucination": "no"
},
{
"user_query": "Generate a keyword list that suits the content of the article.\nThe article is about understanding the economic growth of India over the last 5 years.",
"hallucination": "no"
},
{
"user_query": "Generate a crossword puzzle using the following words\nHouse, Pen, Ink",
"hallucination": "no"
},
{
"user_query": "Give an example of a stateful lambda function",
"hallucination": "no"
},
{
"user_query": "Construct a semantic network\nFire",
"hallucination": "no"
},
{
"user_query": "Provide the HTML content for an email that encourages users to register.",
"hallucination": "no"
},
{
"user_query": "Create a cryptographic code using a substitution cipher.",
"hallucination": "no"
},
{
"user_query": "Create a programming task involving dictionaries\n<>",
"hallucination": "no"
},
{
"user_query": "Write a function that will return the maximum of the following numbers.\n1, 5, 23, 9",
"hallucination": "no"
},
{
"user_query": "Find the determinant of a given matrix.\n[1 8 3]\n[2 7 9]\n[5 1 6]",
"hallucination": "yes"
},
{
"user_query": "Create a basic HTML template.",
"hallucination": "no"
},
{
"user_query": "Compose a rap verse that references something related to technology",
"hallucination": "no"
},
{
"user_query": "Generate a sample of valid HTML code.",
"hallucination": "no"
},
{
"user_query": "Create a table of the top 10 countries with the highest population density.",
"hallucination": "yes"
},
{
"user_query": "Write a script for a 20-second monologue.",
"hallucination": "no"
},
{
"user_query": "Use the given words to create a poem with a rhyme scheme.\nslime, dime, time.",
"hallucination": "no"
},
{
"user_query": "Align the given strings to determine the Levenshtein distance.\nstring1: compute\nstring2: computer",
"hallucination": "no"
},
{
"user_query": "Find the area of a triangle with side lengths of 5, 10, and 12.",
"hallucination": "yes"
},
{
"user_query": "Suggest a dish for a dinner party that's suitable for vegetarians. Output the name of the dish.\n",
"hallucination": "yes"
},
{
"user_query": "Fill in the <mask> with a word related to babies",
"hallucination": "no"
},
{
"user_query": "Draft a tweet in the style of a famous person.",
"hallucination": "no"
},
{
"user_query": "Given a list of topics, find a source or a citation for each topic.\nTopics: Climate Change, US Presidential Elections",
"hallucination": "yes"
},
{
"user_query": "Give a recommendation for a movie to watch.",
"hallucination": "no"
},
{
"user_query": "Generate a chart of the top 5 cities based on the number of movie theaters\nTallahassee: 19\nMiami: 21\nOrlando: 33\nTampa: 43\nJacksonville: 17",
"hallucination": "no"
},
{
"user_query": "Suggest four places to visit during a weekend trip.",
"hallucination": "yes"
},
{
"user_query": "Design a survey to collect demographic data.",
"hallucination": "no"
},
{
"user_query": "Construct a table to compare the effectiveness of 5 different treatments",
"hallucination": "no"
},
{
"user_query": "Generate a list of keywords for the topic \"Aeronautical Engineering\"",
"hallucination": "no"
},
{
"user_query": "Write fifty words in French introducing yourself.",
"hallucination": "no"
},
{
"user_query": "Create an example of an acrostic poem.",
"hallucination": "no"
},
{
"user_query": "Output the names of the US states",
"hallucination": "no"
},
{
"user_query": "Compose a sonnet in iambic pentameter.",
"hallucination": "no"
},
{
"user_query": "Generate an acrostic poem for the word \"INSPIRE\".",
"hallucination": "no"
},
{
"user_query": "Construct a multiplication table for the number 5.",
"hallucination": "no"
},
{
"user_query": "Generate a unique poem with at least ten lines.",
"hallucination": "no"
},
{
"user_query": "Find the lowest common ancestor of Apple and Orange.",
"hallucination": "yes"
},
{
"user_query": "Given a suitable input, generate a poem that captures the emotion of happiness.\nThe bright warm sun",
"hallucination": "no"
},
{
"user_query": "Generate the first few lines of the poem.",
"hallucination": "no"
},
{
"user_query": "Generate a set of 10 instructions in Spanish",
"hallucination": "no"
},
{
"user_query": "Come up with three funny jokes for a stand-up comedy routine.",
"hallucination": "no"
},
{
"user_query": "Construct three additional lines for the following poem.\nIf dreams were made of wishes\nWe'd all be rich with joy",
"hallucination": "no"
},
{
"user_query": "Create an acoustic guitar riff.",
"hallucination": "yes"
},
{
"user_query": "Construct a function to classify words into nouns, verbs, and adjectives.",
"hallucination": "no"
},
{
"user_query": "Identify the hyperbola that passes through the given points.\nPoints: (3,4), (2,-6)",
"hallucination": "no"
},
{
"user_query": "Create a chart showing the ratios of different planets to each other.\nThe radius of Jupiter is 69,911 km, and the radius of Earth is 6,371 km.",
"hallucination": "yes"
},
{
"user_query": "List the ingredients of this french toast recipe.",
"hallucination": "yes"
},
{
"user_query": "Update the given piece of code.\nint a = 10;",
"hallucination": "no"
},
{
"user_query": "Select a section of the following song accordingly to the given cue.\n<Song>\nCue: The chorus",
"hallucination": "yes"
},
{
"user_query": "Find the last five digits of 370 ^ 11",
"hallucination": "yes"
},
{
"user_query": "Summarize a recent news story from the US or international news.",
"hallucination": "no"
},
{
"user_query": "Design a poster for a student film festival.",
"hallucination": "yes"
},
{
"user_query": "Compose a sample input to the instruction",
"hallucination": "no"
},
{
"user_query": "Please provide a sample input for a classification task.",
"hallucination": "no"
},
{
"user_query": "Make a list of 5 things that need to be done today.",
"hallucination": "no"
},
{
"user_query": "Research a interesting fact about spiders and summarize it in two sentences.",
"hallucination": "no"
},
{
"user_query": "Calculate the area of a triangle with sides of length 5, 7, and 10",
"hallucination": "yes"
},
{
"user_query": "Generate a list of elements in a periodic table.",
"hallucination": "no"
},
{
"user_query": "Generate an acrostic poem with a given word.\nRainbow",
"hallucination": "no"
},
{
"user_query": "Create a chart that shows how market prices change over time.\nMarket prices of corn, wheat, and soybean on April 1 and April 15",
"hallucination": "no"
},
{
"user_query": "Generate an original poem of at least four lines.",
"hallucination": "no"
},
{
"user_query": "Write an acrostic poem with the topic of \"Friendship\"",
"hallucination": "no"
},
{
"user_query": "Generate a class schedule for a student taking 5 classes.",
"hallucination": "no"
},
{
"user_query": "Generate a list of adjectives that describe a person as brave.",
"hallucination": "no"
},
{
"user_query": "Write a Python program to fetch the top 5 headlines from a given news page.\nURL: https://www.nytimes.com/",
"hallucination": "no"
},
{
"user_query": "Retrieve the following data from the World Bank database\nUnemployment rate in India from 2005 to 2010",
"hallucination": "yes"
},
{
"user_query": "Generate a creative anacrostic poem for the word 'autumn'",
"hallucination": "no"
},
{
"user_query": "Generate a shopping list for a 4-person dinner party, considering the ingredients and spices needed to prepare a simple Mexican dish, such as a Burrito.",
"hallucination": "no"
},
{
"user_query": "Create a new poem with the given template.\n\"Love is like a ___\"",
"hallucination": "no"
},
{
"user_query": "Compose a five-line poem that uses at least three different poetic devices.\n",
"hallucination": "no"
},
{
"user_query": "Create an example post for a given social media platform.\nFacebook",
"hallucination": "no"
},
{
"user_query": "Categorize the samples from the data set.\nSample 1: 56, 2.4, 0.8, 2 \nSample 2: 64, 4.4, 0.8, 7",
"hallucination": "yes"
},
{
"user_query": "Auto-complete a poem given its first two lines.\nLine 1: I saw a small bird flying\nLine 2: Around the pot of gold",
"hallucination": "no"
},
{
"user_query": "Rewrite the poem \"My Soul Builds a Cathedral\" in your own words.\nMy Soul Builds a Cathedral \nby Carl Sandburg\n\nThe fog comes \non little cat feet",
"hallucination": "no"
},
{
"user_query": "Design a business card for a tax accountant.",
"hallucination": "no"
},
{
"user_query": "Create an example that demonstrates the use of an idiom.",
"hallucination": "no"
},
{
"user_query": "Compile the following source code.\npublic class HelloWorld {\n public static void main(String[] args) {\n System.out.println(\"Hello World!\");\n }\n}",
"hallucination": "yes"
},
{
"user_query": "Make a schedule for the day in the format of \"Task - Time\".",
"hallucination": "yes"
},
{
"user_query": "Create a logic puzzle for children.",
"hallucination": "no"
},
{
"user_query": "Create a shopping list for a vegan dinner for two.",
"hallucination": "no"
},
{
"user_query": "Write a classified advertisement",
"hallucination": "no"
},
{
"user_query": "Help me find a creative and unique way to express my feelings.\nMy feelings: I miss him.",
"hallucination": "no"
},
{
"user_query": "Two circles of the same size intersect at right angles. What is the area of the shaded region?",
"hallucination": "yes"
},
{
"user_query": "Make an outline of a presentation on microservices.",
"hallucination": "no"
},
{
"user_query": "Create a database to store the user data given below.\nUsername\nPassword\nEmail\nPhone number",
"hallucination": "no"
},
{
"user_query": "Generate a summary of the following article in one sentence:\n\nhttps://www.bbc.com/news/technology-45496375",
"hallucination": "yes"
},
{
"user_query": "Given a recipe, suggest a few variations to the recipe and their ingredients.\nPotatoes au Gratin\nIngredients:\n- 2lbs potatoes\n- 1 onion\n- 2 cloves garlic\n- 6 tablespoons butter\n- 1 teaspoon thyme\n- 1 cup heavy cream\n- 1 cup freshly grated parmesan cheese\n- Salt and pepper",
"hallucination": "no"
},
{
"user_query": "Design a web page with two columns and a footer.",
"hallucination": "yes"
},
{
"user_query": "Write two original limericks.",
"hallucination": "no"
},
{
"user_query": "Come up with a list of character traits that describe the main protagonist of the story.",
"hallucination": "no"
},
{
"user_query": "Generate a story beginning.",
"hallucination": "no"
},
{
"user_query": "Compute the area of a triangle with the vertices (3,4), (5,6), (7,8)",
"hallucination": "yes"
},
{
"user_query": "Given the following table, generate a bar chart that displays the total sales of each product.\nTable:\nProduct | Sales\n--------- | -----\nApples | 5000\nOranges | 4500\nBananas | 3000",
"hallucination": "no"
},
{
"user_query": "Formulate a probability distribution for a 6-sided die.",
"hallucination": "no"
},
{
"user_query": "Generate a jingle of length 8 lines, with each line 4 syllables, for a new type of soft drink.",
"hallucination": "no"
},
{
"user_query": "Create an effective 140 character twitter post",
"hallucination": "no"
},
{
"user_query": "Find a news article related to the following topic and summarize it in 2 sentences.\nClimate change",
"hallucination": "no"
},
{
"user_query": "Generate a poem about Earth using alliteration.",
"hallucination": "no"
},
{
"user_query": "Write an example of a Twitter post that promotes your business",
"hallucination": "no"
},
{
"user_query": "Find resources online that offer an introduction to coding languages.",
"hallucination": "no"
},
{
"user_query": "Generate a algorithm to sort a given list of three colors.\ncolors = ['white', 'red', 'blue']",
"hallucination": "no"
},
{
"user_query": "Give an example of a word which has four different meanings.",
"hallucination": "no"
},
{
"user_query": "Compose a story that's 100 words long",
"hallucination": "no"
},
{
"user_query": "Give examples of input and output type data.",
"hallucination": "no"
},
{
"user_query": "Output a multiplication table for the numbers 2 to 10.",
"hallucination": "yes"
},
{
"user_query": "Generate a poem about nature, include a minimum of 4 lines.",
"hallucination": "no"
},
{
"user_query": "Generate a paragraph of conversational English.",
"hallucination": "no"
},
{
"user_query": "Generate a classification example of the following group: mammals.",
"hallucination": "no"
},
{
"user_query": "Cite three non-English sources for a research paper on ancient Greek mythology.",
"hallucination": "yes"
},
{
"user_query": "Calculate the sum of 10001st number and the 10th number.",
"hallucination": "yes"
},
{
"user_query": "Create a poetic metaphor that compares the provided person to an object or concept.\nA runner",
"hallucination": "no"
},
{
"user_query": "Find the last three digits of 343\u2077.",
"hallucination": "yes"
},
{
"user_query": "Tell an interesting historical fact.",
"hallucination": "yes"
},
{
"user_query": "Sketch an illustration of a tree.",
"hallucination": "yes"
},
{
"user_query": "Generate a non-trivial math problem for a 5th grader to solve.",
"hallucination": "no"
},
{
"user_query": "Restructure the poem by adding rhyme and meter.\nI have a dream\nI want to succeed\nI won't stop till I'm fulfilled",
"hallucination": "no"
},
{
"user_query": "Compose a tweet to share the article\nhttps://www.bbc.co.uk/news/science-environment-49983610",
"hallucination": "yes"
},
{
"user_query": "Generate a poem of 8 lines of 4 words each.",
"hallucination": "no"
},
{
"user_query": "Compute the regression coefficient (r) given the following data\nx: 1, 2, 3, 4\ny: 6, 5, 7, 8",
"hallucination": "yes"
},
{
"user_query": "Write a query to filter out records in the given table.\n[Table containing employee records]",
"hallucination": "no"
},
{
"user_query": "Create a meme which includes the given prompt.\nThe power of digital marketing",
"hallucination": "no"
},
{
"user_query": "Generate a paragraph featuring a character with a tragic backstory.",
"hallucination": "no"
},
{
"user_query": "Generate a rap verse of less that 16 bars.",
"hallucination": "no"
},
{
"user_query": "Imagine a scenario where somebody is asking for a ride. Write an entertaining response to the request.\nCan I get a ride?",
"hallucination": "no"
},
{
"user_query": "Produce a chart of the top 4 search engine market share",
"hallucination": "yes"
},
{
"user_query": "Provide a statistical analysis of the following data.\nAge: 18, 21, 22, 25, 26, 27",
"hallucination": "no"
},
{
"user_query": "Write a poem that uses the word \"autumn\"",
"hallucination": "no"
},
{
"user_query": "Generate an original poem that follows the rhyming scheme: ABABCCDDD",
"hallucination": "yes"
},
{
"user_query": "Build an algorithm that will find all prime numbers between 2 and 100.",
"hallucination": "no"
},
{
"user_query": "Write some pseudo-code to implement merge sort.",
"hallucination": "no"
},
{
"user_query": "Create a chart displaying the US population growth throughout the years.",
"hallucination": "yes"
},
{
"user_query": "Create two roles for a movie script.",
"hallucination": "no"
},
{
"user_query": "What is a 9-digit number that is divisible by 7?",
"hallucination": "yes"
},
{
"user_query": "Recommend a restaurant for someone who likes Mexican food.",
"hallucination": "no"
},
{
"user_query": "List the different landforms",
"hallucination": "no"
},
{
"user_query": "List three of the four elements.",
"hallucination": "no"
},
{
"user_query": "Write two haikus on the same topic.",
"hallucination": "no"
},
{
"user_query": "Construct a sentence using 5 idioms.",
"hallucination": "no"
},
{
"user_query": "Generate a poetic description of a cloudy sky.",
"hallucination": "no"
},
{
"user_query": "Write a limerick based on the following noun\nnight",
"hallucination": "no"
},
{
"user_query": "Write pseudo-code for a bubble sort algorithm",
"hallucination": "no"
},
{
"user_query": "Create an equation that models the given context\nThe total salary of an employee consists of fixed salary and overtime payment proportionate to his working hours.",
"hallucination": "no"
},
{
"user_query": "Create a programming challenge which requires a basic understanding of an algorithm.",
"hallucination": "yes"
},
{
"user_query": "Create a chart showing the data of internet users by country.\nCountry: China, India, US, Brazil, Spain\nInternet Users (in millions): 854.8, 504.0, 302.5, 142.5, 45.5",
"hallucination": "no"
},
{
"user_query": "I have a jar of coins and I think it is not the right number of coins. Can you help me count the coins?",
"hallucination": "yes"
},
{
"user_query": "Provide an example that would demonstrate knowledge of human anatomy.",
"hallucination": "no"
},
{
"user_query": "Name some natural disasters that have occurred in Cuba in the past ten years.",
"hallucination": "yes"
},
{
"user_query": "Given the following phrase, generate a list of synonyms\nCreate something",
"hallucination": "no"
},
{
"user_query": "Add some lines to complete the given poem.\nRain pours down \nSoaks the ground",
"hallucination": "no"
},
{
"user_query": "Create an opening paragraph for a poem about nature.",
"hallucination": "no"
},
{
"user_query": "Use the information provided to generate a website screenshot.\nWebsite URL: https://github.com/",
"hallucination": "no"
},
{
"user_query": "Select 3 articles to read for the next meeting.\nA list of 10 potential articles (titles, authors, publication date and link).",
"hallucination": "yes"
},
{
"user_query": "Given a location, provide a list of the best nearby restaurants.\nNew York City",
"hallucination": "no"
},
{
"user_query": "Create a chart that shows the distribution of users by age and gender.\nNumber of users: 500\nAge Range: 18-75\nGender: Male (60%), Female (40%)",
"hallucination": "yes"
},
{
"user_query": "Give me a list of useful websites for C programming.",
"hallucination": "no"
},
{
"user_query": "Edit the poem to make it a sonnet.\nThe sky was so dark, and the stars so bright\nI almost fell as I looked up to the sky\nA storm is brewing, I can feel its might\nWhat wild secrets lurk up in the sky",
"hallucination": "no"
},
{
"user_query": "List the main characters and their characteristics in the given story\nThe story is about a young girl who discovers a magical world",
"hallucination": "no"
},
{
"user_query": "Write the code for multiplying two matrices\nmultiply two 3x3 matrices",
"hallucination": "yes"
},
{
"user_query": "Create a Twitter bio for a fictionalized character who has the superpower of flight",
"hallucination": "no"
},
{
"user_query": "Research the latest news on the topic \u201cAI in healthcare\u201d and provide a summary with what you found in less than 100 words.",
"hallucination": "no"
},
{
"user_query": "Given the following input, create a Mad Lib.\ncar, delicious, former, sharp, ink",
"hallucination": "no"
},
{
"user_query": "Given a list of natural disasters and their description, generate a poem about them.\nTsunami: A huge wave caused by the displacement of a large body of water\nWildfire: Fire that burns large areas of land\nVolcano: An opening in the Earth's surface from which lava, ash, and gas can be released",
"hallucination": "no"
},
{
"user_query": "Generate a couple of interesting dialogue lines for a conversation between two characters in a story.\nLocation: Outside a cafe \nTime: Afternoon\nCharacters: Two strangers\nSituation: Both characters are running late",
"hallucination": "yes"
},
{
"user_query": "Draft a tweet summarizing a recent event",
"hallucination": "no"
},
{
"user_query": "Write pseudocode to describe the following algorithm:\nGiven an array of integers \"arr\", the algorithm should return the index of the first element in \"arr\" greater than or equal to the given target \"num\".",
"hallucination": "no"
},
{
"user_query": "Given some context and a list of words, identify and generate an acrostic poem.\nContext: Education\nWords: reading, researching, writing",
"hallucination": "no"
},
{
"user_query": "Create a comedic tweet about telemarketing calls.",
"hallucination": "no"
},
{
"user_query": "Given a set of instructions, construct a flow chart to visualize the process.\n1. Load the dataset.\n2. Split the dataset into training and validation set.\n3. Pre-process the data.\n4. Feed the data into a deep learning model.\n5. Train the model on the training set.\n6. Tune the hyperparameters with the validation set.",
"hallucination": "no"
},
{
"user_query": "Think of 3 new words and define them.",
"hallucination": "no"
},
{
"user_query": "Find the least common multiple of 15 and 20",
"hallucination": "no"
},
{
"user_query": "Write pseudocode to find all prime numbers up to a given number.",
"hallucination": "no"
},
{
"user_query": "Break the following sentence into clauses and identify each clause's syntactic function:\nThe workshop had ended and the participants had gone home.",
"hallucination": "no"
},
{
"user_query": "Compose a short poem about summer that includes the phrase \"Summer breeze\".",
"hallucination": "no"