beyazperde-top-300-movie-reviews / beyazperde-top-300-movie-reviews.py
BayanDuygu's picture
update to builder
c92fb53
import json
from itertools import chain
import datasets
logger = datasets.logging.get_logger(__name__)
_DESCRIPTION = """\
Movies sentiment analysis dataset for Turkish. Includes reviews for Top 300 movies of all time,\
crawled from popular Turkish movies website Beyazperde.com. All reviews are in Turkish.\
[BeyazPerde Top 300 Movie Reviews Dataset](https://github.com/turkish-nlp-suite/BeyazPerde-Movie-Reviews/)
"""
_NAME = "beyazperde-top-300-movie-reviews"
_VERSION = "1.0.0"
_CITATION = """\
@inproceedings{altinok-2023-diverse,
title = "A Diverse Set of Freely Available Linguistic Resources for {T}urkish",
author = "Altinok, Duygu",
booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
month = jul,
year = "2023",
address = "Toronto, Canada",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2023.acl-long.768",
pages = "13739--13750",
abstract = "This study presents a diverse set of freely available linguistic resources for Turkish natural language processing, including corpora, pretrained models and education material. Although Turkish is spoken by a sizeable population of over 80 million people, Turkish linguistic resources for natural language processing remain scarce. In this study, we provide corpora to allow practitioners to build their own applications and pretrained models that would assist industry researchers in creating quick prototypes. The provided corpora include named entity recognition datasets of diverse genres, including Wikipedia articles and supplement products customer reviews. In addition, crawling e-commerce and movie reviews websites, we compiled several sentiment analysis datasets of different genres. Our linguistic resources for Turkish also include pretrained spaCy language models. To the best of our knowledge, our models are the first spaCy models trained for the Turkish language. Finally, we provide various types of education material, such as video tutorials and code examples, that can support the interested audience on practicing Turkish NLP. The advantages of our linguistic resources are three-fold: they are freely available, they are first of their kind, and they are easy to use in a broad range of implementations. Along with a thorough description of the resource creation process, we also explain the position of our resources in the Turkish NLP world.",
}
"""
_HOME_PAGE = "https://github.com/turkish-nlp-suite/BeyazPerde-Movie-Reviews/"
_URL = f'https://huggingface.co/datasets/turkish-nlp-suite/{_NAME}/raw/main/dataset'
_URLS = {
str(datasets.Split.TRAIN): ['https://huggingface.co/datasets/turkish-nlp-suite/beyazperde-top-300-movie-reviews/resolve/main/dataset/train.json'],
str(datasets.Split.TEST): [f'{_URL}/test.json'],
str(datasets.Split.VALIDATION): [f'{_URL}/valid.json'],
}
class BeyazperdeTop300MovieReviewsConfig(datasets.BuilderConfig):
"""BuilderConfig"""
def __init__(self, **kwargs):
"""BuilderConfig.
Args:
**kwargs: keyword arguments forwarded to super.
"""
super(BeyazperdeTop300MovieReviewsConfig, self).__init__(**kwargs)
class BeyazperdeTop300MovieReviews(datasets.GeneratorBasedBuilder):
"""Dataset."""
BUILDER_CONFIGS = [
BeyazperdeTop300MovieReviewsConfig(name=_NAME, version=datasets.Version(_VERSION), description=_DESCRIPTION),
]
def _split_generators(self, dl_manager):
downloaded_file = dl_manager.download_and_extract(_URLS)
return [datasets.SplitGenerator(name=i, gen_kwargs={"filepaths": downloaded_file[str(i)]})
for i in [datasets.Split.TRAIN, datasets.Split.TEST, datasets.Split.VALIDATION]]
def _generate_examples(self, filepaths):
_key = 0
for filepath in filepaths:
with open(filepath, "r", encoding="utf-8") as infile:
for line in infile:
data = json.loads(line)
yield _key, data
_key += 1
def _info(self):
return datasets.DatasetInfo(
description=_DESCRIPTION,
features=datasets.Features(
{
"movie": datasets.Value("string"),
"text": datasets.Value("string"),
"star": datasets.Value("float"),
}
),
supervised_keys=None,
homepage=_HOME_PAGE,
citation=_CITATION,
)