parquet-converter commited on
Commit
9059609
1 Parent(s): de9a268

Update parquet files (step 2 of 5)

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +0 -239
  2. data/train-00003-of-01126.parquet +0 -3
  3. data/train-00009-of-01126.parquet +0 -3
  4. data/train-00011-of-01126.parquet +0 -3
  5. data/train-00013-of-01126.parquet +0 -3
  6. data/train-00017-of-01126.parquet +0 -3
  7. data/train-00020-of-01126.parquet +0 -3
  8. data/train-00023-of-01126.parquet +0 -3
  9. data/train-00029-of-01126.parquet +0 -3
  10. data/train-00032-of-01126.parquet +0 -3
  11. data/train-00038-of-01126.parquet +0 -3
  12. data/train-00043-of-01126.parquet +0 -3
  13. data/train-00044-of-01126.parquet +0 -3
  14. data/train-00046-of-01126.parquet +0 -3
  15. data/train-00049-of-01126.parquet +0 -3
  16. data/train-00050-of-01126.parquet +0 -3
  17. data/train-00051-of-01126.parquet +0 -3
  18. data/train-00052-of-01126.parquet +0 -3
  19. data/train-00054-of-01126.parquet +0 -3
  20. data/train-00055-of-01126.parquet +0 -3
  21. data/train-00058-of-01126.parquet +0 -3
  22. data/train-00063-of-01126.parquet +0 -3
  23. data/train-00069-of-01126.parquet +0 -3
  24. data/train-00070-of-01126.parquet +0 -3
  25. data/train-00072-of-01126.parquet +0 -3
  26. data/train-00074-of-01126.parquet +0 -3
  27. data/train-00079-of-01126.parquet +0 -3
  28. data/train-00085-of-01126.parquet +0 -3
  29. data/train-00088-of-01126.parquet +0 -3
  30. data/train-00090-of-01126.parquet +0 -3
  31. data/train-00093-of-01126.parquet +0 -3
  32. data/train-00094-of-01126.parquet +0 -3
  33. data/train-00097-of-01126.parquet +0 -3
  34. data/train-00098-of-01126.parquet +0 -3
  35. data/train-00099-of-01126.parquet +0 -3
  36. data/train-00104-of-01126.parquet +0 -3
  37. data/train-00110-of-01126.parquet +0 -3
  38. data/train-00113-of-01126.parquet +0 -3
  39. data/train-00114-of-01126.parquet +0 -3
  40. data/train-00116-of-01126.parquet +0 -3
  41. data/train-00117-of-01126.parquet +0 -3
  42. data/train-00118-of-01126.parquet +0 -3
  43. data/train-00119-of-01126.parquet +0 -3
  44. data/train-00121-of-01126.parquet +0 -3
  45. data/train-00122-of-01126.parquet +0 -3
  46. data/train-00130-of-01126.parquet +0 -3
  47. data/train-00132-of-01126.parquet +0 -3
  48. data/train-00133-of-01126.parquet +0 -3
  49. data/train-00135-of-01126.parquet +0 -3
  50. data/train-00137-of-01126.parquet +0 -3
