Datasets:
Tasks:
Text Generation
Modalities:
Text
Sub-tasks:
language-modeling
Languages:
English
Size:
100K - 1M
License:
Zhangir Azerbayev
commited on
Commit
•
0a98945
1
Parent(s):
727c257
added metadata
Browse files- proof-pile.py +10 -15
proof-pile.py
CHANGED
@@ -11,8 +11,7 @@
|
|
11 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
# See the License for the specific language governing permissions and
|
13 |
# limitations under the License.
|
14 |
-
|
15 |
-
"""TODO: Add a description here."""
|
16 |
|
17 |
|
18 |
import csv
|
@@ -31,39 +30,35 @@ import datasets
|
|
31 |
# Find for instance the citation on arxiv or on the dataset repo/website
|
32 |
_CITATION = """\
|
33 |
@InProceedings{huggingface:dataset,
|
34 |
-
title = {
|
35 |
-
author={
|
36 |
},
|
37 |
-
year={
|
38 |
}
|
39 |
"""
|
40 |
|
41 |
# TODO: Add description of the dataset here
|
42 |
# You can copy an official description
|
43 |
_DESCRIPTION = """\
|
44 |
-
|
45 |
-
""
|
46 |
-
|
47 |
-
# TODO: Add a link to an official homepage for the dataset here
|
48 |
-
_HOMEPAGE = ""
|
49 |
|
50 |
# TODO: Add the licence for the dataset here if you can find it
|
51 |
-
_LICENSE = ""
|
52 |
|
53 |
# TODO: Add link to the official dataset URLs here
|
54 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
55 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
56 |
_URLS = {
|
57 |
-
"first_domain": "https://huggingface.co/
|
58 |
-
"second_domain": "https://huggingface.co/great-new-dataset-second_domain.zip",
|
59 |
}
|
60 |
|
61 |
|
62 |
# TODO: Name of the dataset usually match the script name with CamelCase instead of snake_case
|
63 |
class ProofPile(datasets.GeneratorBasedBuilder):
|
64 |
-
"""
|
65 |
|
66 |
-
VERSION = datasets.Version("1.
|
67 |
|
68 |
# This is an example of a dataset with multiple configurations.
|
69 |
# If you don't want/need to define several sub-sets in your dataset,
|
|
|
11 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
# See the License for the specific language governing permissions and
|
13 |
# limitations under the License.
|
14 |
+
"""A dataset of high quality mathematical text."""
|
|
|
15 |
|
16 |
|
17 |
import csv
|
|
|
30 |
# Find for instance the citation on arxiv or on the dataset repo/website
|
31 |
_CITATION = """\
|
32 |
@InProceedings{huggingface:dataset,
|
33 |
+
title = {proof-pile},
|
34 |
+
author={Zhangir Azerbayev, Edward Ayers, Bartosz Piotrowski
|
35 |
},
|
36 |
+
year={2022}
|
37 |
}
|
38 |
"""
|
39 |
|
40 |
# TODO: Add description of the dataset here
|
41 |
# You can copy an official description
|
42 |
_DESCRIPTION = """\
|
43 |
+
A dataset of high quality mathematical text. """
|
44 |
+
_HOMEPAGE = "https://huggingface.co/datasets/hoskinson-center/proof-pile"
|
|
|
|
|
|
|
45 |
|
46 |
# TODO: Add the licence for the dataset here if you can find it
|
47 |
+
_LICENSE = "MIT"
|
48 |
|
49 |
# TODO: Add link to the official dataset URLs here
|
50 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
51 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
52 |
_URLS = {
|
53 |
+
"first_domain": "https://huggingface.co/datasets/hoskinson-center/proof-pile",
|
|
|
54 |
}
|
55 |
|
56 |
|
57 |
# TODO: Name of the dataset usually match the script name with CamelCase instead of snake_case
|
58 |
class ProofPile(datasets.GeneratorBasedBuilder):
|
59 |
+
"""A dataset of high quality mathematical text"""
|
60 |
|
61 |
+
VERSION = datasets.Version("1.0.0")
|
62 |
|
63 |
# This is an example of a dataset with multiple configurations.
|
64 |
# If you don't want/need to define several sub-sets in your dataset,
|