ivykopal commited on
Commit
e42e472
·
verified ·
1 Parent(s): 71eeff0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +96 -53
README.md CHANGED
@@ -1,53 +1,96 @@
1
- ---
2
- language:
3
- - sk
4
- license: odc-by
5
- dataset_info:
6
- features:
7
- - name: text
8
- dtype: string
9
- - name: id
10
- dtype: string
11
- - name: dump
12
- dtype: string
13
- - name: url
14
- dtype: string
15
- - name: date
16
- dtype: string
17
- - name: file_path
18
- dtype: string
19
- - name: language
20
- dtype: string
21
- - name: language_score
22
- dtype: float64
23
- - name: language_script
24
- dtype: string
25
- - name: minhash_cluster_size
26
- dtype: int64
27
- - name: top_langs
28
- dtype: string
29
- - name: fasttext
30
- dtype: string
31
- - name: langdetect
32
- dtype: string
33
- - name: lingua
34
- dtype: string
35
- - name: bad_words
36
- sequence: string
37
- splits:
38
- - name: test
39
- num_bytes: 111283118
40
- num_examples: 28720
41
- - name: train
42
- num_bytes: 101664155529
43
- num_examples: 26470482
44
- download_size: 63706633020
45
- dataset_size: 101775438647
46
- configs:
47
- - config_name: default
48
- data_files:
49
- - split: test
50
- path: data/test-*
51
- - split: train
52
- path: data/train-*
53
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - sk
4
+ license: odc-by
5
+ tags:
6
+ - Slovak
7
+ - Datasets
8
+ - FineWeb2
9
+ dataset_info:
10
+ features:
11
+ - name: text
12
+ dtype: string
13
+ - name: id
14
+ dtype: string
15
+ - name: dump
16
+ dtype: string
17
+ - name: url
18
+ dtype: string
19
+ - name: date
20
+ dtype: string
21
+ - name: file_path
22
+ dtype: string
23
+ - name: language
24
+ dtype: string
25
+ - name: language_score
26
+ dtype: float64
27
+ - name: language_script
28
+ dtype: string
29
+ - name: minhash_cluster_size
30
+ dtype: int64
31
+ - name: top_langs
32
+ dtype: string
33
+ - name: fasttext
34
+ dtype: string
35
+ - name: langdetect
36
+ dtype: string
37
+ - name: lingua
38
+ dtype: string
39
+ - name: bad_words
40
+ sequence: string
41
+ splits:
42
+ - name: test
43
+ num_bytes: 111283118
44
+ num_examples: 28720
45
+ - name: train
46
+ num_bytes: 101664155529
47
+ num_examples: 26470482
48
+ download_size: 63706633020
49
+ dataset_size: 101775438647
50
+ configs:
51
+ - config_name: default
52
+ data_files:
53
+ - split: test
54
+ path: data/test-*
55
+ - split: train
56
+ path: data/train-*
57
+ ---
58
+
59
+ # FineWeb2 Slovak
60
+
61
+ This is the Slovak Portion of The [FineWeb2](https://huggingface.co/datasets/HuggingFaceFW/fineweb-2#additional-information) Dataset.
62
+
63
+ Known within subsets as **slk_Latn**, this language boasts an extensive corpus of over **14.1 billion words** across more than **26.5 million documents**.
64
+
65
+
66
+ ## Purpose of This Repository
67
+
68
+ This repository provides easy access to the **Slovak portion** of the extensive **FineWeb2** dataset.
69
+
70
+ The existing dataset was extended with additional information, especially language identification using FastText, langdetect and lingua using [XTranslator package](https://pypi.org/project/xtranslator/). This language identification aims to filter out the texts that are in languages other than Slovak.
71
+
72
+ In addition, we also identified adult words within the text, which we added to the column **bad_words**, which can be used to filter out texts with the problematic content.
73
+
74
+ Additional information:
75
+ - **fasttext** - language identified using [FastText](https://pypi.org/project/fasttext-langdetect/)
76
+ - **langdetect** - language identified using [langdetect](https://pypi.org/project/langdetect/)
77
+ - **lingua** - languages along with the proportion of the text in the particular language, using [lingua-language-detector](https://pypi.org/project/lingua-language-detector/)
78
+ - **bad_words** - list of adult words (Slovak and English) identified in each text
79
+
80
+ ## Credit to the Original Work
81
+
82
+ The dataset is released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/), with additional usage subject to **CommonCrawl's Terms of Use**.
83
+
84
+ ### Citation
85
+
86
+ If you use this dataset, please cite it as follows:
87
+
88
+ ```bibtex
89
+ @software{penedo2024fineweb-2,
90
+ author = {Penedo, Guilherme and Kydlíček, Hynek and Sabolčec, Vinko and Messmer, Bettina and Foroutan, Negar and Jaggi, Martin and von Werra, Leandro and Wolf, Thomas},
91
+ title = {FineWeb2: A sparkling update with 1000s of languages},
92
+ month = dec,
93
+ year = 2024,
94
+ doi = {10.57967/hf/3744},
95
+ url = {https://huggingface.co/datasets/HuggingFaceFW/fineweb-2}
96
+ }