Pritama soldni commited on
Commit
3e680f6
·
0 Parent(s):

Duplicate from allenai/peS2o

Browse files

Co-authored-by: Luca Soldaini <soldni@users.noreply.huggingface.co>

This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .flake8 +25 -0
  2. .gitattributes +55 -0
  3. .gitignore +56 -0
  4. README.md +166 -0
  5. data/v1/train-00000-of-00020.json.gz +3 -0
  6. data/v1/train-00001-of-00020.json.gz +3 -0
  7. data/v1/train-00002-of-00020.json.gz +3 -0
  8. data/v1/train-00003-of-00020.json.gz +3 -0
  9. data/v1/train-00004-of-00020.json.gz +3 -0
  10. data/v1/train-00005-of-00020.json.gz +3 -0
  11. data/v1/train-00006-of-00020.json.gz +3 -0
  12. data/v1/train-00007-of-00020.json.gz +3 -0
  13. data/v1/train-00008-of-00020.json.gz +3 -0
  14. data/v1/train-00009-of-00020.json.gz +3 -0
  15. data/v1/train-00010-of-00020.json.gz +3 -0
  16. data/v1/train-00011-of-00020.json.gz +3 -0
  17. data/v1/train-00012-of-00020.json.gz +3 -0
  18. data/v1/train-00013-of-00020.json.gz +3 -0
  19. data/v1/train-00014-of-00020.json.gz +3 -0
  20. data/v1/train-00015-of-00020.json.gz +3 -0
  21. data/v1/train-00016-of-00020.json.gz +3 -0
  22. data/v1/train-00017-of-00020.json.gz +3 -0
  23. data/v1/train-00018-of-00020.json.gz +3 -0
  24. data/v1/train-00019-of-00020.json.gz +3 -0
  25. data/v1/validation-00000-of-00002.json.gz +3 -0
  26. data/v1/validation-00001-of-00002.json.gz +3 -0
  27. data/v2/train-00000-of-00020.json.gz +3 -0
  28. data/v2/train-00001-of-00020.json.gz +3 -0
  29. data/v2/train-00002-of-00020.json.gz +3 -0
  30. data/v2/train-00003-of-00020.json.gz +3 -0
  31. data/v2/train-00004-of-00020.json.gz +3 -0
  32. data/v2/train-00005-of-00020.json.gz +3 -0
  33. data/v2/train-00006-of-00020.json.gz +3 -0
  34. data/v2/train-00007-of-00020.json.gz +3 -0
  35. data/v2/train-00008-of-00020.json.gz +3 -0
  36. data/v2/train-00009-of-00020.json.gz +3 -0
  37. data/v2/train-00010-of-00020.json.gz +3 -0
  38. data/v2/train-00011-of-00020.json.gz +3 -0
  39. data/v2/train-00012-of-00020.json.gz +3 -0
  40. data/v2/train-00013-of-00020.json.gz +3 -0
  41. data/v2/train-00014-of-00020.json.gz +3 -0
  42. data/v2/train-00015-of-00020.json.gz +3 -0
  43. data/v2/train-00016-of-00020.json.gz +3 -0
  44. data/v2/train-00017-of-00020.json.gz +3 -0
  45. data/v2/train-00018-of-00020.json.gz +3 -0
  46. data/v2/train-00019-of-00020.json.gz +3 -0
  47. data/v2/validation-00000-of-00002.json.gz +3 -0
  48. data/v2/validation-00001-of-00002.json.gz +3 -0
  49. data/v3/train-0000-of-0136.zst +3 -0
  50. data/v3/train-0001-of-0136.zst +3 -0
