Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
sentiment-classification
Languages:
English
Size:
10K - 100K
License:
File size: 5,025 Bytes
8ca2693 4463af2 8ca2693 4463af2 8ca2693 483aaf9 26f40d3 8ca2693 26f40d3 8ca2693 26f40d3 8ca2693 26f40d3 8ca2693 26f40d3 8ca2693 26f40d3 8ca2693 26f40d3 8ca2693 26f40d3 8ca2693 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# coding=utf-8
# Copyright 2020 The TensorFlow Datasets Authors and the HuggingFace Datasets Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Lint as: python3
"""Rotten tomatoes movie reviews dataset."""
import datasets
from datasets.tasks import TextClassification
_DESCRIPTION = """\
Movie Review Dataset.
This is a dataset of containing 5,331 positive and 5,331 negative processed
sentences from Rotten Tomatoes movie reviews. This data was first used in Bo
Pang and Lillian Lee, ``Seeing stars: Exploiting class relationships for
sentiment categorization with respect to rating scales.'', Proceedings of the
ACL, 2005.
"""
_CITATION = """\
@InProceedings{Pang+Lee:05a,
author = {Bo Pang and Lillian Lee},
title = {Seeing stars: Exploiting class relationships for sentiment
categorization with respect to rating scales},
booktitle = {Proceedings of the ACL},
year = 2005
}
"""
_DOWNLOAD_URL = "https://storage.googleapis.com/seldon-datasets/sentence_polarity_v1/rt-polaritydata.tar.gz"
class RottenTomatoesMovieReview(datasets.GeneratorBasedBuilder):
"""Cornell Rotten Tomatoes movie reviews dataset."""
VERSION = datasets.Version("1.0.0")
def _info(self):
return datasets.DatasetInfo(
description=_DESCRIPTION,
features=datasets.Features(
{"text": datasets.Value("string"), "label": datasets.features.ClassLabel(names=["neg", "pos"])}
),
supervised_keys=[""],
homepage="http://www.cs.cornell.edu/people/pabo/movie-review-data/",
citation=_CITATION,
task_templates=[TextClassification(text_column="text", label_column="label")],
)
def _split_generators(self, dl_manager):
"""Downloads Rotten Tomatoes sentences."""
archive = dl_manager.download(_DOWNLOAD_URL)
return [
datasets.SplitGenerator(
name=datasets.Split.TRAIN,
gen_kwargs={"split_key": "train", "files": dl_manager.iter_archive(archive)},
),
datasets.SplitGenerator(
name=datasets.Split.VALIDATION,
gen_kwargs={"split_key": "validation", "files": dl_manager.iter_archive(archive)},
),
datasets.SplitGenerator(
name=datasets.Split.TEST,
gen_kwargs={"split_key": "test", "files": dl_manager.iter_archive(archive)},
),
]
def _get_examples_from_split(self, split_key, files):
"""Reads Rotten Tomatoes sentences and splits into 80% train,
10% validation, and 10% test, as is the practice set out in Jinfeng
Li, ``TEXTBUGGER: Generating Adversarial Text Against Real-world
Applications.''
"""
data_dir = "rt-polaritydata/"
pos_samples, neg_samples = None, None
for path, f in files:
if path == data_dir + "rt-polarity.pos":
pos_samples = [line.decode("latin-1").strip() for line in f]
elif path == data_dir + "rt-polarity.neg":
neg_samples = [line.decode("latin-1").strip() for line in f]
if pos_samples is not None and neg_samples is not None:
break
# 80/10/10 split
i1 = int(len(pos_samples) * 0.8 + 0.5)
i2 = int(len(pos_samples) * 0.9 + 0.5)
train_samples = pos_samples[:i1] + neg_samples[:i1]
train_labels = (["pos"] * i1) + (["neg"] * i1)
validation_samples = pos_samples[i1:i2] + neg_samples[i1:i2]
validation_labels = (["pos"] * (i2 - i1)) + (["neg"] * (i2 - i1))
test_samples = pos_samples[i2:] + neg_samples[i2:]
test_labels = (["pos"] * (len(pos_samples) - i2)) + (["neg"] * (len(pos_samples) - i2))
if split_key == "train":
return (train_samples, train_labels)
if split_key == "validation":
return (validation_samples, validation_labels)
if split_key == "test":
return (test_samples, test_labels)
else:
raise ValueError(f"Invalid split key {split_key}")
def _generate_examples(self, split_key, files):
"""Yields examples for a given split of MR."""
split_text, split_labels = self._get_examples_from_split(split_key, files)
for text, label in zip(split_text, split_labels):
data_key = split_key + "_" + text
feature_dict = {"text": text, "label": label}
yield data_key, feature_dict
|