parquet-converter
commited on
Commit
·
2f2e858
1
Parent(s):
966942a
Update parquet files
Browse files- README.md +0 -37
- Scotch.py +0 -162
- all/scotch-test-00000-of-00005.parquet +3 -0
- all/scotch-test-00001-of-00005.parquet +3 -0
- all/scotch-test-00002-of-00005.parquet +3 -0
- all/scotch-test-00003-of-00005.parquet +3 -0
- all/scotch-test-00004-of-00005.parquet +3 -0
- all/scotch-train-00000-of-00035.parquet +3 -0
- all/scotch-train-00001-of-00035.parquet +3 -0
- all/scotch-train-00002-of-00035.parquet +3 -0
- all/scotch-train-00003-of-00035.parquet +3 -0
- all/scotch-train-00004-of-00035.parquet +3 -0
- all/scotch-train-00005-of-00035.parquet +3 -0
- all/scotch-train-00006-of-00035.parquet +3 -0
- all/scotch-train-00007-of-00035.parquet +3 -0
- all/scotch-train-00008-of-00035.parquet +3 -0
- all/scotch-train-00009-of-00035.parquet +3 -0
- all/scotch-train-00010-of-00035.parquet +3 -0
- all/scotch-train-00011-of-00035.parquet +3 -0
- all/scotch-train-00012-of-00035.parquet +3 -0
- all/scotch-train-00013-of-00035.parquet +3 -0
- all/scotch-train-00014-of-00035.parquet +3 -0
- all/scotch-train-00015-of-00035.parquet +3 -0
- all/scotch-train-00016-of-00035.parquet +3 -0
- all/scotch-train-00017-of-00035.parquet +3 -0
- all/scotch-train-00018-of-00035.parquet +3 -0
- all/scotch-train-00019-of-00035.parquet +3 -0
- all/scotch-train-00020-of-00035.parquet +3 -0
- all/scotch-train-00021-of-00035.parquet +3 -0
- all/scotch-train-00022-of-00035.parquet +3 -0
- all/scotch-train-00023-of-00035.parquet +3 -0
- all/scotch-train-00024-of-00035.parquet +3 -0
- all/scotch-train-00025-of-00035.parquet +3 -0
- all/scotch-train-00026-of-00035.parquet +3 -0
- all/scotch-train-00027-of-00035.parquet +3 -0
- all/scotch-train-00028-of-00035.parquet +3 -0
- all/scotch-train-00029-of-00035.parquet +3 -0
- all/scotch-train-00030-of-00035.parquet +3 -0
- all/scotch-train-00031-of-00035.parquet +3 -0
- all/scotch-train-00032-of-00035.parquet +3 -0
- all/scotch-train-00033-of-00035.parquet +3 -0
- all/scotch-train-00034-of-00035.parquet +3 -0
- all/scotch-validation-00000-of-00005.parquet +3 -0
- all/scotch-validation-00001-of-00005.parquet +3 -0
- all/scotch-validation-00002-of-00005.parquet +3 -0
- all/scotch-validation-00003-of-00005.parquet +3 -0
- all/scotch-validation-00004-of-00005.parquet +3 -0
README.md
DELETED
@@ -1,37 +0,0 @@
|
|
1 |
-
|
2 |
-
## Dataset Summary
|
3 |
-
|
4 |
-
Scotch is a dataset of about 19 million functions collected from open-source repositiories from GitHub with permissive licenses. Each function has its corresponding code context and about 4 million functions have corresponding docstrings.
|
5 |
-
|
6 |
-
### Languages
|
7 |
-
The dataset includes functions written in programming languages Python, Java, Javascript, and Go.
|
8 |
-
|
9 |
-
## Statistics
|
10 |
-
|
11 |
-
### Split
|
12 |
-
The functions with docstrings is splitted into train, valid, and test set of 3200626, 400077, 400080 functions respectively.
|
13 |
-
|
14 |
-
## Features
|
15 |
-
|
16 |
-
Each function consists of following features:
|
17 |
-
|
18 |
-
* repository_name: Name of the repository the function belongs to.
|
19 |
-
* function_path: Path of the function within the repository.
|
20 |
-
* function_identifier: Function name/identifier.
|
21 |
-
* language: Programming language the function is written in.
|
22 |
-
* function: Function string.
|
23 |
-
* docstring: Function docstring.
|
24 |
-
* function_url: URL to the function code.
|
25 |
-
* context: Code context.
|
26 |
-
* license: License info of the repository (includes only repositories with permissive licenses).
|
27 |
-
|
28 |
-
## Data Collection
|
29 |
-
|
30 |
-
The dataset is collected from GitHub repositories of respective languages with 5 or more stars. Such repositories are listed using [SEART](https://seart-ghs.si.usi.ch/). Functions are parsed using a lightweight parser build on top of function parser from [CodeSearchNet dataset](https://github.com/github/CodeSearchNet/tree/master/function_parser) and repositories were collected with help of [github-downloader from EleutherAI](https://github.com/EleutherAI/github-downloader).
|
31 |
-
|
32 |
-
### Data Processing
|
33 |
-
All the code without permissive licenses are removed and deduplication is performed on the remaining set of functions. Afterwards, all the functions with single line of code, whose docstring contains non-English characters are removed. Files with multiple same functions are excluded. This results in about 19M functions. To obtain a dataset of NL-Code pairs, functions with no docstrings or doctrings less than 3 tokens separated by white-space are excluded. Following CodeSearchNet, functions with 'test' keyword in their name are excluded.
|
34 |
-
|
35 |
-
## License
|
36 |
-
|
37 |
-
This dataset is under MIT License. However, the repositories the functions are collected from may have several permissive licenses. Those licenses include MIT License, Apache License 2.0, BSD 3-Clause “New” or “Revised” License, BSD 2-Clause “Simplified” License, and ISC License.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Scotch.py
DELETED
@@ -1,162 +0,0 @@
|
|
1 |
-
# coding=utf-8
|
2 |
-
# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
|
3 |
-
#
|
4 |
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
5 |
-
# you may not use this file except in compliance with the License.
|
6 |
-
# You may obtain a copy of the License at
|
7 |
-
#
|
8 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
9 |
-
#
|
10 |
-
# Unless required by applicable law or agreed to in writing, software
|
11 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
12 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 |
-
# See the License for the specific language governing permissions and
|
14 |
-
# limitations under the License.
|
15 |
-
"""TODO: Add a description here."""
|
16 |
-
|
17 |
-
|
18 |
-
import csv
|
19 |
-
import json
|
20 |
-
import os
|
21 |
-
|
22 |
-
import datasets
|
23 |
-
import pickle
|
24 |
-
from pathlib import Path
|
25 |
-
|
26 |
-
# TODO: Add BibTeX citation
|
27 |
-
# Find for instance the citation on arxiv or on the dataset repo/website
|
28 |
-
_CITATION = """
|
29 |
-
@inproceedings{
|
30 |
-
dahal2022scotch,
|
31 |
-
title={Scotch: A Semantic Code Search Engine for {IDE}s},
|
32 |
-
author={Samip Dahal and Adyasha Maharana and Mohit Bansal},
|
33 |
-
booktitle={Deep Learning for Code Workshop},
|
34 |
-
year={2022},
|
35 |
-
url={https://openreview.net/forum?id=rSxfCiOZk-c}
|
36 |
-
}
|
37 |
-
"""
|
38 |
-
|
39 |
-
# TODO: Add description of the dataset here
|
40 |
-
# You can copy an official description
|
41 |
-
_DESCRIPTION = """\
|
42 |
-
Scotch is a dataset of about 19 million functions collected from open-source repositiories from GitHub with permissive licenses. Each function has its corresponding code context and about 4 million functions have corresponding docstrings. The dataset includes functions written in programming languages Python, Java, Javascript, and Go."""
|
43 |
-
|
44 |
-
# TODO: Add a link to an official homepage for the dataset here
|
45 |
-
_HOMEPAGE = "https://github.com/sdpmas/Scotch"
|
46 |
-
|
47 |
-
# TODO: Add the licence for the dataset here if you can find it
|
48 |
-
_LICENSE = "The MIT License"
|
49 |
-
|
50 |
-
# TODO: Add link to the official dataset URLs here
|
51 |
-
# The HuggingFace dataset library don't host the datasets but only point to the original files
|
52 |
-
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
53 |
-
languages=['python','javascript','java','go']
|
54 |
-
language_map={'python':'py','javascript':'js','go':'go','java':'java'}
|
55 |
-
_URLs = {lang:f'https://scotchdata.s3.amazonaws.com/{lang}.tar.gz' for lang in languages}
|
56 |
-
_URLs['all']=_URLs.copy()
|
57 |
-
|
58 |
-
|
59 |
-
# TODO: Name of the dataset usually match the script name with CamelCase instead of snake_case
|
60 |
-
class ScotchDataset(datasets.GeneratorBasedBuilder):
|
61 |
-
VERSION = datasets.Version("1.0.0")
|
62 |
-
BUILDER_CONFIGS = [
|
63 |
-
datasets.BuilderConfig(name="all", version=VERSION, description="All available data with docstrings"),
|
64 |
-
datasets.BuilderConfig(name="python", version=VERSION, description="Python data"),
|
65 |
-
datasets.BuilderConfig(name="javascript", version=VERSION, description="Javascript data"),
|
66 |
-
datasets.BuilderConfig(name="java", version=VERSION, description="Java data"),
|
67 |
-
datasets.BuilderConfig(name="go", version=VERSION, description="Go data"),
|
68 |
-
]
|
69 |
-
|
70 |
-
DEFAULT_CONFIG_NAME = "all"
|
71 |
-
|
72 |
-
def _info(self):
|
73 |
-
# TODO: This method specifies the datasets.DatasetInfo object which contains informations and typings for the dataset
|
74 |
-
|
75 |
-
features = datasets.Features(
|
76 |
-
{
|
77 |
-
"repository_name": datasets.Value("string"),
|
78 |
-
"function_path": datasets.Value("string"),
|
79 |
-
"function_identifier": datasets.Value("string"),
|
80 |
-
"language": datasets.Value("string"),
|
81 |
-
"function": datasets.Value("string"),
|
82 |
-
"docstring": datasets.Value("string"),
|
83 |
-
"function_url": datasets.Value("string"),
|
84 |
-
"context":datasets.Value("string"),
|
85 |
-
"license":datasets.Value("string"),
|
86 |
-
}
|
87 |
-
)
|
88 |
-
return datasets.DatasetInfo(
|
89 |
-
description=_DESCRIPTION,
|
90 |
-
features=features, # Here we define them above because they are different between the two configurations
|
91 |
-
supervised_keys=None,
|
92 |
-
homepage=_HOMEPAGE,
|
93 |
-
license=_LICENSE,
|
94 |
-
citation=_CITATION,
|
95 |
-
)
|
96 |
-
|
97 |
-
def _split_generators(self, dl_manager):
|
98 |
-
"""Returns SplitGenerators."""
|
99 |
-
my_urls = _URLs[self.config.name]
|
100 |
-
if isinstance(my_urls, str):
|
101 |
-
my_urls = {self.config.name:my_urls}
|
102 |
-
data_dir = [os.path.join(lang_dir,lang) for lang,lang_dir in dl_manager.download_and_extract(my_urls).items()]
|
103 |
-
|
104 |
-
# splitpaths={split:[os.path.join(lang_dir,f'{split}.bin') for lang_dir in data_dir] for split in ['train','valid','test']}
|
105 |
-
splitpaths={}
|
106 |
-
for split in ['train','valid','test']:
|
107 |
-
for lang_dir in data_dir:
|
108 |
-
# Path glob .bin files
|
109 |
-
lang_split_files=sorted(Path(os.path.join(lang_dir,split)).glob('*.bin'))
|
110 |
-
if not split in splitpaths:
|
111 |
-
splitpaths[split]=lang_split_files
|
112 |
-
else:
|
113 |
-
splitpaths[split].extend(lang_split_files)
|
114 |
-
|
115 |
-
return [
|
116 |
-
datasets.SplitGenerator(
|
117 |
-
name=datasets.Split.TRAIN,
|
118 |
-
# These kwargs will be passed to _generate_examples
|
119 |
-
gen_kwargs={
|
120 |
-
"filepath": splitpaths['train'],
|
121 |
-
"split": "train",
|
122 |
-
},
|
123 |
-
),
|
124 |
-
datasets.SplitGenerator(
|
125 |
-
name=datasets.Split.TEST,
|
126 |
-
# These kwargs will be passed to _generate_examples
|
127 |
-
gen_kwargs={
|
128 |
-
"filepath": splitpaths['test'],
|
129 |
-
"split": "test"
|
130 |
-
},
|
131 |
-
),
|
132 |
-
datasets.SplitGenerator(
|
133 |
-
name=datasets.Split.VALIDATION,
|
134 |
-
# These kwargs will be passed to _generate_examples
|
135 |
-
gen_kwargs={
|
136 |
-
"filepath": splitpaths['valid'],
|
137 |
-
"split": "valid",
|
138 |
-
},
|
139 |
-
),
|
140 |
-
]
|
141 |
-
|
142 |
-
def _generate_examples(
|
143 |
-
self, filepath,split # method parameters are unpacked from `gen_kwargs` as given in `_split_generators`
|
144 |
-
):
|
145 |
-
""" Yields examples as (key, example) tuples. """
|
146 |
-
count=-1
|
147 |
-
for i,filepath in enumerate(filepath):
|
148 |
-
loaded_f=pickle.load(open(filepath,'rb'))
|
149 |
-
for j, func in enumerate(loaded_f):
|
150 |
-
count+=1
|
151 |
-
yield count,{
|
152 |
-
"repository_name": str(func['nwo']),
|
153 |
-
"function_path":str(func['path']),
|
154 |
-
"function_identifier": str(func['identifier']),
|
155 |
-
"language": str(func['language']),
|
156 |
-
"function": str(func['function']),
|
157 |
-
"docstring": str(func['docstring']),
|
158 |
-
"function_url": str(func['url']),
|
159 |
-
"context":str(func['context']),
|
160 |
-
"license":str(func['license']),
|
161 |
-
}
|
162 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
all/scotch-test-00000-of-00005.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b3800cf0ac9f4e96623da6cac8e19fdfdaba84374f39132743b120f7c83ad879
|
3 |
+
size 189368060
|
all/scotch-test-00001-of-00005.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7be9334143019493c9992a2f2fc2294c6250588eb2cca83b96ca9b6dab1d4bbe
|
3 |
+
size 189578137
|
all/scotch-test-00002-of-00005.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:144268c487fcaebc5e769df23ad8502e5f955cc5a67fa41e08f118e3571dcd2a
|
3 |
+
size 192305349
|
all/scotch-test-00003-of-00005.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f69994f55b5798fb0f12fef2fa7cc00eca6e355409831431ec723b86eb590273
|
3 |
+
size 173671639
|
all/scotch-test-00004-of-00005.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7ce6502c5eca9f7a554ae701bfc5c7d4b01f381f47dc3fcfad435965ba89b014
|
3 |
+
size 53207507
|
all/scotch-train-00000-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e47d01c5a0dd84c52d2f6a232ff73c37483d6a713bab2ce08404975315bc5f68
|
3 |
+
size 192186935
|
all/scotch-train-00001-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3d4da8f0272de0ebb8977effbfbe6ec25674f923be82d20040cfb9e3538ba94
|
3 |
+
size 189719792
|
all/scotch-train-00002-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dd0ce8dafe2edca38383a3744f018556b2c60e911e72b6fca88101622a9d7a1e
|
3 |
+
size 189474577
|
all/scotch-train-00003-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ef7f4328e7062e89419d073c0acfbbd8e9ad15428d1942128d1ab593a04ed7bb
|
3 |
+
size 189637009
|
all/scotch-train-00004-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:de78d9bd606f055a10d5c8c952f38101a997d9b9a6225fb26ecc0a36be126cd8
|
3 |
+
size 192049909
|
all/scotch-train-00005-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:db48f86666ad9ad428e53930dc81399cd3b6c7288dfe384491e0211c2dfebcb7
|
3 |
+
size 189862942
|
all/scotch-train-00006-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:520d74cff3fdcfdb976a5474d7fecc1a2cad4eb1a4db2c8cad9ba947afa3ceee
|
3 |
+
size 188544997
|
all/scotch-train-00007-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8ae3bd5b6ad9fdbcb5bf3cf10349209351ed255b1da45f5e02e87acc11478753
|
3 |
+
size 189177919
|
all/scotch-train-00008-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ac8a9a0e9f2af43adcd11fd05452b8d74cc8db792cfaae7817a5a6c8df905191
|
3 |
+
size 189078725
|
all/scotch-train-00009-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d0f6b7a528b89518094d9686662e97f83293a4384566ac628a38ea336cf675cc
|
3 |
+
size 190648471
|
all/scotch-train-00010-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:251c20ad0809e488f182c0fbb900868937da38b70191684408a5ca62d3fe0ca2
|
3 |
+
size 188581756
|
all/scotch-train-00011-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b32bd069c0da60b1e5d271bc3356bd437188dd6a4dc328fc77ec3633b0ae3e9c
|
3 |
+
size 190091592
|
all/scotch-train-00012-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68b2c7116a34cc103b01831eab4e058b78df5c371e891da10c953979907e9ce7
|
3 |
+
size 188681216
|
all/scotch-train-00013-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2c8505aa8f03e925a70d9561cecf54b8ad38c31354c50604a0dbb3c948a4f76f
|
3 |
+
size 190208906
|
all/scotch-train-00014-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:90051c4b058ee1c82baf157cf2a8c586ecc3efacb95932a406f6cfc872b8ddac
|
3 |
+
size 190388352
|
all/scotch-train-00015-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5117cc4e8b54f510e04e9039957869df6c1ae19eb1f774ceb6ad1b2350cbe58f
|
3 |
+
size 190089008
|
all/scotch-train-00016-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6d479972c199a5f66cf83c362572730387dd2b0c8d8322493287f7e37eeedb66
|
3 |
+
size 189847230
|
all/scotch-train-00017-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfc49a913ae766dc48a27f8a67a66a302ccc67ecbaaa0f36cabb66875ea23363
|
3 |
+
size 195107533
|
all/scotch-train-00018-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:356d3e0a0cf9f48b8d73a113bd47935da6dee6aa1623ff52afb65a27a7766b41
|
3 |
+
size 198966780
|
all/scotch-train-00019-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:06069daa90815f404706ed4a262921e50e4b560d6d4dbae8af48b1ad9eedf0a8
|
3 |
+
size 200103807
|
all/scotch-train-00020-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:41b91010627334e83039c84c39a9d67e857e4730429cab1c43557321ded6b797
|
3 |
+
size 196499331
|
all/scotch-train-00021-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:33964a9897613c97b17cdac312b062a1b95eb99e847eb4f3f356da70776a556b
|
3 |
+
size 196784008
|
all/scotch-train-00022-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8c3a1ffebc40d9496f69293a827614adc5bfcfe09c2c565b4d47dfb653dc4841
|
3 |
+
size 185790371
|
all/scotch-train-00023-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a887aeb8a8e46e75c55ebc75411110f4e48c78dafd3b2e4b029eeafe26ccd7d5
|
3 |
+
size 171561744
|
all/scotch-train-00024-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:95c61448ef5a43b54f954fa871c00c0edd33d5d2906e11ccc4b7c6a61adf117d
|
3 |
+
size 170670904
|
all/scotch-train-00025-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eb7295233c15c6c9e58927358f6523f29f71d0817a29984d02699b2467763f7b
|
3 |
+
size 171551984
|
all/scotch-train-00026-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f0647eaf54fe961a335525b035b1b7163a02d99ff095c22c1a4dcaf5689e3111
|
3 |
+
size 171497181
|
all/scotch-train-00027-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2fe553063e05cf36410f284b2854baa273405a011e45bcabf16b597c6b2a237d
|
3 |
+
size 171641163
|
all/scotch-train-00028-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cac409ac0990bc390263f6bcb1a80db3601d64c6de8045c6dd279f829b480843
|
3 |
+
size 171059468
|
all/scotch-train-00029-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3e23332d1125d6cbb33e9290f0a1dbdd4ec90f985899dce3ddd0ea685b95cb2
|
3 |
+
size 181188718
|
all/scotch-train-00030-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:270b35b4d8e6e47cc2e119973f6430b1d482937b1cef2fe6568a5a0135e0ec20
|
3 |
+
size 182994304
|
all/scotch-train-00031-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:37ba9b4e5a0c314d6a72f6f0a5c1695968495c8b616e0239193e8180ecfd72f0
|
3 |
+
size 184471040
|
all/scotch-train-00032-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2f5acc8197bfe5e445c02439ca659767a6f14ef6461babd52efba1c97c4b95c4
|
3 |
+
size 184055445
|
all/scotch-train-00033-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a013ce85ecdba88ccafe4adeac6a94c1d04b4ddf9f0f8cfb5858081171297f54
|
3 |
+
size 184074011
|
all/scotch-train-00034-of-00035.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bfa1a272b3f4dee3ffc9cd0d220c5ebe73d9f969e58426a9e70c9d8375ce8245
|
3 |
+
size 49982913
|
all/scotch-validation-00000-of-00005.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f3beaf9159052a7c4019ea7826c1ed750db697fa546e2778ca4091bd8858e021
|
3 |
+
size 189983730
|
all/scotch-validation-00001-of-00005.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dc8ad378fb32a530a9c4dc51e0cb90bf3d48eb0ee09f016af4c0e71c1923e612
|
3 |
+
size 189623315
|
all/scotch-validation-00002-of-00005.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aea74ce75dff9b44e335b48d0b2389f5e956a29ee99e8036067590bd6f8e4031
|
3 |
+
size 190850331
|
all/scotch-validation-00003-of-00005.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1ce254badc9950f7e4a7df8965cf5d15e7c73c277f87ec7b2d2ebee939a3a365
|
3 |
+
size 174733277
|
all/scotch-validation-00004-of-00005.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d0a1bffdb97dd2ec8b7dabf782012935cead48bbeeff8076660d5d038dbbc01
|
3 |
+
size 53457283
|