-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathharmless_test_translated_es.json
More file actions
2502 lines (2502 loc) · 117 KB
/
Copy pathharmless_test_translated_es.json
File metadata and controls
2502 lines (2502 loc) · 117 KB
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": "Explain how the sun is different from other stars",
"instruction_translated": "Explica c\u00f3mo el sol es diferente de otras estrellas",
"category": null
},
{
"instruction": "How many hours is 1.4 days.",
"instruction_translated": "Cu\u00e1ntas horas son 1.4 d\u00edas.",
"category": null
},
{
"instruction": "Name 5 TV series set in London",
"instruction_translated": "Nombre 5 series de televisi\u00f3n en Londres",
"category": null
},
{
"instruction": "Generate a anecdote that starts with 'As I was walking down the street I saw...'.",
"instruction_translated": "Genere una an\u00e9cdota que comience con 'mientras caminaba por la calle que vi ...'.",
"category": null
},
{
"instruction": "Create an analogy to describe the history of the US Constitution and the US Supreme Court.",
"instruction_translated": "Cree una analog\u00eda para describir la historia de la Constituci\u00f3n de los Estados Unidos y la Corte Suprema de los Estados Unidos.",
"category": null
},
{
"instruction": "What is a fundamental challenge of supervised learning?",
"instruction_translated": "\u00bfCu\u00e1l es un desaf\u00edo fundamental del aprendizaje supervisado?",
"category": null
},
{
"instruction": "What is the most appropriate way to respond to a difficult customer?",
"instruction_translated": "\u00bfCu\u00e1l es la forma m\u00e1s apropiada de responder a un cliente dif\u00edcil?",
"category": null
},
{
"instruction": "Generate a recipe for an easy-to-make vegan salad.",
"instruction_translated": "Genere una receta para una ensalada vegana f\u00e1cil de hacer.",
"category": null
},
{
"instruction": "Recall a famous quote from Mahatma Gandhi.",
"instruction_translated": "Recuerde una famosa cita de Mahatma Gandhi.",
"category": null
},
{
"instruction": "Categorize the following items by their type.\nOutput:\nApple - Fruit\nPen - Stationery\nBook - Literature",
"instruction_translated": "Clasifica los siguientes elementos por su tipo.\nProducci\u00f3n:\nManzana - fruta\nPEN - Papeler\u00eda\nLibro - Literatura",
"category": null
},
{
"instruction": "Generate a list of 3 effective strategies for studying.",
"instruction_translated": "Genere una lista de 3 estrategias efectivas para estudiar.",
"category": null
},
{
"instruction": "Find the answer to the following equation: (3+3)*3",
"instruction_translated": "Encuentre la respuesta a la siguiente ecuaci\u00f3n: (3+3)*3",
"category": null
},
{
"instruction": "What is the air speed velocity of an unladen swallow?",
"instruction_translated": "\u00bfCu\u00e1l es la velocidad de la velocidad del aire de una golondrina sin el mayor?",
"category": null
},
{
"instruction": "Compose a definition for this word: \"interlocutor\".",
"instruction_translated": "Componga una definici\u00f3n para esta palabra: \"Interlocutor\".",
"category": null
},
{
"instruction": "Complete this sentence with an example of a homophone.",
"instruction_translated": "Complete esta oraci\u00f3n con un ejemplo de hom\u00f3fono.",
"category": null
},
{
"instruction": "Generate a list of ways companies can use data to predict customer behavior",
"instruction_translated": "Genere una lista de formas en que las empresas pueden usar datos para predecir el comportamiento del cliente",
"category": null
},
{
"instruction": "Compose an essay about the pros and cons of the internet.",
"instruction_translated": "Componga un ensayo sobre los pros y los contras de Internet.",
"category": null
},
{
"instruction": "Name five countries and their capitals.",
"instruction_translated": "Nombra cinco pa\u00edses y sus capitales.",
"category": null
},
{
"instruction": "Produce a list of the top 5 NHL players in 2021.",
"instruction_translated": "Produce una lista de los 5 mejores jugadores de la NHL en 2021.",
"category": null
},
{
"instruction": "Create a list of five potential questions that someone could ask the assistant.",
"instruction_translated": "Cree una lista de cinco preguntas potenciales que alguien pueda hacerle al asistente.",
"category": null
},
{
"instruction": "Suggest a balanced diet for a marathon runner.",
"instruction_translated": "Sugerir una dieta equilibrada para un corredor de marat\u00f3n.",
"category": null
},
{
"instruction": "Generate a creative story that takes place in a kingdom ruled by a wicked witch.",
"instruction_translated": "Genere una historia creativa que tenga lugar en un reino gobernado por una bruja malvada.",
"category": null
},
{
"instruction": "Describe the meaning of perseverance.",
"instruction_translated": "Describe el significado de la perseverancia.",
"category": null
},
{
"instruction": "Name a species that lives in the Amazon Rainforest",
"instruction_translated": "Nombra una especie que vive en la selva amaz\u00f3nica",
"category": null
},
{
"instruction": "Generate a description of a book that takes place in a small rural town.",
"instruction_translated": "Genere una descripci\u00f3n de un libro que tenga lugar en una peque\u00f1a ciudad rural.",
"category": null
},
{
"instruction": "Generate a list of effective strategies to have a productive morning.",
"instruction_translated": "Genere una lista de estrategias efectivas para tener una ma\u00f1ana productiva.",
"category": null
},
{
"instruction": "Detect the tone of the sentence \"They were very happy to join the party\".",
"instruction_translated": "Detectar el tono de la oraci\u00f3n \"Estaban muy felices de unirse a la fiesta\".",
"category": null
},
{
"instruction": "What is the largest mountain in South America?",
"instruction_translated": "\u00bfCu\u00e1l es la monta\u00f1a m\u00e1s grande de Am\u00e9rica del Sur?",
"category": null
},
{
"instruction": "Create a unique print advertisement for a newly launched cheeseburger.",
"instruction_translated": "Cree un anuncio impreso \u00fanico para una hamburguesa con queso reci\u00e9n lanzada.",
"category": null
},
{
"instruction": "Develop a strategy for improving user engagement with an online product.",
"instruction_translated": "Desarrolle una estrategia para mejorar la participaci\u00f3n del usuario con un producto en l\u00ednea.",
"category": null
},
{
"instruction": "What are some common techniques used for data analysis?",
"instruction_translated": "\u00bfCu\u00e1les son algunas t\u00e9cnicas comunes utilizadas para el an\u00e1lisis de datos?",
"category": null
},
{
"instruction": "Identify the parties involved in the Panama Papers scandal.",
"instruction_translated": "Identifique las partes involucradas en el esc\u00e1ndalo de los Papeles de Panam\u00e1.",
"category": null
},
{
"instruction": "Suggest a nickname for the protagonist of the book Harry Potter.",
"instruction_translated": "Sugerir un apodo para el protagonista del libro Harry Potter.",
"category": null
},
{
"instruction": "Name a Shakespeare play.",
"instruction_translated": "Nombra una obra de Shakespeare.",
"category": null
},
{
"instruction": "Name two invasive species of plants in the United States.",
"instruction_translated": "Nombre dos especies invasoras de plantas en los Estados Unidos.",
"category": null
},
{
"instruction": "Write a script for a couple's argument.",
"instruction_translated": "Escribe un gui\u00f3n para el argumento de una pareja.",
"category": null
},
{
"instruction": "Create a list of household items that all families need.",
"instruction_translated": "Cree una lista de art\u00edculos para el hogar que todas las familias necesitan.",
"category": null
},
{
"instruction": "Reverse the order of the following sentence to change the emphasis\n\nHe was very careful with his words",
"instruction_translated": "Invertir el orden de la siguiente oraci\u00f3n para cambiar el \u00e9nfasis\n\nFue muy cuidadoso con sus palabras",
"category": null
},
{
"instruction": "Please give me a real-world analogy for the term \"network\".",
"instruction_translated": "Por favor, d\u00e9me una analog\u00eda del mundo real para el t\u00e9rmino \"red\".",
"category": null
},
{
"instruction": "Paraphrase this sentence:\n\n\"We will find a new way to do things\"",
"instruction_translated": "Parafraseando esta oraci\u00f3n:\n\n\"Encontraremos una nueva forma de hacer las cosas\"",
"category": null
},
{
"instruction": "Generate instructions to create a basic web page",
"instruction_translated": "Genere instrucciones para crear una p\u00e1gina web b\u00e1sica",
"category": null
},
{
"instruction": "Generate a story about a robot that gets stuck in a viral outbreak.",
"instruction_translated": "Genere una historia sobre un robot que se atasque en un brote viral.",
"category": null
},
{
"instruction": "Name some different types of magnetic materials.",
"instruction_translated": "Nombre algunos tipos diferentes de materiales magn\u00e9ticos.",
"category": null
},
{
"instruction": "Give me a list of countries in East Africa.",
"instruction_translated": "Dame una lista de pa\u00edses del este de \u00c1frica.",
"category": null
},
{
"instruction": "Can you name a few advantages of using a fermentation process in food production?",
"instruction_translated": "\u00bfPuede nombrar algunas ventajas de usar un proceso de fermentaci\u00f3n en la producci\u00f3n de alimentos?",
"category": null
},
{
"instruction": "Write a reasonable explanation for why the cost of living is higher in some cities.",
"instruction_translated": "Escriba una explicaci\u00f3n razonable de por qu\u00e9 el costo de vida es m\u00e1s alto en algunas ciudades.",
"category": null
},
{
"instruction": "Simplify the following definition: \n\"The magnitude of an earthquake is a measure of the energy released during the event and is based on the amplitude of the waves recorded on a seismograph.\"",
"instruction_translated": "Simplifique la siguiente definici\u00f3n: \n\"La magnitud de un terremoto es una medida de la energ\u00eda liberada durante el evento y se basa en la amplitud de las olas registradas en un sism\u00f3grafo\".",
"category": null
},
{
"instruction": "Write a rap verse about studying.",
"instruction_translated": "Escribe un verso de rap sobre estudiar.",
"category": null
},
{
"instruction": "List five ways to reduce energy consumption.",
"instruction_translated": "Enumere cinco formas de reducir el consumo de energ\u00eda.",
"category": null
},
{
"instruction": "Calculate the median of the following five numbers: 15, 37, 33, 29, and 28",
"instruction_translated": "Calcule la mediana de los siguientes cinco n\u00fameros: 15, 37, 33, 29 y 28",
"category": null
},
{
"instruction": "Write a story about a person using artificial intelligence",
"instruction_translated": "Escribe una historia sobre una persona que usa inteligencia artificial",
"category": null
},
{
"instruction": "Think of a creative way to transport a car from Denver to Texas.",
"instruction_translated": "Piense en una forma creativa de transportar un autom\u00f3vil desde Denver a Texas.",
"category": null
},
{
"instruction": "Construct a character sketch of a scientist.",
"instruction_translated": "Construya un bosquejo de personajes de un cient\u00edfico.",
"category": null
},
{
"instruction": "Compose an essay of at least 500 words that explores how climate change has impacted wildlife.",
"instruction_translated": "Componga un ensayo de al menos 500 palabras que explora c\u00f3mo el cambio clim\u00e1tico ha impactado la vida silvestre.",
"category": null
},
{
"instruction": "Write a Python function to print a Fibonacci sequence.",
"instruction_translated": "Escriba una funci\u00f3n de Python para imprimir una secuencia Fibonacci.",
"category": null
},
{
"instruction": "Name three organic compounds.",
"instruction_translated": "Nombre tres compuestos org\u00e1nicos.",
"category": null
},
{
"instruction": "Reword the following sentence so it has the same meaning: \"It was wishful thinking to think the project would be completed on time.\"",
"instruction_translated": "Vuelva a nudir la siguiente oraci\u00f3n para que tenga el mismo significado: \"Fue una ilusi\u00f3n pensar que el proyecto se completar\u00eda a tiempo\".",
"category": null
},
{
"instruction": "Create a user interface for a chatbot",
"instruction_translated": "Cree una interfaz de usuario para un chatbot",
"category": null
},
{
"instruction": "Come up with a unique way to decorate a bedroom.",
"instruction_translated": "Se le ocurra una forma \u00fanica de decorar un dormitorio.",
"category": null
},
{
"instruction": "Create a catchy slogan for a home security system.",
"instruction_translated": "Cree un eslogan pegadizo para un sistema de seguridad para el hogar.",
"category": null
},
{
"instruction": "Name three American presidents in the 21st century.",
"instruction_translated": "Nombra tres presidentes estadounidenses en el siglo XXI.",
"category": null
},
{
"instruction": "What is the term for the structural pattern of haiku?",
"instruction_translated": "\u00bfCu\u00e1l es el t\u00e9rmino para el patr\u00f3n estructural de Haiku?",
"category": null
},
{
"instruction": "Create a new word that has the following attributes: 1. verb, 2. can be used in everyday conversation, 3. consists of 4 letters",
"instruction_translated": "Cree una nueva palabra que tenga los siguientes atributos: 1. Verbo, 2. Puede usarse en la conversaci\u00f3n diaria, 3. Consiste en 4 letras",
"category": null
},
{
"instruction": "Compare and contrast the differences between supervised and unsupervised machine learning.",
"instruction_translated": "Compare y contrasta las diferencias entre el aprendizaje autom\u00e1tico supervisado y no supervisado.",
"category": null
},
{
"instruction": "How is a neural network different from a regular computer program?",
"instruction_translated": "\u00bfEn qu\u00e9 se diferencia una red neuronal de un programa de computadora regular?",
"category": null
},
{
"instruction": "Write the Roman numerals for the number 67",
"instruction_translated": "Escribe los n\u00fameros romanos para el n\u00famero 67",
"category": null
},
{
"instruction": "Create a list of 5 main points to cover in a speech about the importance preserving the environment.",
"instruction_translated": "Cree una lista de 5 puntos principales para cubrir en un discurso sobre la importancia que preserva el medio ambiente.",
"category": null
},
{
"instruction": "Interpret the meaning of the idiomatic expression \"Missing in action.\"",
"instruction_translated": "Interpreta el significado de la expresi\u00f3n idiom\u00e1tica \"que falta en acci\u00f3n\".",
"category": null
},
{
"instruction": "Suggest two strategies for good communication in a workplace.",
"instruction_translated": "Sugiera dos estrategias para una buena comunicaci\u00f3n en un lugar de trabajo.",
"category": null
},
{
"instruction": "What are the characteristics of a realistic fiction story?",
"instruction_translated": "\u00bfCu\u00e1les son las caracter\u00edsticas de una historia de ficci\u00f3n realista?",
"category": null
},
{
"instruction": "What are the ethical considerations you must make when using a GPT model?",
"instruction_translated": "\u00bfCu\u00e1les son las consideraciones \u00e9ticas que debe hacer al usar un modelo GPT?",
"category": null
},
{
"instruction": "Describe the impact of the COVID-19 pandemic on the US economy in less than 100 words.",
"instruction_translated": "Describa el impacto de la pandemia Covid-19 en la econom\u00eda estadounidense en menos de 100 palabras.",
"category": null
},
{
"instruction": "How does the Hubble Telescope work?",
"instruction_translated": "\u00bfC\u00f3mo funciona el telescopio Hubble?",
"category": null
},
{
"instruction": "In a short paragraph, explain how a blockchain works.",
"instruction_translated": "En un breve p\u00e1rrafo, explique c\u00f3mo funciona una cadena de bloques.",
"category": null
},
{
"instruction": "Provide a set of instructions for playing a game of checkers.",
"instruction_translated": "Proporcione un conjunto de instrucciones para jugar un juego de damas.",
"category": null
},
{
"instruction": "Rewrite this sentence to make it more concise and persuasive:\nOur company has many great products that all of our customers appreciate.",
"instruction_translated": "Reescribe esta oraci\u00f3n para que sea m\u00e1s conciso y persuasivo:\nNuestra empresa tiene muchos productos excelentes que todos nuestros clientes aprecian.",
"category": null
},
{
"instruction": "Identify the location of the Louvre Museum.",
"instruction_translated": "Identifique la ubicaci\u00f3n del Museo del Louvre.",
"category": null
},
{
"instruction": "Generate a list of new features that could be added to a task management app.",
"instruction_translated": "Genere una lista de nuevas caracter\u00edsticas que podr\u00edan agregarse a una aplicaci\u00f3n de gesti\u00f3n de tareas.",
"category": null
},
{
"instruction": "Write a Python code to get the maximum of two numbers.",
"instruction_translated": "Escriba un c\u00f3digo Python para obtener el m\u00e1ximo de dos n\u00fameros.",
"category": null
},
{
"instruction": "Create five appropriate usernames for a photography blog",
"instruction_translated": "Cree cinco nombres de usuario apropiados para un blog de fotograf\u00eda",
"category": null
},
{
"instruction": "Describe a house you would love to live in.",
"instruction_translated": "Describe una casa en la que te encantar\u00eda vivir.",
"category": null
},
{
"instruction": "Name one way to reduce carbon dioxide emissions.",
"instruction_translated": "Nombre una forma de reducir las emisiones de di\u00f3xido de carbono.",
"category": null
},
{
"instruction": "Generate a sentence using the following words: yogurt, frog, apple.",
"instruction_translated": "Genere una oraci\u00f3n usando las siguientes palabras: yogurt, rana, manzana.",
"category": null
},
{
"instruction": "Generate two interesting facts about potatoes.",
"instruction_translated": "Genere dos datos interesantes sobre las papas.",
"category": null
},
{
"instruction": "Describe the scene at a bustling farmers' market.",
"instruction_translated": "Describe la escena en un bullicioso mercado de agricultores.",
"category": null
},
{
"instruction": "Write a list of instructions on how to make French Fries.",
"instruction_translated": "Escriba una lista de instrucciones sobre c\u00f3mo hacer papas fritas.",
"category": null
},
{
"instruction": "Name two features that make each type of mobile phone platform unique.",
"instruction_translated": "Nombre dos caracter\u00edsticas que hacen que cada tipo de plataforma de tel\u00e9fono m\u00f3vil sea \u00fanico.",
"category": null
},
{
"instruction": "Outline a strategy for collecting large amounts of data.",
"instruction_translated": "Describe una estrategia para recopilar grandes cantidades de datos.",
"category": null
},
{
"instruction": "Describe rivers in 5 words.",
"instruction_translated": "Describe r\u00edos en 5 palabras.",
"category": null
},
{
"instruction": "What is the weather like in New York City today?",
"instruction_translated": "\u00bfC\u00f3mo es el clima hoy en la ciudad de Nueva York?",
"category": null
},
{
"instruction": "Generate a list of vegetables, fruits and proteins that are low in carbs.",
"instruction_translated": "Genere una lista de verduras, frutas y prote\u00ednas que sean bajas en carbohidratos.",
"category": null
},
{
"instruction": "Come up with a descriptive metaphor for the concept of resilience",
"instruction_translated": "Presente una met\u00e1fora descriptiva para el concepto de resiliencia",
"category": null
},
{
"instruction": "Rewrite the following phrase in a more positive way: \"It is what it is.\"",
"instruction_translated": "Reescribe la siguiente frase de una manera m\u00e1s positiva: \"Es lo que es\".",
"category": null
},
{
"instruction": "Create a sentence that describes the formation of a cloud.",
"instruction_translated": "Cree una oraci\u00f3n que describa la formaci\u00f3n de una nube.",
"category": null
},
{
"instruction": "Generate a programming exercise for someone learning C.",
"instruction_translated": "Generar un ejercicio de programaci\u00f3n para alguien que aprende C.",
"category": null
},
{
"instruction": "Identify the 5 major themes of Romeo and Juliet and provide an example of each.",
"instruction_translated": "Identifique los 5 temas principales de Romeo y Julieta y proporcione un ejemplo de cada uno.",
"category": null
},
{
"instruction": "Research the current state of autonomous cars and provide a brief overview of their prospects.",
"instruction_translated": "Investigue el estado actual de los autom\u00f3viles aut\u00f3nomos y proporcione una breve descripci\u00f3n de sus perspectivas.",
"category": null
},
{
"instruction": "Come up with five examples of language that can be used to communicate with a chatbot.",
"instruction_translated": "Presente cinco ejemplos de lenguaje que se pueden usar para comunicarse con un chatbot.",
"category": null
},
{
"instruction": "Create a list of activities for a weekend in the park.",
"instruction_translated": "Cree una lista de actividades para un fin de semana en el parque.",
"category": null
},
{
"instruction": "List five examples of data structures.",
"instruction_translated": "Enumere cinco ejemplos de estructuras de datos.",
"category": null
},
{
"instruction": "Break down the sentence into its constituents: \"I am going to the store\".",
"instruction_translated": "Desglose la oraci\u00f3n en sus constituyentes: \"Voy a la tienda\".",
"category": null
},
{
"instruction": "Generate a hypothetical scenario where a GPT model can be used to train a robot.",
"instruction_translated": "Genere un escenario hipot\u00e9tico donde se pueda usar un modelo GPT para entrenar un robot.",
"category": null
},
{
"instruction": "Design an experiment to test the ability of GPT models to natural language understanding.",
"instruction_translated": "Dise\u00f1e un experimento para probar la capacidad de los modelos GPT para la comprensi\u00f3n del lenguaje natural.",
"category": null
},
{
"instruction": "Compute the mean of the following numbers: 4, 11, 9, 8, 18",
"instruction_translated": "Calcule la media de los siguientes n\u00fameros: 4, 11, 9, 8, 18",
"category": null
},
{
"instruction": "Explain what quantum mechanics is.",
"instruction_translated": "Explica qu\u00e9 es la mec\u00e1nica cu\u00e1ntica.",
"category": null
},
{
"instruction": "List two methods for reducing water consumption.",
"instruction_translated": "Enumere dos m\u00e9todos para reducir el consumo de agua.",
"category": null
},
{
"instruction": "What kind of work environment is best for people with a Type B personality?",
"instruction_translated": "\u00bfQu\u00e9 tipo de ambiente de trabajo es mejor para las personas con una personalidad tipo B?",
"category": null
},
{
"instruction": "Name five women who have made significant contributions to science.",
"instruction_translated": "Nombra cinco mujeres que han hecho contribuciones significativas a la ciencia.",
"category": null
},
{
"instruction": "Generate a list of potential questions for a survey about internet usage.",
"instruction_translated": "Genere una lista de preguntas potenciales para una encuesta sobre el uso de Internet.",
"category": null
},
{
"instruction": "What is the difference between data science and artificial intelligence?",
"instruction_translated": "\u00bfCu\u00e1l es la diferencia entre la ciencia de datos y la inteligencia artificial?",
"category": null
},
{
"instruction": "Explain what \u201cMutual Exclusion\u201d means.",
"instruction_translated": "Explica lo que significa \"exclusi\u00f3n mutua\".",
"category": null
},
{
"instruction": "Find the area of a trapezoid with a height of 50m, top width of 20m, and a bottom width of 25m.",
"instruction_translated": "Encuentre el \u00e1rea de un trapecio con una altura de 50 m, ancho superior de 20 m y un ancho inferior de 25 m.",
"category": null
},
{
"instruction": "Create a poem that tells the story of a struggle against an unseen force.",
"instruction_translated": "Crea un poema que cuenta la historia de una lucha contra una fuerza invisible.",
"category": null
},
{
"instruction": "Generate an example of a use case for predictive analytics",
"instruction_translated": "Genere un ejemplo de un caso de uso para an\u00e1lisis predictivo",
"category": null
},
{
"instruction": "Describe the effects of exponential growth.",
"instruction_translated": "Describa los efectos del crecimiento exponencial.",
"category": null
},
{
"instruction": "Write a cross-stitch pattern that says \"the future is bright\".",
"instruction_translated": "Escriba un patr\u00f3n de punto de cruz que dice \"el futuro es brillante\".",
"category": null
},
{
"instruction": "Compare and contrast print media and digital media.",
"instruction_translated": "Compare y contrastan medios de impresi\u00f3n y medios digitales.",
"category": null
},
{
"instruction": "Explain why governments may choose to censor some content on the Internet.",
"instruction_translated": "Explique por qu\u00e9 los gobiernos pueden optar por censurar alg\u00fan contenido en Internet.",
"category": null
},
{
"instruction": "Given a description of the scientific method, summarize the steps in five sentences or fewer.",
"instruction_translated": "Dada una descripci\u00f3n del m\u00e9todo cient\u00edfico, resume los pasos en cinco oraciones o menos.",
"category": null
},
{
"instruction": "Identify whether the following statement is true or false. All mammals breathe through their nose.",
"instruction_translated": "Identifique si la siguiente declaraci\u00f3n es verdadera o falsa. Todos los mam\u00edferos respiran por la nariz.",
"category": null
},
{
"instruction": "Suggest a creative and engaging activity that could be done with a group of elementary school children.",
"instruction_translated": "Sugiera una actividad creativa y atractiva que se pueda hacer con un grupo de ni\u00f1os de primaria.",
"category": null
},
{
"instruction": "Generate a story about a character who is frustrated about their job.",
"instruction_translated": "Genere una historia sobre un personaje que est\u00e9 frustrado por su trabajo.",
"category": null
},
{
"instruction": "List the seven principles of Kwanzaa.",
"instruction_translated": "Enumere los siete principios de Kwanzaa.",
"category": null
},
{
"instruction": "Create a data visualization that shows the relationship between the number of hours of sleep and energy levels",
"instruction_translated": "Cree una visualizaci\u00f3n de datos que muestre la relaci\u00f3n entre la cantidad de horas de sue\u00f1o y los niveles de energ\u00eda",
"category": null
},
{
"instruction": "Compare the benefits of eating healthy food with the benefits of exercising regularly.",
"instruction_translated": "Compare los beneficios de comer alimentos saludables con los beneficios de hacer ejercicio regularmente.",
"category": null
},
{
"instruction": "Generate a list of creative gifts for children between the ages of 5 and 8",
"instruction_translated": "Genere una lista de regalos creativos para ni\u00f1os entre las edades de 5 y 8",
"category": null
},
{
"instruction": "Compare and contrast the two theories about the origin of the universe: Big Bang and Steady State.",
"instruction_translated": "Compare y contrasta las dos teor\u00edas sobre el origen del universo: Big Bang y Estado Estable.",
"category": null
},
{
"instruction": "Describe why bicycles are efficient modes of transportation.",
"instruction_translated": "Describa por qu\u00e9 las bicicletas son modos de transporte eficientes.",
"category": null
},
{
"instruction": "Construct a valid English sentence using the words \"fungus\", \"treat\", and \"enzyme\".",
"instruction_translated": "Construya una oraci\u00f3n en ingl\u00e9s v\u00e1lida usando las palabras \"hongo\", \"tratar\" y \"enzima\".",
"category": null
},
{
"instruction": "Write a poem that describes the beauty of summer days.",
"instruction_translated": "Escribe un poema que describe la belleza de los d\u00edas de verano.",
"category": null
},
{
"instruction": "Look up the definition of \"artificial intelligence\"",
"instruction_translated": "Busque la definici\u00f3n de \"inteligencia artificial\"",
"category": null
},
{
"instruction": "Compose a headline showcasing your company's most important values.",
"instruction_translated": "Componga un titular que muestra los valores m\u00e1s importantes de su empresa.",
"category": null
},
{
"instruction": "How does the human nervous system function?",
"instruction_translated": "\u00bfC\u00f3mo funciona el sistema nervioso humano?",
"category": null
},
{
"instruction": "What countries were members of the Axis Powers in World War II?",
"instruction_translated": "\u00bfQu\u00e9 pa\u00edses eran miembros de los poderes del eje en la Segunda Guerra Mundial?",
"category": null
},
{
"instruction": "Suggest a solution for reducing energy consumption",
"instruction_translated": "Sugerir una soluci\u00f3n para reducir el consumo de energ\u00eda",
"category": null
},
{
"instruction": "Collect and summarize five facts about the Apollo 11 mission.",
"instruction_translated": "Recopile y resume cinco hechos sobre la misi\u00f3n Apollo 11.",
"category": null
},
{
"instruction": "Prove that if AB is a parallelogram, then \u2220A + \u2220B = 180\u00b0.",
"instruction_translated": "Demuestre que si AB es un paralelograma, entonces \u2220A + \u2220B = 180 \u00b0.",
"category": null
},
{
"instruction": "Describe the experience of being in Flagstaff, Arizona",
"instruction_translated": "Describe la experiencia de estar en Flagstaff, Arizona",
"category": null
},
{
"instruction": "Make a list of 5 budget-friendly ways to improve one's home.",
"instruction_translated": "Haga una lista de 5 formas econ\u00f3micas para mejorar el hogar.",
"category": null
},
{
"instruction": "Predict what the Dow Jones Industrial Average will be when the market closes today.",
"instruction_translated": "Predecir cu\u00e1l ser\u00e1 el promedio industrial Dow Jones cuando el mercado se cierre hoy.",
"category": null
},
{
"instruction": "Describe an example of how to provide excellent customer service",
"instruction_translated": "Describa un ejemplo de c\u00f3mo proporcionar un excelente servicio al cliente.",
"category": null
},
{
"instruction": "Sort the following list according to size: skyscraper, shed, house, bridge.",
"instruction_translated": "Ordene la siguiente lista seg\u00fan el tama\u00f1o: rascacielos, cobertizo, casa, puente.",
"category": null
},
{
"instruction": "What is the result when 8 is added to 3 ?",
"instruction_translated": "\u00bfCu\u00e1l es el resultado cuando se agrega 8 a 3?",
"category": null
},
{
"instruction": "Generate a convincing opening line for a science fiction book.",
"instruction_translated": "Genere una l\u00ednea de apertura convincente para un libro de ciencia ficci\u00f3n.",
"category": null
},
{
"instruction": "What items could a person put in an emergency kit?",
"instruction_translated": "\u00bfQu\u00e9 art\u00edculos podr\u00edan poner una persona en un kit de emergencia?",
"category": null
},
{
"instruction": "Fix the following sentence: \"The bear run through the forest\"",
"instruction_translated": "Arregle la siguiente oraci\u00f3n: \"El oso corre por el bosque\"",
"category": null
},
{
"instruction": "What is the thesis of the article \u201cA Study of the Sky\u201d",
"instruction_translated": "\u00bfCu\u00e1l es la tesis del art\u00edculo \"Un estudio del cielo\"",
"category": null
},
{
"instruction": "Identify the atmosphere of a murder mystery.",
"instruction_translated": "Identificar la atm\u00f3sfera de un misterio de asesinato.",
"category": null
},
{
"instruction": "Compare and contrast humans and animals",
"instruction_translated": "Compare y contrasta a los humanos y animales",
"category": null
},
{
"instruction": "Name five things that are made of wood.",
"instruction_translated": "Nombra cinco cosas que est\u00e1n hechas de madera.",
"category": null
},
{
"instruction": "Rewrite the following statement in the past tense: \"They are planning to launch a new website.\"",
"instruction_translated": "Reescribe la siguiente declaraci\u00f3n en tiempo pasado: \"Est\u00e1n planeando lanzar un nuevo sitio web\".",
"category": null
},
{
"instruction": "Describe a good way to stay organized.",
"instruction_translated": "Describa una buena manera de mantenerse organizado.",
"category": null
},
{
"instruction": "What is the most important thing a leader needs to do to be successful?",
"instruction_translated": "\u00bfQu\u00e9 es lo m\u00e1s importante que un l\u00edder debe hacer para tener \u00e9xito?",
"category": null
},
{
"instruction": "Name a technological advancement from the last 10 years",
"instruction_translated": "Nombra un avance tecnol\u00f3gico de los \u00faltimos 10 a\u00f1os",
"category": null
},
{
"instruction": "What can you do in order to cope with daily stress?",
"instruction_translated": "\u00bfQu\u00e9 puedes hacer para hacer frente al estr\u00e9s diario?",
"category": null
},
{
"instruction": "Explain why would it be beneficial to use an existing classification model rather than building a new one.",
"instruction_translated": "Explique por qu\u00e9 ser\u00eda beneficioso usar un modelo de clasificaci\u00f3n existente en lugar de construir uno nuevo.",
"category": null
},
{
"instruction": "Create a computational design to move a robotic arm using the minimum amount of code.",
"instruction_translated": "Cree un dise\u00f1o computacional para mover un brazo rob\u00f3tico utilizando la cantidad m\u00ednima de c\u00f3digo.",
"category": null
},
{
"instruction": "Comparatively explain online shopping and in-store shopping.",
"instruction_translated": "Explique comparativamente las compras en l\u00ednea y las compras en la tienda.",
"category": null
},
{
"instruction": "Summarize the advantages of studying abroad",
"instruction_translated": "Resumir las ventajas de estudiar en el extranjero",
"category": null
},
{
"instruction": "Generate a sentence using the following words: tiger, river, dance",
"instruction_translated": "Genere una oraci\u00f3n usando las siguientes palabras: tigre, r\u00edo, baile",
"category": null
},
{
"instruction": "Design a data structure to store a dictionary of 5,000 words.",
"instruction_translated": "Dise\u00f1e una estructura de datos para almacenar un diccionario de 5,000 palabras.",
"category": null
},
{
"instruction": "Write a haiku poem that reflects the beauty of nature.",
"instruction_translated": "Escribe un poema haiku que refleje la belleza de la naturaleza.",
"category": null
},
{
"instruction": "Create a description of a small town by the ocean.",
"instruction_translated": "Cree una descripci\u00f3n de un peque\u00f1o pueblo junto al oc\u00e9ano.",
"category": null
},
{
"instruction": "List 5 ways to improve working conditions in an office.",
"instruction_translated": "Enumere 5 formas de mejorar las condiciones de trabajo en una oficina.",
"category": null
},
{
"instruction": "Create a list of three daily habits that could lead to creativity breakthroughs.",
"instruction_translated": "Cree una lista de tres h\u00e1bitos diarios que podr\u00edan conducir a avances de creatividad.",
"category": null
},
{
"instruction": "Suggest three social media campaigns to promote the product.",
"instruction_translated": "Sugiera tres campa\u00f1as de redes sociales para promover el producto.",
"category": null
},
{
"instruction": "Provide a CSS code for making all text boxes visible on the page.",
"instruction_translated": "Proporcione un c\u00f3digo CSS para hacer que todos los cuadros de texto sean visibles en la p\u00e1gina.",
"category": null
},
{
"instruction": "What is the role of the International Criminal Court?",
"instruction_translated": "\u00bfCu\u00e1l es el papel de la Corte Penal Internacional?",
"category": null
},
{
"instruction": "Explain the concept of Moore's Law.",
"instruction_translated": "Explica el concepto de la ley de Moore.",
"category": null
},
{
"instruction": "What are the best strategies to reduce emissions?",
"instruction_translated": "\u00bfCu\u00e1les son las mejores estrategias para reducir las emisiones?",
"category": null
},
{
"instruction": "Suggest a way to generate web traffic.",
"instruction_translated": "Sugerir una forma de generar tr\u00e1fico web.",
"category": null
},
{
"instruction": "Write a dialog for two characters talking about a recent movie they watched",
"instruction_translated": "Escribe un di\u00e1logo para dos personajes que hablan sobre una pel\u00edcula reciente que vieron",
"category": null
},
{
"instruction": "Explain the purpose of the current US federal income tax system.",
"instruction_translated": "Explique el prop\u00f3sito del actual sistema de impuestos sobre la renta federal de los Estados Unidos.",
"category": null
},
{
"instruction": "Generate instructions for how to write a speech",
"instruction_translated": "Genere instrucciones sobre c\u00f3mo escribir un discurso",
"category": null
},
{
"instruction": "Describe the process of photosynthesis to me.",
"instruction_translated": "Describe el proceso de fotos\u00edntesis para m\u00ed.",
"category": null
},
{
"instruction": "Write a song lyric about birds.",
"instruction_translated": "Escribe una canci\u00f3n de Lyric sobre p\u00e1jaros.",
"category": null
},
{
"instruction": "Write a story about a young girl and her journey of self-discovery",
"instruction_translated": "Escribe una historia sobre una ni\u00f1a y su viaje de autodescubrimiento",
"category": null
},
{
"instruction": "Create a shopping list for cereal, milk and eggs.",
"instruction_translated": "Cree una lista de compras para cereales, leche y huevos.",
"category": null
},
{
"instruction": "Imagine a device that can help you read faster. Describe the device.",
"instruction_translated": "Imagine un dispositivo que puede ayudarlo a leer m\u00e1s r\u00e1pido. Describe el dispositivo.",
"category": null
},
{
"instruction": "Select the incorrect definition for the word \"timid\"",
"instruction_translated": "Seleccione la definici\u00f3n incorrecta de la palabra \"t\u00edmida\"",
"category": null
},
{
"instruction": "Justify why users need permissions before they can access certain data",
"instruction_translated": "Justifique por qu\u00e9 los usuarios necesitan permisos antes de que puedan acceder a ciertos datos",
"category": null
},
{
"instruction": "Suggest an action to reduce CO2 emissions",
"instruction_translated": "Sugerir una acci\u00f3n para reducir las emisiones de CO2",
"category": null
},
{
"instruction": "Generate a story about a person going on a last-minute vacation.",
"instruction_translated": "Genere una historia sobre una persona que se vaya de vacaciones de \u00faltimo minuto.",
"category": null
},
{
"instruction": "Brainstorm five innovative uses of AI",
"instruction_translated": "Lluvia de ideas cinco usos innovadores de la IA",
"category": null
},
{
"instruction": "Make a list of at least 5 benefits of virtual meetings.",
"instruction_translated": "Haga una lista de al menos 5 beneficios de las reuniones virtuales.",
"category": null
},
{
"instruction": "Explain the recent changes in Indian banking policies.",
"instruction_translated": "Explique los cambios recientes en las pol\u00edticas bancarias indias.",
"category": null
},
{
"instruction": "Rewrite the following sentence in a more formal way:\n\n\"I want to learn about this new app.\"",
"instruction_translated": "Reescribe la siguiente oraci\u00f3n de una manera m\u00e1s formal:\n\n\"Quiero aprender sobre esta nueva aplicaci\u00f3n\".",
"category": null
},
{
"instruction": "Give two reasons to buy a car.",
"instruction_translated": "D\u00e9 dos razones para comprar un autom\u00f3vil.",
"category": null
},
{
"instruction": "Compare and contrast two types of computer networks.",
"instruction_translated": "Compare y contrasta dos tipos de redes inform\u00e1ticas.",
"category": null
},
{
"instruction": "Explain the significance of the number 10 in the Bible.",
"instruction_translated": "Explique la importancia del n\u00famero 10 en la Biblia.",
"category": null
},
{
"instruction": "Suggest a new feature for Gmail",
"instruction_translated": "Sugerir una nueva caracter\u00edstica para Gmail",
"category": null
},
{
"instruction": "Create a CSS code to style a button with a bright green background and white text.",
"instruction_translated": "Cree un c\u00f3digo CSS para peinar un bot\u00f3n con un fondo verde brillante y un texto blanco.",
"category": null
},
{
"instruction": "Write your own haiku.",
"instruction_translated": "Escribe tu propio haiku.",
"category": null
},
{
"instruction": "Generate a set of instructions for making a sandwich",
"instruction_translated": "Genere un conjunto de instrucciones para hacer un s\u00e1ndwich",
"category": null
},
{
"instruction": "Invent a new word by combining two existing words.",
"instruction_translated": "Inventar una nueva palabra combinando dos palabras existentes.",
"category": null
},
{
"instruction": "Brainstorm three ideas for an outdoor activity.",
"instruction_translated": "Lluvia de ideas sobre tres ideas para una actividad al aire libre.",
"category": null
},
{
"instruction": "Write a code snippet that prints out a list of integers from 1 to 10.",
"instruction_translated": "Escriba un fragmento de c\u00f3digo que imprima una lista de enteros del 1 al 10.",
"category": null
},
{
"instruction": "What techniques should be used for text summarization?",
"instruction_translated": "\u00bfQu\u00e9 t\u00e9cnicas deben usarse para el resumen de texto?",
"category": null
},
{
"instruction": "Given a sentence, identify the closest synonym of the word \"enjoy\".",
"instruction_translated": "Dada una oraci\u00f3n, identifique el sin\u00f3nimo m\u00e1s cercano de la palabra \"disfrutar\".",
"category": null
},
{
"instruction": "Generate a description of a new cryptocurrency.",
"instruction_translated": "Genere una descripci\u00f3n de una nueva criptomoneda.",
"category": null