sahith-bluemachines commited on
Commit
ebdda2f
·
verified ·
1 Parent(s): a169580

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-switch-detection
18
+ - language-identification
19
+ - indic
20
+ - evaluation
21
+ - benchmark
22
+ pretty_name: LSD Evaluation Dataset
23
+ size_categories:
24
+ - 10K<n<100K
25
+ ---
26
+
27
+ # blue-machines/lsd_evaluation_dataset
28
+
29
+ Held-out evaluation set for language-switch detection / LID (`LSD_final_dataset.csv`).
30
+
31
+ ## Columns
32
+ - `language_switch`
33
+ - `text`
34
+ - `script_type`
35
+ - `language`
36
+
37
+ ## Stats
38
+ - Rows: **10,048**
39
+ - Languages: Bengali, English, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oria, Tamil, Telugu
40
+ - Switch labels: Bengali, English, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oria, Tamil, Telugu, no_switch
41
+
42
+ ## Load
43
+ ```python
44
+ from datasets import load_dataset
45
+ ds = load_dataset("blue-machines/lsd_evaluation_dataset")
46
+ print(ds["train"][0])
47
+ ```