Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,53 +1,96 @@
|
|
1 |
-
---
|
2 |
-
language:
|
3 |
-
- sk
|
4 |
-
license: odc-by
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
- name:
|
12 |
-
dtype: string
|
13 |
-
- name:
|
14 |
-
dtype: string
|
15 |
-
- name:
|
16 |
-
dtype: string
|
17 |
-
- name:
|
18 |
-
dtype: string
|
19 |
-
- name:
|
20 |
-
dtype: string
|
21 |
-
- name:
|
22 |
-
dtype:
|
23 |
-
- name:
|
24 |
-
dtype: string
|
25 |
-
- name:
|
26 |
-
dtype:
|
27 |
-
- name:
|
28 |
-
dtype: string
|
29 |
-
- name:
|
30 |
-
dtype:
|
31 |
-
- name:
|
32 |
-
dtype: string
|
33 |
-
- name:
|
34 |
-
dtype: string
|
35 |
-
- name:
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
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 |
+
}
|