.flake8 ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [flake8]
2
+ max-line-length = 115
3
+
4
+ ignore =
5
+ # these rules don't play well with black
6
+ # whitespace before :
7
+ E203
8
+ # line break before binary operator
9
+ W503
10
+ # line too long, who cares?
11
+ E501
12
+
13
+ exclude =
14
+ .venv
15
+ .git
16
+ __pycache__
17
+ docs/build
18
+ dist
19
+ .mypy_cache
20
+ pretrain_data
21
+
22
+ per-file-ignores =
23
+ # __init__.py files are allowed to have unused imports and lines-too-long
24
+ */__init__.py:F401,F403
25
+ */**/**/__init__.py:F401,E501
.gitattributes ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.lz4 filter=lfs diff=lfs merge=lfs -text
12
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
13
+ *.model filter=lfs diff=lfs merge=lfs -text
14
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
15
+ *.npy filter=lfs diff=lfs merge=lfs -text
16
+ *.npz filter=lfs diff=lfs merge=lfs -text
17
+ *.onnx filter=lfs diff=lfs merge=lfs -text
18
+ *.ot filter=lfs diff=lfs merge=lfs -text
19
+ *.parquet filter=lfs diff=lfs merge=lfs -text
20
+ *.pb filter=lfs diff=lfs merge=lfs -text
21
+ *.pickle filter=lfs diff=lfs merge=lfs -text
22
+ *.pkl filter=lfs diff=lfs merge=lfs -text
23
+ *.pt filter=lfs diff=lfs merge=lfs -text
24
+ *.pth filter=lfs diff=lfs merge=lfs -text
25
+ *.rar filter=lfs diff=lfs merge=lfs -text
26
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
27
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
28
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
29
+ *.tar filter=lfs diff=lfs merge=lfs -text
30
+ *.tflite filter=lfs diff=lfs merge=lfs -text
31
+ *.tgz filter=lfs diff=lfs merge=lfs -text
32
+ *.wasm filter=lfs diff=lfs merge=lfs -text
33
+ *.xz filter=lfs diff=lfs merge=lfs -text
34
+ *.zip filter=lfs diff=lfs merge=lfs -text
35
+ *.zst filter=lfs diff=lfs merge=lfs -text
36
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
37
+ # Audio files - uncompressed
38
+ *.pcm filter=lfs diff=lfs merge=lfs -text
39
+ *.sam filter=lfs diff=lfs merge=lfs -text
40
+ *.raw filter=lfs diff=lfs merge=lfs -text
41
+ # Audio files - compressed
42
+ *.aac filter=lfs diff=lfs merge=lfs -text
43
+ *.flac filter=lfs diff=lfs merge=lfs -text
44
+ *.mp3 filter=lfs diff=lfs merge=lfs -text
45
+ *.ogg filter=lfs diff=lfs merge=lfs -text
46
+ *.wav filter=lfs diff=lfs merge=lfs -text
47
+ # Image files - uncompressed
48
+ *.bmp filter=lfs diff=lfs merge=lfs -text
49
+ *.gif filter=lfs diff=lfs merge=lfs -text
50
+ *.png filter=lfs diff=lfs merge=lfs -text
51
+ *.tiff filter=lfs diff=lfs merge=lfs -text
52
+ # Image files - compressed
53
+ *.jpg filter=lfs diff=lfs merge=lfs -text
54
+ *.jpeg filter=lfs diff=lfs merge=lfs -text
55
+ *.webp filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # build artifacts
2
+
3
+ .eggs/
4
+ .mypy_cache
5
+ *.egg-info/
6
+ build/
7
+ dist/
8
+ pip-wheel-metadata/
9
+
10
+
11
+ # dev tools
12
+
13
+ .envrc
14
+ .python-version
15
+ .idea
16
+ .venv/
17
+ .vscode/
18
+ /*.iml
19
+
20
+
21
+ # jupyter notebooks
22
+
23
+ .ipynb_checkpoints
24
+
25
+
26
+ # miscellaneous
27
+
28
+ .cache/
29
+ doc/_build/
30
+ *.swp
31
+ .DS_Store
32
+
33
+
34
+ # python
35
+
36
+ *.pyc
37
+ *.pyo
38
+ __pycache__
39
+
40
+
41
+ # testing and continuous integration
42
+
43
+ .coverage
44
+ .pytest_cache/
45
+ .benchmarks
46
+
47
+ # documentation build artifacts
48
+
49
+ docs/build
50
+ site/
51
+
52
+ # runs
53
+ /runs/
54
+ /wandb/
55
+ /scratch/
56
+ core
README.md ADDED
@@ -0,0 +1,166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license:
3
+ - odc-by
4
+ task_categories:
5
+ - text-generation
6
+ - fill-mask
7
+ language:
8
+ - en
9
+ tags:
10
+ - biology
11
+ - chemistry
12
+ - engineering
13
+ - computer science
14
+ - physics
15
+ - material science
16
+ - math
17
+ - psychology
18
+ - economics
19
+ - political science
20
+ - business
21
+ - geology
22
+ - sociology
23
+ - geography
24
+ - environmental science
25
+ - art
26
+ - history
27
+ - philosophy
28
+ pretty_name: peS2o (Pretraining Efficiently on S2ORC)
29
+ size_categories:
30
+ - 10B<n<100B
31
+ source_datasets:
32
+ - allenai/s2orc
33
+ ---
34
+
35
+ <p align="center" style="margin-top: -2em">
36
+ <img src="https://huggingface.co/datasets/allenai/pes2o/resolve/main/logo.png" alt="peS2o logo. It's a picure of a mortar and pestle with documents flying in." width=384px height=auto>
37
+ </p>
38
+ <p align="center" style="font-size: 1.2em; margin-top: -1em"><i>Pretraining Effectively on <a href="https://github.com/allenai/s2orc">S2ORC</a>!</i></p>
39
+
40
+ The peS2o dataset is a collection of ~40M creative open-access academic papers,
41
+ cleaned, filtered, and formatted for pre-training of language models. It is derived from
42
+ the [Semantic Scholar Open Research Corpus][2]([Lo et al, 2020][1]), or S2ORC.
43
+
44
+ We release multiple version of peS2o, each with different processing and knowledge cutoff
45
+ date. We recommend you to use the latest version available.
46
+
47
+ If you use this dataset, please cite:
48
+
49
+ ```bibtex
50
+ @techreport{peS2o,
51
+ author = {Luca Soldaini and Kyle Lo},
52
+ year = 2023,
53
+ title = {{peS2o (Pretraining Efficiently on S2ORC) Dataset}},
54
+ institution = {{Allen Institute for AI}},
55
+ note = {ODC-By, \url{https://github.com/allenai/pes2o}}
56
+ }
57
+ ```
58
+
59
+ ## Document Format
60
+
61
+ Each document in the dataset is a dictionary with the following fields:
62
+
63
+ - `added`: Date the document was added to the corpus.
64
+ - `created`: Best-guess date for when the document was first published. Some have resolution down to the day, only down to the year.
65
+ - `id`: Semantic Scholar Corpus ID of the document; it can be used with the [Semantic Scholar API](https://api.semanticscholar.org/) to retrieve metadata about the document (e.g., fields of study, authors).
66
+ - `source`: Collection from which the document was sourced from. At the moment, two are supported:
67
+ - `s2orc`: collection of full-text papers
68
+ - `s2ag`: collection of title and abstracts
69
+ - `text`: Text of the document. Paragraphs are separated by two newlines (`\n\n`).
70
+ - `version`: version of peS2o.
71
+
72
+ ------
73
+
74
+
75
+ ## peS2o V2 (Latest)
76
+
77
+
78
+ ### Key Facts
79
+
80
+ - *Knowledge cutoff*: 2023-01-03
81
+ - *Number of documents*: 38.97M
82
+ - *Number of whitespace-separated tokens**: 42.01B
83
+
84
+ ### Processing
85
+
86
+ peS2o V2 is largely the same as V1, but it includes additional heuristics s2ag aimed at filtering out OCR errors from abstract.
87
+
88
+ First, we check if the abstract was obtained from Semantic Scholar sources that are likely to contain OCR'ed content. For any abstract derived from those sources, we count how often the text contains subsequences matching `\b([A-Za-z]\s)([a-z]\s)*[A-Za-z]\b`, i.e. individual alpha letters separated by a space. This heuristic matches cases such as `A b stra ct` (2 matching subsequences), where the OCR parser inserted erroneous spaces.
89
+ Any abstract with more than 4 matching subsequences is removed.
90
+
91
+
92
+ #### Statistics
93
+
94
+ | Dataset | Split | # Documents | # Words |
95
+ |:-------:|:-----:|------------:|---------------:|
96
+ | s2orc | train | 8,242,162 | 36,088,195,908 |
97
+ | s2orc | valid | 51,323 | 255,139,074 |
98
+ | s2ag | train | 30,569,017 | 5,920,099,207 |
99
+ | s2ag | valid | 109,709 | 24,029,459 |
100
+
101
+
102
+
103
+ -------
104
+
105
+ ## peS2o V1
106
+
107
+ ### Key Facts
108
+
109
+ - *Knowledge cutoff*: 2023-01-03
110
+ - *Number of documents*: 67.56M
111
+ - *Number of whitespace-separated tokens*: 47.37B
112
+
113
+ ### Processing
114
+
115
+ Processing differs slightly wether it was derived from the full-text corpus (`s2orc`) or the title and abstract corpus (`s2ag`).
116
+
117
+ #### S2ORC-derived documents
118
+
119
+ Unfiltered, S2ORC contains 11.3M papers and 46.9B whitespace-separated tokens as of 2023-01-03. To derive peS2o v1, we impose the following constraints:
120
+
121
+ - The paper must have a title and abstract.
122
+ - From each paper, we use [Grobid](https://github.com/kermitt2/grobid) to extract section headers and paragraphs; figures, tables, and references, and any other non-textual content is removed. Title and abstracts are also available, but they come from the Semantic Scholar metadata (obtained through the APIs), not Grobid.
123
+ - The paper must be in English.
124
+ - To determine the language of each document, we use the [pycld3](https://github.com/bsolomon1124/pycld3) library
125
+ - We run pycld3 on the first 2000 characters of each paragraph in the paper.
126
+ - The language of the paper is the most common language of the paragraphs.
127
+ - The paper must have at least 500 whitespace-separated words.
128
+ - The paper was published after 1969; papers published before this date are often obtained through OCR and contain unrecoverable errors.
129
+ - The paper must have at least 5 paragraphs.
130
+ - All sections that have a average log word probability of less than `-20` are removed.
131
+ - To calculate the average log word probability, we use word frequencies extracted from the [1T Web Ngram corpus](https://catalog.ldc.upenn.edu/LDC2006T13); specifically, we use the list available [created by Rachel Tatman](https://www.kaggle.com/datasets/rtatman/english-word-frequency). A copy is hosted [here](https://ai2-s2-research-public.s3-us-west-2.amazonaws.com/lucas/google-1T-unigram/unigram_freq.csv).
132
+ - The most frequent word in the paper consists of alpha characters only, and it appears in less than 7.5% of the document.
133
+ - Words are obtained by splitting the text on whitespace.
134
+
135
+ The train set contains papers published before 2022-12-01;
136
+ the validation set includes documents published after 2022-12-01 and until 2023-01-03.
137
+
138
+ #### S2AG-derived documents
139
+
140
+ The S2AG corpus contains titles and abstracts of papers in Semantic Scholar.
141
+ Unfiltered, the corpus contains 91.1M papers and 15.5B whitespace-separated tokens as of 2023-01-03. To derive peS2o v1, we impose the following constraints:
142
+
143
+ - Abstract must be in English.
144
+ - To calculate the language, we once again use pycld3
145
+ - Title must be in English, or have average unigram log probability greater than -20.
146
+ - Abstract must be in English.
147
+ - Abstract must have higher than -20 average unigram log probability.
148
+ - Abstract must have at least 50 words.
149
+ - Abstract must have no more than 1000 words.
150
+ - The most frequent word in the union of text and abstract must be a 2+ character alpha word, or it can be `a` followed by a 2+ character alpha word.
151
+ - Paper was published after 1969.
152
+
153
+ #### Statistics
154
+
155
+ | Dataset | Split | # Documents | # Words |
156
+ |:-------:|:-------:|:-----------:|:--------------:|
157
+ |s2orc | train | 8,242,162 | 36,088,195,908 |
158
+ |s2orc | valid | 51,323 | 255,139,074 |
159
+ |s2ag | train | 59,382,301 | 11,009,123,378 |
160
+ |s2ag | valid | 111,228 | 24,398,512 |
161
+
162
+
163
+
164
+
165
+ [1]: https://aclanthology.org/2020.acl-main.447/
166
+ [2]: https://github.com/allenai/s2orc
data/v1/train-00000-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0684c7d98a39223fdcf8cd32938ef33b99b96b432f6ffcd9645f8d6f733271d1
3
+ size 2933378369
data/v1/train-00001-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc27e10c528d4f1ed1812fe4b5cd3b51096887bdabed1e7b9bb21444681d8755
3
+ size 2933433725
data/v1/train-00002-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07018961bc6b8382ce8c44fd4854d485ea2afde0d6c0d90a4704e5fdd8312294
3
+ size 2932228655
data/v1/train-00003-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6971e68cedfdb0c74dd5038059c2d8c7052ad1c68f481092d40a40ea97313aad
3
+ size 2929117743
data/v1/train-00004-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bfa635e3c35150720dba20d7b1bd1796b3613efc6cc1c1037464924bf77bb5f
3
+ size 2933883542
data/v1/train-00005-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01a06d8754c727b768bee70418034ae0635dfee002988f0c0d69830f0cce315f
3
+ size 2931051517
data/v1/train-00006-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b2a5b52fe4106b8771492ba1e2c6936b7a0cddeaf55c9340b1e3ad837ee19bc
3
+ size 2931273709
data/v1/train-00007-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c58a4173681111550121d67e041b1f038592b3f1827d15762df05a4c1bc9d32
3
+ size 2931366456
data/v1/train-00008-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c95028b7517bbe9482989d66101a9488e07d4ff9049961755c72cd273ce6a8ab
3
+ size 2931202030
data/v1/train-00009-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b0a1b26bb0fe75948d51a4b222ba4f70c933edd21748bead1b459295456bf51
3
+ size 2930529921
data/v1/train-00010-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbbadcbce652aaf03c6f45b6a56e431047e3a4ca8d31e0fbe8178337ac29f884
3
+ size 7086737257
data/v1/train-00011-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7803dcb6c7c0b7b052987de8437cfe92f9ad8611e16fd4e8196e79a849ec225d
3
+ size 7067042770
data/v1/train-00012-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:041f3de088dbeeebd6a8cf75a59e7d26b3ca6235e22841ad905b7394bed79d72
3
+ size 7075090265
data/v1/train-00013-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a628d08b22cae710adb028f8713d9e26922c6830ddd07f593c06e82b89f37872
3
+ size 7091546739
data/v1/train-00014-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d57a7c49bfa498196d6a9ae143488c4dfc66bf090e682615af24fbe2c5e4ed67
3
+ size 7073428884
data/v1/train-00015-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fffc024d24862af9c7ce693db8232cb3f2f91ecb228a8c4508fc693eca42ffe
3
+ size 7086180561
data/v1/train-00016-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1e26dcd65a8ac072bf25d5f8b7327f39c86aafab166167d719c4433c7ff3ec8
3
+ size 7080222180
data/v1/train-00017-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5aeef853cdffd7c128f5dbf6c1fc0dd709c080206782e73bbd90cb2857f2a8ac
3
+ size 7093984573
data/v1/train-00018-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76396f644eff7566a544917f993689d43dc0275f54065c82c62bda88b901eb99
3
+ size 7084000796
data/v1/train-00019-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8fcb34215afae3739a2aeb5bc7087d656833c2f1d3646d4883dfac5dbebaec3
3
+ size 7089843111
data/v1/validation-00000-of-00002.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5acaba9ebb5ef78fd1dac155f58eb6748486a081621ba2968e6e1b34e5d0b0bc
3
+ size 63285743
data/v1/validation-00001-of-00002.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1abafe4fb60ff1f14a98149b590fc583cdf856449b9ee452eb07a29b61791529
3
+ size 493149782
data/v2/train-00000-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d611791c7d89d7915a4089e5f70e6dfc66b0c3e85ace1e5e624e2b96f0e2a29
3
+ size 1575272287
data/v2/train-00001-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0e21450d520e13375336ab2698e887d3846ea973450867627f22096bdbd74a0
3
+ size 1574560033
data/v2/train-00002-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5d42ab3006c5ea74198519f66be6574c0f6f4799198f5d28d0eec9c9c26905c
3
+ size 1575994864
data/v2/train-00003-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00d1728fdd678b5ddafabf940832f1249bac4c969202c34164d13143ea87e2c3
3
+ size 1572347188
data/v2/train-00004-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:903f763ac424f1e9846d6fc5f1b7800b40c8ed6dc12fb658df12c17e5b89317c
3
+ size 1576378492
data/v2/train-00005-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7b34125faaa2a4bf67dce970d6bf5498de04e61d4ec9f579312854c6c9d5308
3
+ size 1573107724
data/v2/train-00006-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26d04d202017bde5c73f69e286294c7d4adad1bf2bdc58a46ac68e137791e22f
3
+ size 1574387579
data/v2/train-00007-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee886df1514155eb63fc7a6b26ba60c7ff9c3c3e189759371182eadac1758c45
3
+ size 1573938451
data/v2/train-00008-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51b6e423b5fb6bc46431141f12723ddb33b6f77fe3bed30cc787688a27ce7b26
3
+ size 1575673927
data/v2/train-00009-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74107fba608238311ad379b264102c5bceb54d5eaf353c7e6901b0a772a10fe8
3
+ size 1572398251
data/v2/train-00010-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8fc46efbe19683654170d298895f5348bd02041cc9676c8cc5358bebcf53a1f6
3
+ size 7086709998
data/v2/train-00011-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5a26513ea7f65330bf3b89310855c1c94e3fc6b05db475bcd8a4cea05633d50
3
+ size 7067300169
data/v2/train-00012-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c5d4c02e5928d849c7422edbf07676964ee88a67e790956f575b50065507d6b
3
+ size 7074816377
data/v2/train-00013-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a27fb84971d6afd627c50e0043bf8cec03243ced8d117dc4e20a4a58189f1caa
3
+ size 7091633287
data/v2/train-00014-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9674b27212b346e1d0295de8396f6148a7d44c972c27e6d7c515842be794b29
3
+ size 7073407816
data/v2/train-00015-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdaee0f6ebf05104d24272a82dce5c6f1e1abf996614f857a35c28e26af7ed72
3
+ size 7086214722
data/v2/train-00016-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ace7319488203d7aef0c46d28a8b9d1ecf098785b9224c90f28c44ecc2703af
3
+ size 7080203587
data/v2/train-00017-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d39ad6e5ec8c271d2a1ee31bb3c85eb20fa072187c1cd8b744100f6061663e9
3
+ size 7094041709
data/v2/train-00018-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf5f3ca10799111f9911edb848c97a6c972d8cdaf8caa32b9e4e0dba9493e3f5
3
+ size 7084182657
data/v2/train-00019-of-00020.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf4d20868a3b6e40d3dd7de642a993569934cd490180a96f70ff620dc13b6fc7
3
+ size 7089800772
data/v2/validation-00000-of-00002.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aaef92cda11feb66d64a76e0748ed8c9086bef235fdc1a62deea4ea50ec7bee7
3
+ size 62400020
data/v2/validation-00001-of-00002.json.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32d5696a1df222ca512f3705b4bb4c732ae1814d3aca66f94f538e28663ba2c7
3
+ size 494441994
data/v3/train-0000-of-0136.zst ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34aa7ffe8011605f6c358346903f29e6e37607493c9760b6a1716b494c79589a
3
+ size 644752991
data/v3/train-0001-of-0136.zst ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5edb64440eba67d28257bcff45300fc458cc523058ba66e9abb03dd88e865aaa
3
+ size 666153152