File size: 1,212 Bytes
52d9a40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
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
33
34
35
36
37
38
39
40
41
42
43
44
---
language:
  - vi
  - en
license: mit
task_categories:
  - translation
tags:
  - vietnamese
  - english
  - parallel-corpus
  - bidirectional
size_categories:
  - 1M<n<10M
---

# MTET Vietnamese–English Bidirectional Dataset (Cleaned)

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.

## Dataset Description
- **Source:** MTET corpus (public Vietnamese–English parallel data)
- **Processing:** Cleaned with heuristic filters, bidirectional pairs added (both VI→EN and EN→VI)
- **Format:** CSV with columns `source` and `target`
- **Size:** ~2 GB (cleaned)

## Files
| File | Description |
|---|---|
| `mtet_bidirectional_cleaned.csv` | Main training data (bidirectional, cleaned) |

## Usage
```python
import pandas as pd
df = pd.read_csv("mtet_bidirectional_cleaned.csv")
print(df.head())
# source                           target
# xin chào                         hello
# hello                             xin chào
```

## License
The dataset follows the original MTET distribution license (MIT).