Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1711,3 +1711,34 @@ configs:
|
|
1711 |
- split: 2024_q1_01
|
1712 |
path: en/2024_q1_01-*
|
1713 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1711 |
- split: 2024_q1_01
|
1712 |
path: en/2024_q1_01-*
|
1713 |
---
|
1714 |
+
# Wikinews
|
1715 |
+
|
1716 |
+
The dataset contains news articles from Wikinews in different languages.
|
1717 |
+
Each article is associated with metadata like title, url, and date.
|
1718 |
+
The articles grouped into data splits by the article month, quarter, and year (the date is one mentioned in the article text, changes might have been after, see revision timestamp).
|
1719 |
+
The dataset config name defines the language.
|
1720 |
+
|
1721 |
+
## Usage
|
1722 |
+
|
1723 |
+
```python
|
1724 |
+
from datasets import load_dataset
|
1725 |
+
|
1726 |
+
# all English news from 2008
|
1727 |
+
ds = load_dataset("malteos/wikinews", config_name="en", split="2008")
|
1728 |
+
|
1729 |
+
# all German news from January 2017
|
1730 |
+
ds = load_dataset("malteos/wikinews", config_name="de", split="2017_q1_01")
|
1731 |
+
|
1732 |
+
```
|
1733 |
+
|
1734 |
+
## Languages
|
1735 |
+
|
1736 |
+
- en
|
1737 |
+
- es
|
1738 |
+
- fr
|
1739 |
+
- it
|
1740 |
+
- de
|
1741 |
+
|
1742 |
+
## License
|
1743 |
+
|
1744 |
+
All text created after September 25, 2005 available under the terms of the [Creative Commons Attribution 2.5 License](https://creativecommons.org/licenses/by/2.5/).
|