Datasets:

Languages:
Indonesian
Multilinguality:
monolingual
Language Creators:
found
Annotations Creators:
no-annotation
Source Datasets:
extended
ArXiv:
Tags:
License:
acul3 commited on
Commit
ae5538e
1 Parent(s): 4d68cc3

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +122 -0
README.md ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: mC4-id
3
+ annotations_creators:
4
+ - no-annotation
5
+ language_creators:
6
+ - found
7
+ languages:
8
+ - id
9
+ licenses:
10
+ - odc-by-1.0
11
+ multilinguality:
12
+ - monolingual
13
+ size_categories:
14
+ tiny:
15
+ - 1M<n<10M
16
+ small:
17
+ - 10M<n<100M
18
+ medium:
19
+ - 10M<n<100M
20
+ large:
21
+ - 10M<n<100M
22
+ full:
23
+ - 100M<n<1B
24
+ source_datasets:
25
+ - extended
26
+ task_categories:
27
+ - sequence-modeling
28
+ task_ids:
29
+ - language-modeling
30
+ paperswithcode_id: mc4
31
+ ---
32
+
33
+ # Dataset Card for Clean(maybe) Indonesia mC4
34
+
35
+ ## Dataset Description
36
+
37
+ - **Original Homepage:** [HF Hub](https://huggingface.co/datasets/allenai/c4)
38
+ - **Paper:** [ArXiv](https://arxiv.org/abs/1910.10683)
39
+
40
+ ### Dataset Summary
41
+
42
+ A thoroughly cleaned version of the Indonesia split of the multilingual colossal, cleaned version of Common Crawl's web crawl corpus (mC4). Based on the [Common Crawl dataset](https://commoncrawl.org). The original version was prepared by [AllenAI](https://allenai.org/), hosted at the address [https://huggingface.co/datasets/allenai/c4](https://huggingface.co/datasets/allenai/c4).
43
+
44
+
45
+ ### Data Fields
46
+
47
+ The data contains the following fields:
48
+
49
+ - `url`: url of the source as a string
50
+ - `text`: text content as a string
51
+ - `timestamp`: timestamp of extraction as a string
52
+
53
+ ### Data Splits
54
+
55
+
56
+ You can load any subset like this:
57
+
58
+ ```python
59
+ from datasets import load_dataset
60
+
61
+ mc4_id_tiny = load_dataset("munggok/mc4-id", "tiny")
62
+ ```
63
+
64
+ Since splits are quite large, you may want to traverse them using the streaming mode available starting from 🤗 Datasets v1.9.0:
65
+
66
+ ```python
67
+ from datasets import load_dataset
68
+
69
+ mc4_id_full_stream = load_dataset("munggok/mc4-id", "full", split='train', streaming=True)
70
+ print(next(iter(mc4_id_full_stream))) # Prints the example presented above
71
+ ```
72
+
73
+ ## Dataset Creation
74
+
75
+ Refer to the original paper for more considerations regarding the choice of sources and the scraping process for creating `mC4`.
76
+
77
+ ## Considerations for Using the Data
78
+
79
+ ### Discussion of Biases
80
+
81
+ Despite the cleaning procedure aimed at removing vulgarity and profanity, it must be considered that model trained on this scraped corpus will inevitably reflect biases present in blog articles and comments on the Internet. This makes the corpus especially interesting in the context of studying data biases and how to limit their impacts.
82
+
83
+ ## Additional Information
84
+
85
+ ### Dataset Curators
86
+
87
+ Authors at AllenAI are the original curators for the `mc4` corpus.
88
+
89
+ ### Licensing Information
90
+
91
+ AllenAI are releasing this dataset under the terms of ODC-BY. By using this, you are also bound by the Common Crawl terms of use in respect of the content contained in the dataset.
92
+
93
+ ### Citation Information
94
+
95
+ If you use this dataset in your work, please cite us and the original mC4 authors as:
96
+
97
+ ```
98
+
99
+ @inproceedings{xue-etal-2021-mt5,
100
+ title = "m{T}5: A Massively Multilingual Pre-trained Text-to-Text Transformer",
101
+ author = "Xue, Linting and
102
+ Constant, Noah and
103
+ Roberts, Adam and
104
+ Kale, Mihir and
105
+ Al-Rfou, Rami and
106
+ Siddhant, Aditya and
107
+ Barua, Aditya and
108
+ Raffel, Colin",
109
+ booktitle = "Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
110
+ month = jun,
111
+ year = "2021",
112
+ address = "Online",
113
+ publisher = "Association for Computational Linguistics",
114
+ url = "https://aclanthology.org/2021.naacl-main.41",
115
+ doi = "10.18653/v1/2021.naacl-main.41",
116
+ pages = "483--498",
117
+ }
118
+ ```
119
+
120
+ ### Contributions
121
+
122
+ Thanks to [@dirkgr](https://github.com/dirkgr) and [@lhoestq](https://github.com/lhoestq) for adding this dataset.