Bonkh commited on
Commit
f9cf0bb
·
verified ·
1 Parent(s): ace3009

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -6
README.md CHANGED
@@ -1,20 +1,34 @@
1
  ---
 
 
2
  task_categories:
3
  - text-classification
 
 
 
4
  ---
5
 
6
  # Ensemble Additional Data
7
 
8
- This dataset contains cleaned text data organized by language, can be used as a benchmark for evaluating language identification (LID) models.
9
 
10
- This dataset consists of samples from multiple existing benchmark dataset and multilingual text dataset. The full list is provided [here](https://docs.google.com/spreadsheets/d/1G12FaSMelNX87dclhm9dE3d5ZRO99B2hoFE1ufB2Zvg/edit?usp=sharing)
11
- - **Languages:** \~ 1800 languages.
12
- - **Licenses:** The full list of licenses is provided in the sheet, all of them can be used for commercial purposes
 
 
 
 
13
 
14
  ## Dataset Structure
 
15
  - Each parquet file corresponds to one language (e.g. `eng.parquet`, `fra.parquet`)
16
  - Columns: `text`, `language`
17
- - Samples: over 1M
18
 
19
- The dataset is extracted from sources, carefully deduplicate, remove programming languages, abnormal symbols, numbers, check for semantic duplication with [SemHash](https://github.com/MinishLab/semhash), remove mislabeling with [CleanLab](https://github.com/cleanlab/cleanlab)
20
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - multilingual
4
  task_categories:
5
  - text-classification
6
+ tags:
7
+ - language-identification
8
+ - lid
9
  ---
10
 
11
  # Ensemble Additional Data
12
 
13
+ This dataset contains cleaned text data organized by language, and can be used as a benchmark for evaluating language identification (LID) models.
14
 
15
+ ## Overview
16
+
17
+ This dataset consists of samples from multiple existing benchmark and multilingual text datasets. The full list of sources and licenses is provided [here](https://docs.google.com/spreadsheets/d/1G12FaSMelNX87dclhm9dE3d5ZRO99B2hoFE1ufB2Zvg/edit?usp=sharing).
18
+
19
+ - **Languages:** ~1,800 languages
20
+ - **Samples:** Over 1M
21
+ - **Licenses:** All sources are commercially usable — full license list provided in the sheet above
22
 
23
  ## Dataset Structure
24
+
25
  - Each parquet file corresponds to one language (e.g. `eng.parquet`, `fra.parquet`)
26
  - Columns: `text`, `language`
 
27
 
28
+ ## Data Cleaning Pipeline
29
 
30
+ The dataset was carefully processed through the following steps:
31
+ 1. **Deduplication** — exact duplicate removal across all sources
32
+ 2. **Filtering** — removal of programming language code, abnormal symbols, and numeric-only samples
33
+ 3. **Semantic deduplication** — near-duplicate removal using [SemHash](https://github.com/MinishLab/semhash)
34
+ 4. **Mislabel correction** — noisy label detection and removal using [CleanLab](https://github.com/cleanlab/cleanlab)