Downloads · 30 days
0
GOMMM/custom_summarization_dataset
custom_summarization_dataset is a machine learning model from GOMMM. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
Downloads · 30 days
0
Access
Public
Updated Sep 19, 2024
Repo size
348 KB
Likes
0
Public
Click a slice to open those files.
.arrow348 KB · 99%
From the Hugging Face model README
Custom text dataset
This dataset contains text data for training abstractive summarization models. The data is collected from CNN/Daily mail dataset
sentence, labelsThe data was collected from the CNN/DailyMail dataset.
from datasets import load_dataset
dataset = load_dataset("path")
for ex in dataset['train']:
print(ex['sentence'], ex['labels'], sep='
')
This dataset is designed for evaluating summarization models. The common evaluation metrics are ROUGE, BLEU
The dataset may contain some potentially sensitive information. Users should be aware of this when using the dataset. And the dataset is very small. So, It is hard to use this dataset for training robust models.