README.md DELETED
@@ -1,239 +0,0 @@
1
- ---
2
- annotations_creators: []
3
- language_creators:
4
- - crowdsourced
5
- - expert-generated
6
- language:
7
- - code
8
- license:
9
- - other
10
- multilinguality:
11
- - multilingual
12
- pretty_name: github-code
13
- size_categories:
14
- - unknown
15
- source_datasets: []
16
- task_categories:
17
- - text-generation
18
- task_ids:
19
- - language-modeling
20
- ---
21
-
22
- # GitHub Code Dataset
23
-
24
- ## Dataset Description
25
- The GitHub Code dataset consists of 115M code files from GitHub in 32 programming languages with 60 extensions totaling in 1TB of data. The dataset was created from the public GitHub dataset on Google BiqQuery.
26
-
27
- ### How to use it
28
-
29
- The GitHub Code dataset is a very large dataset so for most use cases it is recommended to make use of the streaming API of `datasets`. You can load and iterate through the dataset with the following two lines of code:
30
-
31
- ```python
32
- from datasets import load_dataset
33
-
34
- ds = load_dataset("codeparrot/github-code", streaming=True, split="train")
35
- print(next(iter(ds)))
36
-
37
- #OUTPUT:
38
- {
39
- 'code': "import mod189 from './mod189';\nvar value=mod189+1;\nexport default value;\n",
40
- 'repo_name': 'MirekSz/webpack-es6-ts',
41
- 'path': 'app/mods/mod190.js',
42
- 'language': 'JavaScript',
43
- 'license': 'isc',
44
- 'size': 73
45
- }
46
- ```
47
-
48
- You can see that besides the code, repo name, and path also the programming language, license, and the size of the file are part of the dataset. You can also filter the dataset for any subset of the 30 included languages (see the full list below) in the dataset. Just pass the list of languages as a list. E.g. if your dream is to build a Codex model for Dockerfiles use the following configuration:
49
-
50
- ```python
51
- ds = load_dataset("codeparrot/github-code", streaming=True, split="train", languages=["Dockerfile"])
52
- print(next(iter(ds))["code"])
53
-
54
- #OUTPUT:
55
- """\
56
- FROM rockyluke/ubuntu:precise
57
-
58
- ENV DEBIAN_FRONTEND="noninteractive" \
59
- TZ="Europe/Amsterdam"
60
- ...
61
- """
62
- ```
63
-
64
- We also have access to the license of the origin repo of a file so we can filter for licenses in the same way we filtered for languages:
65
-
66
- ```python
67
- ds = load_dataset("codeparrot/github-code", streaming=True, split="train", licenses=["mit", "isc"])
68
-
69
- licenses = []
70
- for element in iter(ds).take(10_000):
71
- licenses.append(element["license"])
72
- print(Counter(licenses))
73
-
74
- #OUTPUT:
75
- Counter({'mit': 9896, 'isc': 104})
76
- ```
77
-
78
- Naturally, you can also download the full dataset. Note that this will download ~300GB compressed text data and the uncompressed dataset will take up ~1TB of storage:
79
- ```python
80
- ds = load_dataset("codeparrot/github-code", split="train")
81
- ```
82
-
83
- ## Data Structure
84
-
85
- ### Data Instances
86
-
87
- ```python
88
- {
89
- 'code': "import mod189 from './mod189';\nvar value=mod189+1;\nexport default value;\n",
90
- 'repo_name': 'MirekSz/webpack-es6-ts',
91
- 'path': 'app/mods/mod190.js',
92
- 'language': 'JavaScript',
93
- 'license': 'isc',
94
- 'size': 73
95
- }
96
- ```
97
-
98
- ### Data Fields
99
-
100
- |Field|Type|Description|
101
- |---|---|---|
102
- |code|string|content of source file|
103
- |repo_name|string|name of the GitHub repository|
104
- |path|string|path of file in GitHub repository|
105
- |language|string|programming language as inferred by extension|
106
- |license|string|license of GitHub repository|
107
- |size|int|size of source file in bytes|
108
-
109
- ### Data Splits
110
-
111
- The dataset only contains a train split.
112
-
113
- ## Languages
114
-
115
- The dataset contains 30 programming languages with over 60 extensions:
116
-
117
- ```python
118
- {
119
- "Assembly": [".asm"],
120
- "Batchfile": [".bat", ".cmd"],
121
- "C": [".c", ".h"],
122
- "C#": [".cs"],
123
- "C++": [".cpp", ".hpp", ".c++", ".h++", ".cc", ".hh", ".C", ".H"],
124
- "CMake": [".cmake"],
125
- "CSS": [".css"],
126
- "Dockerfile": [".dockerfile", "Dockerfile"],
127
- "FORTRAN": ['.f90', '.f', '.f03', '.f08', '.f77', '.f95', '.for', '.fpp'],
128
- "GO": [".go"],
129
- "Haskell": [".hs"],
130
- "HTML":[".html"],
131
- "Java": [".java"],
132
- "JavaScript": [".js"],
133
- "Julia": [".jl"],
134
- "Lua": [".lua"],
135
- "Makefile": ["Makefile"],
136
- "Markdown": [".md", ".markdown"],
137
- "PHP": [".php", ".php3", ".php4", ".php5", ".phps", ".phpt"],
138
- "Perl": [".pl", ".pm", ".pod", ".perl"],
139
- "PowerShell": ['.ps1', '.psd1', '.psm1'],
140
- "Python": [".py"],
141
- "Ruby": [".rb"],
142
- "Rust": [".rs"],
143
- "SQL": [".sql"],
144
- "Scala": [".scala"],
145
- "Shell": [".sh", ".bash", ".command", ".zsh"],
146
- "TypeScript": [".ts", ".tsx"],
147
- "TeX": [".tex"],
148
- "Visual Basic": [".vb"]
149
- }
150
- ```
151
-
152
- ## Licenses
153
- Each example is also annotated with the license of the associated repository. There are in total 15 licenses:
154
- ```python
155
- [
156
- 'mit',
157
- 'apache-2.0',
158
- 'gpl-3.0',
159
- 'gpl-2.0',
160
- 'bsd-3-clause',
161
- 'agpl-3.0',
162
- 'lgpl-3.0',
163
- 'lgpl-2.1',
164
- 'bsd-2-clause',
165
- 'cc0-1.0',
166
- 'epl-1.0',
167
- 'mpl-2.0',
168
- 'unlicense',
169
- 'isc',
170
- 'artistic-2.0'
171
- ]
172
- ```
173
-
174
- ## Dataset Statistics
175
-
176
- The dataset contains 115M files and the sum of all the source code file sizes is 873 GB (note that the size of the dataset is larger due to the extra fields). A breakdown per language is given in the plot and table below:
177
-
178
- ![dataset-statistics](https://huggingface.co/datasets/codeparrot/github-code/resolve/main/github-code-stats-alpha.png)
179
-
180
- | | Language |File Count| Size (GB)|
181
- |---:|:-------------|---------:|-------:|
182
- | 0 | Java | 19548190 | 107.70 |
183
- | 1 | C | 14143113 | 183.83 |
184
- | 2 | JavaScript | 11839883 | 87.82 |
185
- | 3 | HTML | 11178557 | 118.12 |
186
- | 4 | PHP | 11177610 | 61.41 |
187
- | 5 | Markdown | 8464626 | 23.09 |
188
- | 6 | C++ | 7380520 | 87.73 |
189
- | 7 | Python | 7226626 | 52.03 |
190
- | 8 | C# | 6811652 | 36.83 |
191
- | 9 | Ruby | 4473331 | 10.95 |
192
- | 10 | GO | 2265436 | 19.28 |
193
- | 11 | TypeScript | 1940406 | 24.59 |
194
- | 12 | CSS | 1734406 | 22.67 |
195
- | 13 | Shell | 1385648 | 3.01 |
196
- | 14 | Scala | 835755 | 3.87 |
197
- | 15 | Makefile | 679430 | 2.92 |
198
- | 16 | SQL | 656671 | 5.67 |
199
- | 17 | Lua | 578554 | 2.81 |
200
- | 18 | Perl | 497949 | 4.70 |
201
- | 19 | Dockerfile | 366505 | 0.71 |
202
- | 20 | Haskell | 340623 | 1.85 |
203
- | 21 | Rust | 322431 | 2.68 |
204
- | 22 | TeX | 251015 | 2.15 |
205
- | 23 | Batchfile | 236945 | 0.70 |
206
- | 24 | CMake | 175282 | 0.54 |
207
- | 25 | Visual Basic | 155652 | 1.91 |
208
- | 26 | FORTRAN | 142038 | 1.62 |
209
- | 27 | PowerShell | 136846 | 0.69 |
210
- | 28 | Assembly | 82905 | 0.78 |
211
- | 29 | Julia | 58317 | 0.29 |
212
-
213
-
214
- ## Dataset Creation
215
-
216
- The dataset was created in two steps:
217
- 1. Files of with the extensions given in the list above were retrieved from the GitHub dataset on BigQuery (full query [here](https://huggingface.co/datasets/codeparrot/github-code/blob/main/query.sql)). The query was executed on _Mar 16, 2022, 6:23:39 PM UTC+1_.
218
- 2. Files with lines longer than 1000 characters and duplicates (exact duplicates ignoring whitespaces) were dropped (full preprocessing script [here](https://huggingface.co/datasets/codeparrot/github-code/blob/main/github_preprocessing.py)).
219
-
220
- ## Considerations for Using the Data
221
-
222
- The dataset consists of source code from a wide range of repositories. As such they can potentially include harmful or biased code as well as sensitive information like passwords or usernames.
223
-
224
- ## Releases
225
-
226
- You can load any older version of the dataset with the `revision` argument:
227
-
228
- ```Python
229
- ds = load_dataset("codeparrot/github-code", revision="v1.0")
230
- ```
231
-
232
- ### v1.0
233
- - Initial release of dataset
234
- - The query was executed on _Feb 14, 2022, 12:03:16 PM UTC+1_
235
-
236
- ### v1.1
237
- - Fix missing Scala/TypeScript
238
- - Fix deduplication issue with inconsistent Python `hash`
239
- - The query was executed on _Mar 16, 2022, 6:23:39 PM UTC+1_
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/train-00003-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e109df908104b38b74e24cbdda7bb33312483cb8a87e586c27f96ea63139ac3b
3
- size 286618668
 
 
 
 
data/train-00009-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a376e8845d529ae21e82ded3e8a0fc11adcdfab45b0b3c8493e9c3369a936fd8
3
- size 288608163
 
 
 
 
data/train-00011-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:34bc9bc9a2f06edcb05bd008ae5d2d88e3f71aa1ac1bf42936d1f0384dea3863
3
- size 287279209
 
 
 
 
data/train-00013-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:c48677aa8c87aeec90847de213ad2bfbd592bc307e6f7276a9ee8f19631c2bf3
3
- size 289578681
 
 
 
 
data/train-00017-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:2c73c4f4a54000fd70d17adc94a22163acb88eb7352c8cc025c28c3e8c547259
3
- size 290163282
 
 
 
 
data/train-00020-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:75b5b38b193097618ffbe014bcab86954f7c1ab73dc22560a6691d2eec74061b
3
- size 292486311
 
 
 
 
data/train-00023-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:5185deee73e91bc683bcc0896541bda7b59eabb2a74d22d48358e1e5cf2eb7ad
3
- size 285055031
 
 
 
 
data/train-00029-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:90f8393386ba8e3029dfe73c6e0d3b5c43b159fa7e700ab80d9189ba54e8dffb
3
- size 284654752
 
 
 
 
data/train-00032-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e09ab5cabd868842c59b59a92bde1b27a915f8c5a638599c7a5ffcc30e69097d
3
- size 284889860
 
 
 
 
data/train-00038-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:473a03f6c561e28f3be5cda222f7b468fe6eed74e8eb7d9e586c7e3f9495375f
3
- size 290208078
 
 
 
 
data/train-00043-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:31f39b5eb649aacc23fadfa3e9840bedc9f175156ee319ed42733f1350bbb0a7
3
- size 292595046
 
 
 
 
data/train-00044-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:baa56c8eebe68bb791d1a0f047eba158ea5f94bf973dc46496a6ee507917d84a
3
- size 289188297
 
 
 
 
data/train-00046-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:8da3bd233deef51e8a0a85a74f137e5caf29c7ecf169c99257c8ae67b75c2041
3
- size 288215632
 
 
 
 
data/train-00049-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a3969693aefb8a46b89f95c551d9182f203e794c878d7490900bb42dff22f119
3
- size 288533790
 
 
 
 
data/train-00050-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:6bed9642f303e0ed75d71ce763896b1d8639bf08a86096824e08035291bacb9d
3
- size 291912014
 
 
 
 
data/train-00051-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:9d33818d4a992dd87f20505daf0377af3c4eeac113d1f85d272bc4d299be790d
3
- size 283276668
 
 
 
 
data/train-00052-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:21a7d902b1cbd8f35484b3b08c79f6e85deec1f9103cebbef27f46c9eb4942d9
3
- size 287323527
 
 
 
 
data/train-00054-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7d0dd0ca4ffb1695dd0fe7c12436231b0156f7c7cd3041fcdd3267530a7e8947
3
- size 289400839
 
 
 
 
data/train-00055-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:c5da4940564e5c9ac78243306f90fa250a66c8c3f8db5982c9b6f8dcac2dc8ec
3
- size 291665863
 
 
 
 
data/train-00058-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b4a9aa492380df79a87068900e8340943081d4eb0ba585fc772637408c7215b2
3
- size 287295369
 
 
 
 
data/train-00063-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ae318c9a1b4ca5e3497f9cab5590d3fbd4f56226e4b56401c3af76f5bc0f418e
3
- size 283190437
 
 
 
 
data/train-00069-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0ab27942e7ee3c8370176dea49fc1c38f28482fa279977ca65454e67b79a59f0
3
- size 288907243
 
 
 
 
data/train-00070-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:759577b29e5b62785b52c5efdbb86e2fffb5d4b60ff65362a05b00ca7d953c4b
3
- size 287994479
 
 
 
 
data/train-00072-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1cce818c48b19a665023a7811f3fae46d1263b42b10ee7dc132a0500160b057d
3
- size 291023275
 
 
 
 
data/train-00074-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:4e2b1bd6e18f3c347d00d20928850b9620717ea3ebd2400aeecd49da01638c46
3
- size 283380855
 
 
 
 
data/train-00079-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:5228efc89ba12fc9cf2ec509fcb0a6e4becec792ac42b8b1a497e1f74cac38cd
3
- size 290093345
 
 
 
 
data/train-00085-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a7ee32a29578e7ecdf81b5a3a8ab57c62f83ee289d9a1786f480cf0744ae89d0
3
- size 287652477
 
 
 
 
data/train-00088-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a0d8c13b5952c590fed15f50a5b12c6d8f73ffccbd4df4632ea3b3ac5c683d3b
3
- size 291677677
 
 
 
 
data/train-00090-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:dde8de2003ca9f81ab9785b2cf334d23089923c37759bdbf05eb930ce14ae533
3
- size 293626842
 
 
 
 
data/train-00093-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:27bfed3e8bd6f5ba4cc065482a1751ff5e23ad605f52cbd45696e0fdff0205f2
3
- size 295227840
 
 
 
 
data/train-00094-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:522e575a59f8222612705cb847d2a19a1871621d44d704488e9ed336df586f0f
3
- size 285291464
 
 
 
 
data/train-00097-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:9b24178495f50babf6015c200459e657fe7beae7d8f92d906586d4434197f75f
3
- size 287408383
 
 
 
 
data/train-00098-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f08b2ba9638f6b6bb776f091e5199956651b13f56ab2312a4e7fe5a46d6a3716
3
- size 287511272
 
 
 
 
data/train-00099-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:9d1b4ac4c01054cfe936214dd6957ab3d2c1df321701928f8d95904a0f5f3635
3
- size 291834520
 
 
 
 
data/train-00104-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ee3baf7cf5176cd7e7f053f3760a9621448d5c1951ffcdedcdeb227ec4aa78f3
3
- size 289290464
 
 
 
 
data/train-00110-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e63dd9fd8b9632209fa433ee451e7325908aed00494da9725eb50e45a5a7fd8a
3
- size 290382522
 
 
 
 
data/train-00113-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:639fc0d05cdb87dd061b00a8edfb8eff8350975400791e74200525f7f62e695f
3
- size 281837234
 
 
 
 
data/train-00114-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:9f605355fe6917749a4ecf14adf4fe4c1319c7805d7498ec6d0d7d1a4f21b8d8
3
- size 294650165
 
 
 
 
data/train-00116-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d27838bef378b544a1fb21cbb0d263a8b02dd398445828d0f646c157e5e4ba6d
3
- size 286620057
 
 
 
 
data/train-00117-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:3093883ed31fec059f96a862fd0f9a4b04247f13c5bccf56d825cdc98a2a147d
3
- size 297269432
 
 
 
 
data/train-00118-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d6979edccd994ddca1b756f3841383730cb6f5b14acd2919db8656cc37922e88
3
- size 289953012
 
 
 
 
data/train-00119-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f9b5a0f681f86e673ba3f649933c07d07a9a85d1489d0d2dfe9aa88c599275af
3
- size 288437385
 
 
 
 
data/train-00121-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e92f8c83a4699067f3d275be03b1212992d2950008cfafc1eb8974dc5510c8ea
3
- size 290915252
 
 
 
 
data/train-00122-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:cd752fbf1ad5e364b9300b7287835794181da132af9d10c951cb35ca768658af
3
- size 288245828
 
 
 
 
data/train-00130-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:773a992aacb68060a736dc8c2a964ecf14276b02a9b5115ad9d8fa9427c6fb43
3
- size 290139735
 
 
 
 
data/train-00132-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1a028ed6dd9c7a682af348aab85f5f5a875d200daaf1e34e8b0eab7f7d1bcbb6
3
- size 290604428
 
 
 
 
data/train-00133-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a7c2c5fbfa23661b663b8db6ade304e04c2f01c43c1eda7a00a5b916f4c590fd
3
- size 290262042
 
 
 
 
data/train-00135-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ee7ca0ab46049daeb8eca9a45c5b4707d7846543c9c3f92dba80b3c0e6effdc4
3
- size 284251125
 
 
 
 
data/train-00137-of-01126.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:767a89bd5b6ae33ae8298c32c9a70111f4706a686c79dfcf993839902cbe1d1c
3
- size 287184072