21uyennt commited on
Commit
24deba5
·
verified ·
1 Parent(s): 355e00f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +64 -32
README.md CHANGED
@@ -1,32 +1,64 @@
1
- ---
2
- license: apache-2.0
3
- dataset_info:
4
- features:
5
- - name: Bahnar
6
- dtype: string
7
- - name: English
8
- dtype: string
9
- - name: Vietnamese
10
- dtype: string
11
- splits:
12
- - name: train
13
- num_bytes: 3813305
14
- num_examples: 9275
15
- - name: test
16
- num_bytes: 850954
17
- num_examples: 1987
18
- - name: validation
19
- num_bytes: 846398
20
- num_examples: 1988
21
- download_size: 2994290
22
- dataset_size: 5510657
23
- configs:
24
- - config_name: default
25
- data_files:
26
- - split: train
27
- path: data/train-*
28
- - split: test
29
- path: data/test-*
30
- - split: validation
31
- path: data/validation-*
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.