Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,32 +1,64 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- translation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
- vi
|
| 8 |
+
- bah
|
| 9 |
+
tags:
|
| 10 |
+
- translation
|
| 11 |
+
- multilingual
|
| 12 |
+
- bahnar
|
| 13 |
+
- vietnamese
|
| 14 |
+
- english
|
| 15 |
+
size_categories:
|
| 16 |
+
- 10K<n<100K
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# EnViBa Dataset
|
| 20 |
+
|
| 21 |
+
This dataset contains parallel translations between three languages:
|
| 22 |
+
- **Bahnar** (bah): An Austroasiatic language spoken in Vietnam and Cambodia
|
| 23 |
+
- **English** (en)
|
| 24 |
+
- **Vietnamese** (vi)
|
| 25 |
+
|
| 26 |
+
## Dataset Structure
|
| 27 |
+
|
| 28 |
+
The dataset contains three splits:
|
| 29 |
+
- `train`: Training data
|
| 30 |
+
- `test`: Test data
|
| 31 |
+
- `validation`: Validation data
|
| 32 |
+
|
| 33 |
+
Each example has three fields:
|
| 34 |
+
- `bahnar`: Text in Bahnar language
|
| 35 |
+
- `english`: Text in English
|
| 36 |
+
- `vietnamese`: Text in Vietnamese
|
| 37 |
+
|
| 38 |
+
## Usage
|
| 39 |
+
|
| 40 |
+
```python
|
| 41 |
+
from datasets import load_dataset
|
| 42 |
+
|
| 43 |
+
dataset = load_dataset("21uyennt/enviba")
|
| 44 |
+
|
| 45 |
+
# Access different splits
|
| 46 |
+
train_data = dataset["train"]
|
| 47 |
+
test_data = dataset["test"]
|
| 48 |
+
validation_data = dataset["validation"]
|
| 49 |
+
|
| 50 |
+
# Example usage
|
| 51 |
+
for example in train_data:
|
| 52 |
+
print("Bahnar:", example["bahnar"])
|
| 53 |
+
print("English:", example["english"])
|
| 54 |
+
print("Vietnamese:", example["vietnamese"])
|
| 55 |
+
print("---")
|
| 56 |
+
```
|
| 57 |
+
|
| 58 |
+
## Languages
|
| 59 |
+
|
| 60 |
+
- **Bahnar**: An Austroasiatic language with approximately 174,000 speakers
|
| 61 |
+
- **English**: Global lingua franca
|
| 62 |
+
- **Vietnamese**: Official language of Vietnam
|
| 63 |
+
|
| 64 |
+
This dataset enables multilingual translation research and can be used for training translation models between these language pairs.
|