File size: 1,036 Bytes
21b4a78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ccafba4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21b4a78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f860bc4
21b4a78
 
 
 
 
 
 
 
 
 
 
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
license: other
task_categories:
- text-classification
language:
- en
- hi
- bn
- gu
- kn
- ml
- mr
- or
- ta
- te
tags:
- language-identification
- indic
- code-mixed
- romanized
- native-script
pretty_name: LID All Scripts Dataset
size_categories:
- 1M<n<10M
dataset_info:
  features:
  - name: id
    dtype: string
  - name: text
    dtype: string
  - name: type
    dtype: string
  - name: language
    dtype: string
  splits:
  - name: train
    num_bytes: 798415525
    num_examples: 2897517
  download_size: 307746472
  dataset_size: 798415525
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# blue-machines/lid_all_scripts_dataset

All-scripts language identification corpus derived from `unified_dataset.csv`.

## Columns

- `id`
- `text`
- `type`
- `language`

## Stats

- Rows: **2,897,517**
- Source file: `unified_dataset.csv`

## Load

```python
from datasets import load_dataset

ds = load_dataset("blue-machines/lid_all_scripts_dataset")
print(ds)
print(ds["train"][0])
```