Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,151 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- ca
|
| 4 |
+
- arn
|
| 5 |
+
multilinguality:
|
| 6 |
+
- multilingual
|
| 7 |
+
pretty_name: Catalan-Aranese Parallel Corpus
|
| 8 |
+
size_categories:
|
| 9 |
+
- 100M<n<1B
|
| 10 |
+
task_categories:
|
| 11 |
+
- translation
|
| 12 |
+
license: cc-by-4.0
|
| 13 |
+
---
|
| 14 |
+
# Dataset Card for Catalan-Aranese Parallel Corpus
|
| 15 |
+
|
| 16 |
+
## Dataset Description
|
| 17 |
+
|
| 18 |
+
- **Point of Contact:** langtech@bsc.es
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
### Dataset Summary
|
| 22 |
+
|
| 23 |
+
Parallel corpus covering the low-resource language pair Catalan-Aranese. Built by aggregating and filtering multiple public sources, it provides sentence-level alignments for training Machine Translation systems. The dataset includes synthetic Catalan translations generated from Aranese using [SalamandraTA 7B Instruct](https://huggingface.co/BSC-LT/salamandra-7b-instruct).
|
| 24 |
+
|
| 25 |
+
### Supported Tasks and Leaderboards
|
| 26 |
+
|
| 27 |
+
The dataset is primarily designed for Machine Translation between Catalan and Aranese. Typical uses include supervised MT training, fine-tuning multilingual models, and data augmentation.
|
| 28 |
+
|
| 29 |
+
### Languages
|
| 30 |
+
|
| 31 |
+
The dataset includes parallel sentences across the following language pairs:
|
| 32 |
+
|
| 33 |
+
| Language pair | Codes | Size (sentences)
|
| 34 |
+
|-------------------|-------|------------------
|
| 35 |
+
| Catalan-Aranese | ca-arn | 539,110
|
| 36 |
+
|
| 37 |
+
## Dataset Structure
|
| 38 |
+
|
| 39 |
+
### Data Instances
|
| 40 |
+
|
| 41 |
+
The dataset is provided in tsv format. Each row contains a parallel sentence pair with the following structure:
|
| 42 |
+
|
| 43 |
+
```json
|
| 44 |
+
{
|
| 45 |
+
"l1_sentence": "Example sentence in first language",
|
| 46 |
+
"l2_sentence": "Example sentence in second language",
|
| 47 |
+
"l1": "en",
|
| 48 |
+
"l2": "es"
|
| 49 |
+
}
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
### Data Fields
|
| 53 |
+
|
| 54 |
+
- `l1_sentence`: The sentence in the first language (string)
|
| 55 |
+
- `l2_sentence`: The parallel sentence in the second language (string)
|
| 56 |
+
- `l1`: ISO 639-1 code of the first language (string)
|
| 57 |
+
- `l2`: ISO 639-1 code of the second language (string)
|
| 58 |
+
|
| 59 |
+
### Data Splits
|
| 60 |
+
|
| 61 |
+
The dataset contains a single split: `train`.
|
| 62 |
+
|
| 63 |
+
## Dataset Creation
|
| 64 |
+
|
| 65 |
+
### Curation Rationale
|
| 66 |
+
|
| 67 |
+
This dataset is aimed at promoting the development of Machine Translation between Catalan and Aranese, supporting research in bilingual and multilingual NLP, and facilitating the development of translation systems for low-resource language pairs.
|
| 68 |
+
|
| 69 |
+
### Source Data
|
| 70 |
+
|
| 71 |
+
#### Initial Data Collection and Normalization
|
| 72 |
+
|
| 73 |
+
The corpus is a combination of the following original datasets collected via direct datasharing agreements between the BSC and other parties, as well as public web-based sources:
|
| 74 |
+
|
| 75 |
+
- **DOGC**: Parallel sentences extracted from Diari Oficial de la Generalitat de Catalunya
|
| 76 |
+
- **Jordi Suils Translations**: Add description
|
| 77 |
+
- **Pilar**: Pan-Iberian Language Archival Resource corpus
|
| 78 |
+
- **IEA**: Sentences from Institut d'Estudis Aranesi
|
| 79 |
+
- **Conselh News Articles**: Parallel sentences extracted from Conselh Generau d'Aran
|
| 80 |
+
- **Edictes**: Add description
|
| 81 |
+
- **Escaletas TV3**: Add description
|
| 82 |
+
|
| 83 |
+
**Synthetic Data Generation:**
|
| 84 |
+
|
| 85 |
+
For monolingual Aranese data, synthetic Catalan parallel data was created by translating using [SalamandraTA 7B Instruct](https://huggingface.co/BSC-LT/salamandra-7b-instruct).
|
| 86 |
+
|
| 87 |
+
**Data Filtering and Normalization:**
|
| 88 |
+
|
| 89 |
+
The data underwent minimal filtering due to data scarcity:
|
| 90 |
+
- **Alignment filtering**: Sentence-level alignments were calculated using [LaBSE](https://huggingface.co/sentence-transformers/LaBSE), and sentence pairs with a similarity score below 0.75 were discarded.
|
| 91 |
+
- **Language identification**: The probability of being the target language was calculated using [Lingua.py](https://github.com/pemistahl/lingua-py), and sentences with a language probability score below 0.5 were discarded.
|
| 92 |
+
- **Normalization**: Text was minimally normalized using [Bifixer](https://github.com/bitextor/bifixer) to ensure consistency and quality.
|
| 93 |
+
- **Deduplication**: The filtered datasets were deduplicated to remove redundant sentence pairs.
|
| 94 |
+
|
| 95 |
+
The filtered and normalized datasets were then concatenated to form the final corpus.
|
| 96 |
+
|
| 97 |
+
#### Who are the source language producers?
|
| 98 |
+
|
| 99 |
+
- Various open-source and institutional contributors
|
| 100 |
+
|
| 101 |
+
### Annotations
|
| 102 |
+
|
| 103 |
+
#### Annotation process
|
| 104 |
+
|
| 105 |
+
The dataset does not contain any manual annotations beyond the parallel alignments, which were either preserved from source datasets or validated through automated alignment scoring.
|
| 106 |
+
|
| 107 |
+
#### Who are the annotators?
|
| 108 |
+
|
| 109 |
+
[N/A]
|
| 110 |
+
|
| 111 |
+
### Personal and Sensitive Information
|
| 112 |
+
|
| 113 |
+
Given that this dataset is derived from pre-existing datasets that may contain crawled data, and that no specific anonymisation process has been applied, personal and sensitive information may be present in the data. This needs to be considered when using the data for training models.
|
| 114 |
+
|
| 115 |
+
## Considerations for Using the Data
|
| 116 |
+
|
| 117 |
+
### Social Impact of Dataset
|
| 118 |
+
|
| 119 |
+
By providing this large-scale multilingual resource, we intend to promote multilingual NLP research and improve the accessibility of machine translation for the included languages, particularly for language pairs that may be underrepresented in existing resources. This contributes to reducing language barriers and supporting linguistic diversity in NLP applications.
|
| 120 |
+
|
| 121 |
+
### Discussion of Biases
|
| 122 |
+
|
| 123 |
+
No specific bias mitigation strategies were applied to this dataset beyond quality filtering. Inherent biases may exist within the data, reflecting the biases present in the source datasets, which include web-crawled content, subtitles, news articles, and other user-generated or institutionally produced text. Users should be aware that the es-hi and es-zh datasets contain synthetically generated Spanish text, which may reflect biases present in the translation model used.
|
| 124 |
+
|
| 125 |
+
### Other Known Limitations
|
| 126 |
+
|
| 127 |
+
The dataset contains data of a general domain. Application of this dataset in more specific domains such as biomedical, legal, technical, or other specialized fields would be of limited use. Additionally, the synthetic Spanish data in es-hi and es-zh pairs may not achieve the same quality or naturalness as naturally parallel data.
|
| 128 |
+
|
| 129 |
+
## Additional Information
|
| 130 |
+
|
| 131 |
+
### Dataset Curators
|
| 132 |
+
|
| 133 |
+
Language Technologies Unit at the Barcelona Supercomputing Center (langtech@bsc.es).
|
| 134 |
+
|
| 135 |
+
### Funding
|
| 136 |
+
|
| 137 |
+
This work is funded by the Ministerio para la Transformación Digital y de la Función Pública - Funded by EU – NextGenerationEU within the framework of the project Desarrollo de Modelos ALIA.
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
### Licensing Information
|
| 141 |
+
|
| 142 |
+
This work is licensed under a [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/) licence.
|
| 143 |
+
|
| 144 |
+
|
| 145 |
+
### Citation Information
|
| 146 |
+
|
| 147 |
+
[N/A]
|
| 148 |
+
|
| 149 |
+
### Contributions
|
| 150 |
+
|
| 151 |
+
[N/A]
|