Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-classification
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
- hi
|
| 8 |
+
- bn
|
| 9 |
+
- gu
|
| 10 |
+
- kn
|
| 11 |
+
- ml
|
| 12 |
+
- mr
|
| 13 |
+
- or
|
| 14 |
+
- ta
|
| 15 |
+
- te
|
| 16 |
+
tags:
|
| 17 |
+
- language-identification
|
| 18 |
+
- indic
|
| 19 |
+
- code-mixed
|
| 20 |
+
- romanized
|
| 21 |
+
- native-script
|
| 22 |
+
pretty_name: LID All Scripts Dataset
|
| 23 |
+
size_categories:
|
| 24 |
+
- 1M<n<10M
|
| 25 |
+
---
|
| 26 |
+
|
| 27 |
+
# blue-machines/lid_all_scripts_dataset
|
| 28 |
+
|
| 29 |
+
All-scripts language identification corpus derived from `unified_dataset.csv`.
|
| 30 |
+
|
| 31 |
+
## Columns
|
| 32 |
+
|
| 33 |
+
- `id`
|
| 34 |
+
- `text`
|
| 35 |
+
- `type`
|
| 36 |
+
- `language`
|
| 37 |
+
|
| 38 |
+
## Stats
|
| 39 |
+
|
| 40 |
+
- Rows: **2,623,285**
|
| 41 |
+
- Source file: `unified_dataset.csv`
|
| 42 |
+
|
| 43 |
+
## Load
|
| 44 |
+
|
| 45 |
+
```python
|
| 46 |
+
from datasets import load_dataset
|
| 47 |
+
|
| 48 |
+
ds = load_dataset("blue-machines/lid_all_scripts_dataset")
|
| 49 |
+
print(ds)
|
| 50 |
+
print(ds["train"][0])
|
| 51 |
+
```
|