Update README.md
Browse files
README.md
CHANGED
|
@@ -14,3 +14,12 @@ This dataset contains more than 250k articles obtained from polish news site `tv
|
|
| 14 |
Main purpouse of collecting the data was to create a transformer-based model for text summarization.
|
| 15 |
|
| 16 |
Link to original repo: https://github.com/WiktorSob/scraper-tvp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
Main purpouse of collecting the data was to create a transformer-based model for text summarization.
|
| 15 |
|
| 16 |
Link to original repo: https://github.com/WiktorSob/scraper-tvp
|
| 17 |
+
|
| 18 |
+
Download the data:
|
| 19 |
+
|
| 20 |
+
```python
|
| 21 |
+
from datasets import load_dataset
|
| 22 |
+
|
| 23 |
+
dataset = load_dataset("WiktorS/polish-news")
|
| 24 |
+
```
|
| 25 |
+
|