acul3 commited on
Commit
fab4b77
1 Parent(s): 0403f05

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +69 -0
README.md CHANGED
@@ -1,3 +1,72 @@
1
  ---
2
  license: other
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: other
3
  ---
4
+
5
+ # Polylingual Indonesia Dataset/Model Card
6
+
7
+ ## Description
8
+
9
+ Polylingual Indonesia is a diverse dataset composed of a collection of publicly available data and some self-crawled data in the Indonesian language. The data originates from various sources including news articles, books, forums, and stories. This dataset is processed and filtered through specific techniques detailed in the sections below.
10
+
11
+ ## Prerequisites
12
+
13
+ To run and utilize this dataset, make sure you have the `zstandard` package installed in your environment.
14
+
15
+ ## Format
16
+
17
+ The original format of the dataset is JSONL with zstandard compressed
18
+
19
+ ## Dataset Details
20
+
21
+ ### Filtering
22
+
23
+ The dataset undergoes a filtration process using a specific filter from BigScience. Detailed information about the filter used can be found here: [BigScience Filter](https://drive.google.com/file/d/1cCJ8sWE88TRLDAa3eHLmXO4JlkR2QzLY/view?usp=sharing).
24
+
25
+ ### Data Sources
26
+
27
+ The data originates from various sources, and each folder in the dataset represents the source from where the original data came. Here are the details of each folder/source:
28
+
29
+ #### 1. HPLT_filtered
30
+ - Link: [HPLT Project](https://hplt-project.org/datasets/v1)
31
+ - Source : Internet Archive Snapshot WIDE15 and WIDE17 and CC-MAIN-2022-40
32
+
33
+ #### 2. Mc4-und-id
34
+ - Data is filtered from the undefined language segment of MC4 (c4-und) using FastText, BigScience filters.
35
+ - Sample: [MC4 Sample](https://huggingface.co/datasets/allenai/c4/blob/mC4310/multilingual/c4-und.00000-00001-00002-00003-00004-00005-00006-00007.json.gz)
36
+
37
+ #### 3. Indonesia-Crawl
38
+ This folder contains a collection of the Common Crawl dataset and self crawled data, specific for the Indonesian language, accumulated from various snapshots. The data is divided into several sections:
39
+
40
+ - **Mc4 original(dedup)**: Ranging from snapshot CC-2013-20 to CC-2020-34.
41
+ - **Kopi-CC(dedup)**: This covers data from snapshot CC-2020-34 to CC-2023-06. More details can be found [here](https://huggingface.co/datasets/acul3/KoPI-CC) (Note: Last snapshot to be uploaded).
42
+ - **KoPI-CC_News**: This includes the Common Crawl News Dataset ranging from the year 2016 to 2022. Detailed information can be accessed [here](https://huggingface.co/datasets/acul3/KoPI-CC) (Note: Last snapshot to be uploaded).
43
+ - **Self Crawled Data**: consists of data crawled from various platforms including news sites, story sites, forums, and others.
44
+
45
+ ## Usage
46
+
47
+ install zstandard first
48
+
49
+ ```
50
+ from datasets import load_dataset
51
+
52
+ hplt = load_dataset('duckaiml/Polylingual_Id','hplt') #hplt only
53
+ mc4_und = load_dataset('duckaiml/Polylingual_Id','mc4_und') #mc4_und only
54
+ indonesia_crawl = load_dataset('duckaiml/Polylingual_Id','indonesia_crawl') #indonesia_crawl only
55
+ load_dataset('duckaiml/Polylingual_Id','full') #load all
56
+ ```
57
+
58
+
59
+ ## Limitation/Issue
60
+ - Although some source data already dedup separately, some duplicate might be found as dataset need dedup as whole dataset
61
+
62
+ ## Contributing
63
+
64
+ Feel free to contribute to the dataset by adding more diverse sources or helping in enhancing the filtration process.
65
+
66
+ ## License
67
+
68
+ The data is collected from public sources, and it's recommended to refer to the original data sources for information on licensing and usage restrictions.
69
+
70
+ ## Contact
71
+
72
+ For any queries or contributions to the dataset, please feel free to reach out (contact information to be added).