Datasets:
Modalities:
Text
Formats:
json
Languages:
Spanish
Size:
10K - 100K
ArXiv:
Tags:
instruction tuning
License:
pinzhenchen
commited on
Commit
•
c400c0d
1
Parent(s):
40bf921
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,44 @@
|
|
1 |
---
|
2 |
license: cc-by-nc-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-nc-4.0
|
3 |
+
task_categories:
|
4 |
+
- text-generation
|
5 |
+
- question-answering
|
6 |
+
language:
|
7 |
+
- es
|
8 |
+
tags:
|
9 |
+
- instruction tuning
|
10 |
---
|
11 |
+
|
12 |
+
### Data Description
|
13 |
+
|
14 |
+
This HF data repository contains the Spanish Alpaca dataset used in our study of monolingual versus multilingual instruction tuning.
|
15 |
+
* [GitHub](https://github.com/hplt-project/monolingual-multilingual-instruction-tuning/tree/main)
|
16 |
+
* [Paper](https://arxiv.org/abs/2309.08958)
|
17 |
+
|
18 |
+
#### Creation
|
19 |
+
* Machine-translated from [yahma/alpaca-cleaned](https://huggingface.co/datasets/yahma/alpaca-cleaned) into Spanish.
|
20 |
+
|
21 |
+
#### Usage
|
22 |
+
* This data is intended to be used for Spanish instruction tuning.
|
23 |
+
* The dataset has roughly 52K instances in the JSON format.
|
24 |
+
* Each instance has an instruction, an output, and an optional input. An example is shown below:
|
25 |
+
```
|
26 |
+
{
|
27 |
+
"instruction": "Cuáles son los tres colores primarios?",
|
28 |
+
"input": "",
|
29 |
+
"output": "Los tres colores primarios son rojo, azul y amarillo. Estos colores se llaman primarios porque no pueden ser creados mezclando otros colores y todos los otros colores se pueden hacer combinando en varias proporciones. En el sistema de color aditivo, utilizado para la luz, los colores primarios son rojo, verde y azul (RGB)."
|
30 |
+
}
|
31 |
+
```
|
32 |
+
|
33 |
+
#### Known issues
|
34 |
+
* The machine translation process might have corrupted data containing code, cross-lingual tasks, grammatical error correction tasks, etc.
|
35 |
+
|
36 |
+
#### Citation
|
37 |
+
```
|
38 |
+
@inproceedings{chen-etal-2024-monolingual,
|
39 |
+
title="Monolingual or multilingual instruction tuning: Which makes a better {Alpaca}",
|
40 |
+
author="Pinzhen Chen and Shaoxiong Ji and Nikolay Bogoychev and Andrey Kutuzov and Barry Haddow and Kenneth Heafield",
|
41 |
+
year="2024",
|
42 |
+
booktitle = "Findings of the Association for Computational Linguistics: EACL 2024",
|
43 |
+
}
|
44 |
+
```
|