This Dataset is a partial dataset of original CNN/DailyMail dataset.
Choose 100 samples from the test dataset randomly.
Number of records : 100
Fields : 'article', 'highlights', 'id'
Split : 'train', 'validation', 'test'
Size : 348 KB
Use Random Sampling to get 100 samples from the CNN/DailyMail dataset.
1
2from datasets import load_dataset
3dataset = load_dataset("url")
4
5for example in dataset['train']:
6 print(f"{example['article']} -> {example['highlights']}")
7
This dataset is used for testing the model performance.
This dataset is only a subset of the original dataset.
This dataset is a public dataset.