Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
dataset: fr-en-tupuri-translation
|
3 |
+
language:
|
4 |
+
- fr
|
5 |
+
- en
|
6 |
+
- tpi
|
7 |
+
multilinguality: translation
|
8 |
+
license: mit
|
9 |
+
task_categories:
|
10 |
+
- translation
|
11 |
+
task_ids:
|
12 |
+
- machine-translation
|
13 |
+
---
|
14 |
+
|
15 |
+
# French-English to Tupuri Translation Dataset
|
16 |
+
|
17 |
+
## Dataset Summary
|
18 |
+
|
19 |
+
This dataset provides sentence-level translations from **French and English into Tupuri**, a low-resource language spoken in northern Cameroon and southwestern Chad. It aims to support research in African language translation and NLP for underrepresented languages.
|
20 |
+
|
21 |
+
## Supported Tasks and Leaderboards
|
22 |
+
|
23 |
+
- **Machine Translation**: French/English → Tupuri.
|
24 |
+
- **Multilingual modeling**: Useful for zero-shot or low-resource model training.
|
25 |
+
|
26 |
+
## Languages
|
27 |
+
|
28 |
+
- `fr`: French
|
29 |
+
- `en`: English
|
30 |
+
- `tpi`: Tupuri (ISO 639-3: tur)
|
31 |
+
|
32 |
+
## Dataset Structure
|
33 |
+
|
34 |
+
The dataset is in Excel format with the following columns:
|
35 |
+
|
36 |
+
| french_sentence | english_sentence | tupuri_sentence |
|
37 |
+
|------------------|-------------------|-------------------|
|
38 |
+
| Merci | Thank you | Miindo |
|
39 |
+
|
40 |
+
## Data Splits
|
41 |
+
|
42 |
+
All data is currently in one file. Manual splits into train/val/test are recommended.
|
43 |
+
|
44 |
+
## Usage
|
45 |
+
|
46 |
+
```python
|
47 |
+
from datasets import load_dataset
|
48 |
+
|
49 |
+
dataset = load_dataset("your-username/fr-en-tupuri-translation")
|
50 |
+
print(dataset["train"][0])
|
51 |
+
|
52 |
+
|
53 |
+
@dataset{fr_en_tupuri_translation_2025,
|
54 |
+
title = {French-English to Tupuri Translation Dataset},
|
55 |
+
author = {Nopole Flairan, Ngana Noa},
|
56 |
+
year = {2025},
|
57 |
+
publisher = {Hugging Face},
|
58 |
+
note = {Low-resource language dataset for Tupuri translation.}
|
59 |
+
}
|