Cong123779 commited on
Commit
52d9a40
·
verified ·
1 Parent(s): 7aadb7a

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - vi
4
+ - en
5
+ license: mit
6
+ task_categories:
7
+ - translation
8
+ tags:
9
+ - vietnamese
10
+ - english
11
+ - parallel-corpus
12
+ - bidirectional
13
+ size_categories:
14
+ - 1M<n<10M
15
+ ---
16
+
17
+ # MTET Vietnamese–English Bidirectional Dataset (Cleaned)
18
+
19
+ This is the cleaned, bidirectional version of the MTET (Machine Translation Evaluation for Translation) Vietnamese–English parallel corpus used to train the [vi-en-transformer-25m](https://huggingface.co/Cong123779/vi-en-transformer-25m) model.
20
+
21
+ ## Dataset Description
22
+ - **Source:** MTET corpus (public Vietnamese–English parallel data)
23
+ - **Processing:** Cleaned with heuristic filters, bidirectional pairs added (both VI→EN and EN→VI)
24
+ - **Format:** CSV with columns `source` and `target`
25
+ - **Size:** ~2 GB (cleaned)
26
+
27
+ ## Files
28
+ | File | Description |
29
+ |---|---|
30
+ | `mtet_bidirectional_cleaned.csv` | Main training data (bidirectional, cleaned) |
31
+
32
+ ## Usage
33
+ ```python
34
+ import pandas as pd
35
+ df = pd.read_csv("mtet_bidirectional_cleaned.csv")
36
+ print(df.head())
37
+ # source target
38
+ # xin chào hello
39
+ # hello xin chào
40
+ ```
41
+
42
+ ## License
43
+ The dataset follows the original MTET distribution license (MIT).