polish-news / README.md
WiktorS's picture
Update README.md
2e3abfe
---
license: apache-2.0
task_categories:
- text-classification
- summarization
- text-generation
language:
- pl
size_categories:
- 100K<n<1M
---
This dataset contains more than 250k articles obtained from polish news site `tvp.info.pl`.
Main purpouse of collecting the data was to create a transformer-based model for text summarization.
Columns:
* `link` - link to article
* `title` - original title of the article
* `headline` - lead/headline of the article - first paragraph of the article visible directly from the page
* `content` - full textual contents of the article
Link to original repo: https://github.com/WiktorSob/scraper-tvp
Download the data:
```python
from datasets import load_dataset
dataset = load_dataset("WiktorS/polish-news")
```