Datasets:
Maurice Weber
commited on
Commit
•
bbd9b4f
1
Parent(s):
24ca8bc
update README.md
Browse files
README.md
CHANGED
@@ -28,7 +28,9 @@ from datasets import load_dataset
|
|
28 |
ds = load_dataset("togethercomputer/RedPajama-Data-V2", name="sample")
|
29 |
```
|
30 |
|
31 |
-
To download a the dataset for a specific combination of `{partition} x {snapshot_id} x {language}
|
|
|
|
|
32 |
|
33 |
```python
|
34 |
from datasets import load_dataset
|
@@ -203,9 +205,9 @@ RedPajama-V2 is an open dataset for training large laguage models and includes o
|
|
203 |
| rps_doc_ldnoobw_words | The number of sequences of words that are contained in the List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words blocklist. The blocklist is obtained from the [LDNOOBW](https://github.com/LDNOOBW/List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words) repo. | toxicity | [C4](https://arxiv.org/abs/1910.10683) |
|
204 |
| rps_doc_ut1_blacklist | A categorical id corresponding to the list of categories of the domain of the document. Categories are obtained from the UT1 blacklist. The list is obtained from [UT-Capitole](https://dsi.ut-capitole.fr/blacklists/). | toxicictiy | [RefinedWeb](https://arxiv.org/abs/2306.01116) |
|
205 |
| minhash_signature_0.7 | Banded minhash signature of the document, for fuzzy deduplication at Jaccard similarity 0.7. The signature is based on 128 hash functions and grouped into 14 bands and 9 rows for LSH. | Deduplication |
|
206 |
-
| minhash_signature_0.8 | Banded minhash signature of the document, for fuzzy deduplication at Jaccard similarity 0.8. The signature is based on 128 hash functions and grouped into 9 bands and 13 rows for LSH.
|
207 |
-
| minhash_signature_0.9 | Banded minhash signature of the document, for fuzzy deduplication at Jaccard similarity 0.9. The signature is based on 128 hash functions and grouped into 5 bands and 25 rows for LSH..
|
208 |
-
| minhash_signature_1.0 | Banded minhash signature of the document, for fuzzy deduplication at Jaccard similarity 1.0. The signature is based on 128 hash functions and grouped into 1 band and 128 rows for LSH.
|
209 |
|
210 |
#### Document and Token Counts for the Annotated and deduplicated `head_middle` part of the dataset
|
211 |
|
|
|
28 |
ds = load_dataset("togethercomputer/RedPajama-Data-V2", name="sample")
|
29 |
```
|
30 |
|
31 |
+
To download a the dataset for a specific combination of `{partition} x {snapshot_id} x {language}` (e.g., English and
|
32 |
+
German data from the `head_middle` partition of the 2023-06 and the 2022-49 dumps), you can run the following command.
|
33 |
+
_Note that this will downlaod the entire dumps and requires 1TB disk space per dump_.
|
34 |
|
35 |
```python
|
36 |
from datasets import load_dataset
|
|
|
205 |
| rps_doc_ldnoobw_words | The number of sequences of words that are contained in the List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words blocklist. The blocklist is obtained from the [LDNOOBW](https://github.com/LDNOOBW/List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words) repo. | toxicity | [C4](https://arxiv.org/abs/1910.10683) |
|
206 |
| rps_doc_ut1_blacklist | A categorical id corresponding to the list of categories of the domain of the document. Categories are obtained from the UT1 blacklist. The list is obtained from [UT-Capitole](https://dsi.ut-capitole.fr/blacklists/). | toxicictiy | [RefinedWeb](https://arxiv.org/abs/2306.01116) |
|
207 |
| minhash_signature_0.7 | Banded minhash signature of the document, for fuzzy deduplication at Jaccard similarity 0.7. The signature is based on 128 hash functions and grouped into 14 bands and 9 rows for LSH. | Deduplication |
|
208 |
+
| minhash_signature_0.8 | Banded minhash signature of the document, for fuzzy deduplication at Jaccard similarity 0.8. The signature is based on 128 hash functions and grouped into 9 bands and 13 rows for LSH. | Deduplication |
|
209 |
+
| minhash_signature_0.9 | Banded minhash signature of the document, for fuzzy deduplication at Jaccard similarity 0.9. The signature is based on 128 hash functions and grouped into 5 bands and 25 rows for LSH.. | Deduplication |
|
210 |
+
| minhash_signature_1.0 | Banded minhash signature of the document, for fuzzy deduplication at Jaccard similarity 1.0. The signature is based on 128 hash functions and grouped into 1 band and 128 rows for LSH. | Deduplication |
|
211 |
|
212 |
#### Document and Token Counts for the Annotated and deduplicated `head_middle` part of the dataset
|
213 |
|