Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- ms
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# ms-newspapers
|
| 7 |
+
|
| 8 |
+
Scraped online Malaysian newspapers in Bahasa Malaysia (Malay language).
|
| 9 |
+
|
| 10 |
+
Kosmo and Utusan Malaysia both scraped in mid May 2023.
|
| 11 |
+
|
| 12 |
+
## Dataset Structure
|
| 13 |
+
|
| 14 |
+
JSONL format, snippets below:
|
| 15 |
+
|
| 16 |
+
```bash
|
| 17 |
+
# Utusan Malaysia
|
| 18 |
+
$ tail -n 1 utusan-20230512.jsonl
|
| 19 |
+
{"index": 168799, "text": "...", "access_date": "2023-05-15 00:20:04.418003"}
|
| 20 |
+
|
| 21 |
+
# Kosmo
|
| 22 |
+
$ $ tail -n 1 kosmo-20230524.jsonl
|
| 23 |
+
{"index": 51699, "url": "...", "text": "...", "access_date": "2023-05-25 01:14:16.540146"}
|
| 24 |
+
```
|