Datasets:

Modalities:
Text
Formats:
json
Languages:
English
ArXiv:
License:
stellaathena commited on
Commit
3c74ceb
·
verified ·
1 Parent(s): 553c761

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - en
7
+ pretty_name: The Pile - Validation & Test Splits
8
+ ---
9
+
10
+ # The Pile: Validation and Test Splits
11
+
12
+ This repo contains the validation and test splits of [The Pile](https://pile.eleuther.ai/), an 825 GiB English text dataset designed for training large language models.
13
+
14
+ ## Files
15
+
16
+ | File | Split | Size |
17
+ |------|-------|------|
18
+ | `val.jsonl` | Validation | 1.4 GB |
19
+ | `test.jsonl` | Test | 1.3 GB |
20
+
21
+ ## Format
22
+
23
+ Each line is a JSON object with two fields:
24
+
25
+ ```json
26
+ {"text": "The document text...", "meta": {"pile_set_name": "Pile-CC"}}
27
+ ```
28
+
29
+ The `meta.pile_set_name` field indicates which of the 22 constituent datasets the document came from (e.g., Pile-CC, PubMed Central, ArXiv, GitHub, etc.).
30
+
31
+ ## Citation
32
+
33
+ ```bibtex
34
+ @article{gao2020pile,
35
+ title={The Pile: An 800GB Dataset of Diverse Text for Language Modeling},
36
+ author={Gao, Leo and Biderman, Stella and Black, Sid and Golding, Laurence and Hoppe, Travis and Foster, Charles and Phang, Jason and He, Horace and Thite, Anish and Nabeshima, Noa and Presser, Shawn and Leahy, Connor},
37
+ journal={arXiv preprint arXiv:2101.00027},
38
+ year={2020}
39
+ }
40
+ ```