Datasets:
Commit
•
c7f2fa4
1
Parent(s):
b44bea6
Convert dataset to Parquet (#3)
Browse files- Convert dataset to Parquet (2e86c733ba1549f9207b70b961e2b6a6a1f18fb2)
- Delete loading script (4169d92a4339f015c98cb5bc71d81df5b3459372)
- Add ratings data files (39f7d3f54e6083e13bdf36d318a275b66f30d7a6)
- Delete legacy dataset_infos.json (189d740542f7349d6c79a25a4251fcb07e6be141)
- README.md +33 -21
- asset.py +0 -174
- dataset_infos.json +0 -1
- ratings/full-00000-of-00001.parquet +3 -0
- simplification/test-00000-of-00001.parquet +3 -0
- simplification/validation-00000-of-00001.parquet +3 -0
README.md
CHANGED
@@ -21,24 +21,12 @@ task_ids:
|
|
21 |
- text-simplification
|
22 |
paperswithcode_id: asset
|
23 |
pretty_name: ASSET
|
|
|
|
|
|
|
24 |
tags:
|
25 |
- simplification-evaluation
|
26 |
dataset_info:
|
27 |
-
- config_name: simplification
|
28 |
-
features:
|
29 |
-
- name: original
|
30 |
-
dtype: string
|
31 |
-
- name: simplifications
|
32 |
-
sequence: string
|
33 |
-
splits:
|
34 |
-
- name: validation
|
35 |
-
num_bytes: 2303496
|
36 |
-
num_examples: 2000
|
37 |
-
- name: test
|
38 |
-
num_bytes: 411031
|
39 |
-
num_examples: 359
|
40 |
-
download_size: 3639353
|
41 |
-
dataset_size: 2714527
|
42 |
- config_name: ratings
|
43 |
features:
|
44 |
- name: original
|
@@ -60,13 +48,37 @@ dataset_info:
|
|
60 |
dtype: int32
|
61 |
splits:
|
62 |
- name: full
|
63 |
-
num_bytes:
|
64 |
num_examples: 4500
|
65 |
-
download_size:
|
66 |
-
dataset_size:
|
67 |
-
|
68 |
-
|
69 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
---
|
71 |
|
72 |
# Dataset Card for ASSET
|
|
|
21 |
- text-simplification
|
22 |
paperswithcode_id: asset
|
23 |
pretty_name: ASSET
|
24 |
+
config_names:
|
25 |
+
- ratings
|
26 |
+
- simplification
|
27 |
tags:
|
28 |
- simplification-evaluation
|
29 |
dataset_info:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
- config_name: ratings
|
31 |
features:
|
32 |
- name: original
|
|
|
48 |
dtype: int32
|
49 |
splits:
|
50 |
- name: full
|
51 |
+
num_bytes: 1036845
|
52 |
num_examples: 4500
|
53 |
+
download_size: 44642
|
54 |
+
dataset_size: 1036845
|
55 |
+
- config_name: simplification
|
56 |
+
features:
|
57 |
+
- name: original
|
58 |
+
dtype: string
|
59 |
+
- name: simplifications
|
60 |
+
sequence: string
|
61 |
+
splits:
|
62 |
+
- name: validation
|
63 |
+
num_bytes: 2303484
|
64 |
+
num_examples: 2000
|
65 |
+
- name: test
|
66 |
+
num_bytes: 411019
|
67 |
+
num_examples: 359
|
68 |
+
download_size: 1055163
|
69 |
+
dataset_size: 2714503
|
70 |
+
configs:
|
71 |
+
- config_name: ratings
|
72 |
+
data_files:
|
73 |
+
- split: full
|
74 |
+
path: ratings/full-*
|
75 |
+
- config_name: simplification
|
76 |
+
data_files:
|
77 |
+
- split: validation
|
78 |
+
path: simplification/validation-*
|
79 |
+
- split: test
|
80 |
+
path: simplification/test-*
|
81 |
+
default: true
|
82 |
---
|
83 |
|
84 |
# Dataset Card for ASSET
|
asset.py
DELETED
@@ -1,174 +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 |
-
"""ASSET: a dataset for sentence simplification evaluation"""
|
16 |
-
|
17 |
-
|
18 |
-
import csv
|
19 |
-
|
20 |
-
import datasets
|
21 |
-
|
22 |
-
|
23 |
-
_CITATION = """\
|
24 |
-
@inproceedings{alva-manchego-etal-2020-asset,
|
25 |
-
title = "{ASSET}: {A} Dataset for Tuning and Evaluation of Sentence Simplification Models with Multiple Rewriting Transformations",
|
26 |
-
author = "Alva-Manchego, Fernando and
|
27 |
-
Martin, Louis and
|
28 |
-
Bordes, Antoine and
|
29 |
-
Scarton, Carolina and
|
30 |
-
Sagot, Benoit and
|
31 |
-
Specia, Lucia",
|
32 |
-
booktitle = "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics",
|
33 |
-
month = jul,
|
34 |
-
year = "2020",
|
35 |
-
address = "Online",
|
36 |
-
publisher = "Association for Computational Linguistics",
|
37 |
-
url = "https://www.aclweb.org/anthology/2020.acl-main.424",
|
38 |
-
pages = "4668--4679",
|
39 |
-
}
|
40 |
-
"""
|
41 |
-
|
42 |
-
_DESCRIPTION = """\
|
43 |
-
ASSET is a dataset for evaluating Sentence Simplification systems with multiple rewriting transformations,
|
44 |
-
as described in "ASSET: A Dataset for Tuning and Evaluation of Sentence Simplification Models with Multiple Rewriting Transformations".
|
45 |
-
The corpus is composed of 2000 validation and 359 test original sentences that were each simplified 10 times by different annotators.
|
46 |
-
The corpus also contains human judgments of meaning preservation, fluency and simplicity for the outputs of several automatic text simplification systems.
|
47 |
-
"""
|
48 |
-
|
49 |
-
_HOMEPAGE = "https://github.com/facebookresearch/asset"
|
50 |
-
|
51 |
-
_LICENSE = "Creative Common Attribution-NonCommercial 4.0 International"
|
52 |
-
|
53 |
-
_URL_LIST = [
|
54 |
-
(
|
55 |
-
"human_ratings.csv",
|
56 |
-
"https://raw.githubusercontent.com/facebookresearch/asset/main/human_ratings/human_ratings.csv",
|
57 |
-
),
|
58 |
-
(
|
59 |
-
"asset.valid.orig",
|
60 |
-
"https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.orig",
|
61 |
-
),
|
62 |
-
(
|
63 |
-
"asset.test.orig",
|
64 |
-
"https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.orig",
|
65 |
-
),
|
66 |
-
]
|
67 |
-
_URL_LIST += [
|
68 |
-
(
|
69 |
-
f"asset.{spl}.simp.{i}",
|
70 |
-
f"https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.{spl}.simp.{i}",
|
71 |
-
)
|
72 |
-
for spl in ["valid", "test"]
|
73 |
-
for i in range(10)
|
74 |
-
]
|
75 |
-
|
76 |
-
_URLs = dict(_URL_LIST)
|
77 |
-
|
78 |
-
|
79 |
-
class Asset(datasets.GeneratorBasedBuilder):
|
80 |
-
|
81 |
-
VERSION = datasets.Version("1.0.0")
|
82 |
-
|
83 |
-
BUILDER_CONFIGS = [
|
84 |
-
datasets.BuilderConfig(
|
85 |
-
name="simplification",
|
86 |
-
version=VERSION,
|
87 |
-
description="A set of original sentences aligned with 10 possible simplifications for each.",
|
88 |
-
),
|
89 |
-
datasets.BuilderConfig(
|
90 |
-
name="ratings",
|
91 |
-
version=VERSION,
|
92 |
-
description="Human ratings of automatically produced text implification.",
|
93 |
-
),
|
94 |
-
]
|
95 |
-
|
96 |
-
DEFAULT_CONFIG_NAME = "simplification"
|
97 |
-
|
98 |
-
def _info(self):
|
99 |
-
if self.config.name == "simplification":
|
100 |
-
features = datasets.Features(
|
101 |
-
{
|
102 |
-
"original": datasets.Value("string"),
|
103 |
-
"simplifications": datasets.Sequence(datasets.Value("string")),
|
104 |
-
}
|
105 |
-
)
|
106 |
-
else:
|
107 |
-
features = datasets.Features(
|
108 |
-
{
|
109 |
-
"original": datasets.Value("string"),
|
110 |
-
"simplification": datasets.Value("string"),
|
111 |
-
"original_sentence_id": datasets.Value("int32"),
|
112 |
-
"aspect": datasets.ClassLabel(names=["meaning", "fluency", "simplicity"]),
|
113 |
-
"worker_id": datasets.Value("int32"),
|
114 |
-
"rating": datasets.Value("int32"),
|
115 |
-
}
|
116 |
-
)
|
117 |
-
return datasets.DatasetInfo(
|
118 |
-
description=_DESCRIPTION,
|
119 |
-
features=features,
|
120 |
-
supervised_keys=None,
|
121 |
-
homepage=_HOMEPAGE,
|
122 |
-
license=_LICENSE,
|
123 |
-
citation=_CITATION,
|
124 |
-
)
|
125 |
-
|
126 |
-
def _split_generators(self, dl_manager):
|
127 |
-
data_dir = dl_manager.download_and_extract(_URLs)
|
128 |
-
if self.config.name == "simplification":
|
129 |
-
return [
|
130 |
-
datasets.SplitGenerator(
|
131 |
-
name=datasets.Split.VALIDATION,
|
132 |
-
gen_kwargs={
|
133 |
-
"filepaths": data_dir,
|
134 |
-
"split": "valid",
|
135 |
-
},
|
136 |
-
),
|
137 |
-
datasets.SplitGenerator(
|
138 |
-
name=datasets.Split.TEST,
|
139 |
-
gen_kwargs={"filepaths": data_dir, "split": "test"},
|
140 |
-
),
|
141 |
-
]
|
142 |
-
else:
|
143 |
-
return [
|
144 |
-
datasets.SplitGenerator(
|
145 |
-
name="full",
|
146 |
-
gen_kwargs={
|
147 |
-
"filepaths": data_dir,
|
148 |
-
"split": "full",
|
149 |
-
},
|
150 |
-
),
|
151 |
-
]
|
152 |
-
|
153 |
-
def _generate_examples(self, filepaths, split):
|
154 |
-
"""Yields examples."""
|
155 |
-
if self.config.name == "simplification":
|
156 |
-
files = [open(filepaths[f"asset.{split}.orig"], encoding="utf-8")] + [
|
157 |
-
open(filepaths[f"asset.{split}.simp.{i}"], encoding="utf-8") for i in range(10)
|
158 |
-
]
|
159 |
-
for id_, lines in enumerate(zip(*files)):
|
160 |
-
yield id_, {
|
161 |
-
"original": lines[0].strip(),
|
162 |
-
"simplifications": [line.strip() for line in lines[1:]],
|
163 |
-
}
|
164 |
-
else:
|
165 |
-
with open(filepaths["human_ratings.csv"], encoding="utf-8") as f:
|
166 |
-
reader = csv.reader(f, delimiter=",")
|
167 |
-
for id_, row in enumerate(reader):
|
168 |
-
if id_ == 0:
|
169 |
-
keys = row[:]
|
170 |
-
else:
|
171 |
-
res = dict([(k, v) for k, v in zip(keys, row)])
|
172 |
-
for k in ["original_sentence_id", "worker_id", "rating"]:
|
173 |
-
res[k] = int(res[k])
|
174 |
-
yield (id_ - 1), res
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dataset_infos.json
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
{"simplification": {"description": "ASSET is a dataset for evaluating Sentence Simplification systems with multiple rewriting transformations,\nas described in \"ASSET: A Dataset for Tuning and Evaluation of Sentence Simplification Models with Multiple Rewriting Transformations\".\nThe corpus is composed of 2000 validation and 359 test original sentences that were each simplified 10 times by different annotators.\nThe corpus also contains human judgments of meaning preservation, fluency and simplicity for the outputs of several automatic text simplification systems.\n", "citation": "@inproceedings{alva-manchego-etal-2020-asset,\n title = \"{ASSET}: {A} Dataset for Tuning and Evaluation of Sentence Simplification Models with Multiple Rewriting Transformations\",\n author = \"Alva-Manchego, Fernando and\n Martin, Louis and\n Bordes, Antoine and\n Scarton, Carolina and\n Sagot, Benoit and\n Specia, Lucia\",\n booktitle = \"Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics\",\n month = jul,\n year = \"2020\",\n address = \"Online\",\n publisher = \"Association for Computational Linguistics\",\n url = \"https://www.aclweb.org/anthology/2020.acl-main.424\",\n pages = \"4668--4679\",\n}\n", "homepage": "https://github.com/facebookresearch/asset", "license": "Creative Common Attribution-NonCommercial 4.0 International", "features": {"original": {"dtype": "string", "id": null, "_type": "Value"}, "simplifications": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "asset", "config_name": "simplification", "version": {"version_str": "1.0.0", "description": null, "major": 1, "minor": 0, "patch": 0}, "splits": {"validation": {"name": "validation", "num_bytes": 2303496, "num_examples": 2000, "dataset_name": "asset"}, "test": {"name": "test", "num_bytes": 411031, "num_examples": 359, "dataset_name": "asset"}}, "download_checksums": {"https://raw.githubusercontent.com/facebookresearch/asset/main/human_ratings/human_ratings.csv": {"num_bytes": 1012140, "checksum": "09ea6ee887af56be380334677ca2f3ba561f67abbb64ef1e6382fadf440d5593"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.orig": {"num_bytes": 234319, "checksum": "83dca90b5c53365a9c4a70222aed129c6df3c3f6b5da82ee94312e179b93fff1"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.orig": {"num_bytes": 43745, "checksum": "673ceb2672a37168a52040d75e16f9ffd1e3777b9f68e19207f2adf6542723f1"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.0": {"num_bytes": 193975, "checksum": "27b0c4a40c91b875c82a8ed76ff7cf0476b03a3a6998a2e3ef6e18000efda624"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.1": {"num_bytes": 180040, "checksum": "5043e9db5934c3d538b91f56d23466177813896da10f153d2b16c0c415ac5e84"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.2": {"num_bytes": 187445, "checksum": "578dd487cf03f6f66bb4acd2c44b464c3ac9fb42dc64b8e6afd391778ebc7ea7"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.3": {"num_bytes": 207902, "checksum": "4ab95ba6f7a60adde2f57201c0b749384ce64c97f8378fb0ab185367709a8386"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.4": {"num_bytes": 211459, "checksum": "f6f1d4bf9f87b532b37d7f5700ec384f817dba10247c91df629e1f6eee6c3aa9"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.5": {"num_bytes": 194418, "checksum": "182114cfbb2960358b0e2d71737ead9a2abb0c27d3f65281335f079ae4447e3b"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.6": {"num_bytes": 188962, "checksum": "aba27b505dad048982e902a04c4ffc5ab9e926b38d2383920aea798fd42de376"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.7": {"num_bytes": 196950, "checksum": "73d7983107eca6b98a9aec62ea75ea8d5adf313755b7e105608f212dead124cd"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.8": {"num_bytes": 213056, "checksum": "58f8e1109d87a4e3c5403705b8782750bb849cb8389a698156e00ca6512dd5c4"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.9": {"num_bytes": 220962, "checksum": "35a861e174ce5458fdcd1866e49aa84297fcb6b51fd98d6633b71932a646832e"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.0": {"num_bytes": 35457, "checksum": "66f36029d0c732eb92886021faefe531c6cfd0a32bdbe7ae4aa97fd45bd1b046"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.1": {"num_bytes": 34096, "checksum": "d323ceb364abbe84c79b14b028aa1ff563cd94955fbab19049612548dbb0f83f"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.2": {"num_bytes": 34348, "checksum": "786b55f8425ce4a993e98be5e2bea9ef87bf536b96dc13f7a57c4733fdb63e06"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.3": {"num_bytes": 37292, "checksum": "e211c9e2ede1dfe315097132dbe4feda76b309bdc636a5394cb5d2664ba5bf52"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.4": {"num_bytes": 35887, "checksum": "37be9cf0592c0f68d87848dc9c442fe62f344518c1993896c00788bf943b755d"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.5": {"num_bytes": 35351, "checksum": "8485210573a3bd76116de8e978b227677c6c207111a4938729397c4e603dfa46"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.6": {"num_bytes": 35846, "checksum": "f0cb3ab823d23203ea044f81bd7e67cc823db0632095e43b78a54a9891a0b0a8"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.7": {"num_bytes": 34560, "checksum": "35cbb8b9964252a1470607634f19ad946c6bc2951b3e500eedd826baf12bd3c8"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.8": {"num_bytes": 35830, "checksum": "047b6419590b88f93b435d3177bba1883dc9c0dc178676e48470b408236446f4"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.9": {"num_bytes": 35313, "checksum": "3f5745e4f2743563b88ea4284ec35fa4ddb68d62de80b63ffb87751b998fe6b8"}}, "download_size": 3639353, "post_processing_size": null, "dataset_size": 2714527, "size_in_bytes": 6353880}, "ratings": {"description": "ASSET is a dataset for evaluating Sentence Simplification systems with multiple rewriting transformations,\nas described in \"ASSET: A Dataset for Tuning and Evaluation of Sentence Simplification Models with Multiple Rewriting Transformations\".\nThe corpus is composed of 2000 validation and 359 test original sentences that were each simplified 10 times by different annotators.\nThe corpus also contains human judgments of meaning preservation, fluency and simplicity for the outputs of several automatic text simplification systems.\n", "citation": "@inproceedings{alva-manchego-etal-2020-asset,\n title = \"{ASSET}: {A} Dataset for Tuning and Evaluation of Sentence Simplification Models with Multiple Rewriting Transformations\",\n author = \"Alva-Manchego, Fernando and\n Martin, Louis and\n Bordes, Antoine and\n Scarton, Carolina and\n Sagot, Benoit and\n Specia, Lucia\",\n booktitle = \"Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics\",\n month = jul,\n year = \"2020\",\n address = \"Online\",\n publisher = \"Association for Computational Linguistics\",\n url = \"https://www.aclweb.org/anthology/2020.acl-main.424\",\n pages = \"4668--4679\",\n}\n", "homepage": "https://github.com/facebookresearch/asset", "license": "Creative Common Attribution-NonCommercial 4.0 International", "features": {"original": {"dtype": "string", "id": null, "_type": "Value"}, "simplification": {"dtype": "string", "id": null, "_type": "Value"}, "original_sentence_id": {"dtype": "int32", "id": null, "_type": "Value"}, "aspect": {"num_classes": 3, "names": ["meaning", "fluency", "simplicity"], "names_file": null, "id": null, "_type": "ClassLabel"}, "worker_id": {"dtype": "int32", "id": null, "_type": "Value"}, "rating": {"dtype": "int32", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "asset", "config_name": "ratings", "version": {"version_str": "1.0.0", "description": null, "major": 1, "minor": 0, "patch": 0}, "splits": {"full": {"name": "full", "num_bytes": 1036853, "num_examples": 4500, "dataset_name": "asset"}}, "download_checksums": {"https://raw.githubusercontent.com/facebookresearch/asset/main/human_ratings/human_ratings.csv": {"num_bytes": 1012140, "checksum": "09ea6ee887af56be380334677ca2f3ba561f67abbb64ef1e6382fadf440d5593"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.orig": {"num_bytes": 234319, "checksum": "83dca90b5c53365a9c4a70222aed129c6df3c3f6b5da82ee94312e179b93fff1"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.orig": {"num_bytes": 43745, "checksum": "673ceb2672a37168a52040d75e16f9ffd1e3777b9f68e19207f2adf6542723f1"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.0": {"num_bytes": 193975, "checksum": "27b0c4a40c91b875c82a8ed76ff7cf0476b03a3a6998a2e3ef6e18000efda624"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.1": {"num_bytes": 180040, "checksum": "5043e9db5934c3d538b91f56d23466177813896da10f153d2b16c0c415ac5e84"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.2": {"num_bytes": 187445, "checksum": "578dd487cf03f6f66bb4acd2c44b464c3ac9fb42dc64b8e6afd391778ebc7ea7"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.3": {"num_bytes": 207902, "checksum": "4ab95ba6f7a60adde2f57201c0b749384ce64c97f8378fb0ab185367709a8386"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.4": {"num_bytes": 211459, "checksum": "f6f1d4bf9f87b532b37d7f5700ec384f817dba10247c91df629e1f6eee6c3aa9"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.5": {"num_bytes": 194418, "checksum": "182114cfbb2960358b0e2d71737ead9a2abb0c27d3f65281335f079ae4447e3b"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.6": {"num_bytes": 188962, "checksum": "aba27b505dad048982e902a04c4ffc5ab9e926b38d2383920aea798fd42de376"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.7": {"num_bytes": 196950, "checksum": "73d7983107eca6b98a9aec62ea75ea8d5adf313755b7e105608f212dead124cd"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.8": {"num_bytes": 213056, "checksum": "58f8e1109d87a4e3c5403705b8782750bb849cb8389a698156e00ca6512dd5c4"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.valid.simp.9": {"num_bytes": 220962, "checksum": "35a861e174ce5458fdcd1866e49aa84297fcb6b51fd98d6633b71932a646832e"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.0": {"num_bytes": 35457, "checksum": "66f36029d0c732eb92886021faefe531c6cfd0a32bdbe7ae4aa97fd45bd1b046"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.1": {"num_bytes": 34096, "checksum": "d323ceb364abbe84c79b14b028aa1ff563cd94955fbab19049612548dbb0f83f"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.2": {"num_bytes": 34348, "checksum": "786b55f8425ce4a993e98be5e2bea9ef87bf536b96dc13f7a57c4733fdb63e06"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.3": {"num_bytes": 37292, "checksum": "e211c9e2ede1dfe315097132dbe4feda76b309bdc636a5394cb5d2664ba5bf52"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.4": {"num_bytes": 35887, "checksum": "37be9cf0592c0f68d87848dc9c442fe62f344518c1993896c00788bf943b755d"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.5": {"num_bytes": 35351, "checksum": "8485210573a3bd76116de8e978b227677c6c207111a4938729397c4e603dfa46"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.6": {"num_bytes": 35846, "checksum": "f0cb3ab823d23203ea044f81bd7e67cc823db0632095e43b78a54a9891a0b0a8"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.7": {"num_bytes": 34560, "checksum": "35cbb8b9964252a1470607634f19ad946c6bc2951b3e500eedd826baf12bd3c8"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.8": {"num_bytes": 35830, "checksum": "047b6419590b88f93b435d3177bba1883dc9c0dc178676e48470b408236446f4"}, "https://raw.githubusercontent.com/facebookresearch/asset/main/dataset/asset.test.simp.9": {"num_bytes": 35313, "checksum": "3f5745e4f2743563b88ea4284ec35fa4ddb68d62de80b63ffb87751b998fe6b8"}}, "download_size": 3639353, "post_processing_size": null, "dataset_size": 1036853, "size_in_bytes": 4676206}}
|
|
|
|
ratings/full-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dea4fb045ad9c96d758c9d10c8f1b746f6d9ea4fc0de9f943e56105b3e38dd90
|
3 |
+
size 44642
|
simplification/test-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:902a88c34f2cbd185cf06419cdd3caff4979d28ad5977fe18a684992f5181852
|
3 |
+
size 170128
|
simplification/validation-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c1a7c5589867ccdb9a3b2af55c9a4c1d732f795a32496db3afc2a1f2eec0ab0b
|
3 |
+
size 885035
|