Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# BinhVQ dedup
|
| 2 |
+
|
| 3 |
+
**Important**: Please install `lm_dataformat` by `pip install lm_dataformat` before using this dataset
|
| 4 |
+
|
| 5 |
+
## How to use
|
| 6 |
+
```python
|
| 7 |
+
import datasets
|
| 8 |
+
|
| 9 |
+
dataset = datasets.load_dataset("imthanhlv/binhvq_dedup")
|
| 10 |
+
```
|
| 11 |
+
|
| 12 |
+
## Dataset information
|
| 13 |
+
|
| 14 |
+
This dataset was created from `https://github.com/binhvq/news-corpus` dump with date 21/05/2021. I applied some simple preprocessing:
|
| 15 |
+
- Using BeautifulSoup to clean content
|
| 16 |
+
- Each record is concatenate of (title + "\n" + sapo + "\n" + content)
|
| 17 |
+
- Then perform shuffling + split train & validation + deduplicate (exact match using sha256)
|