Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -411,3 +411,34 @@ configs:
|
|
| 411 |
- split: 2007_q3_09
|
| 412 |
path: en/2007_q3_09-*
|
| 413 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 411 |
- split: 2007_q3_09
|
| 412 |
path: en/2007_q3_09-*
|
| 413 |
---
|
| 414 |
+
# Wikinews
|
| 415 |
+
|
| 416 |
+
The dataset contains news articles from Wikinews in different languages.
|
| 417 |
+
Each article is associated with metadata like title, url, and date.
|
| 418 |
+
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).
|
| 419 |
+
The dataset config name defines the language.
|
| 420 |
+
|
| 421 |
+
## Usage
|
| 422 |
+
|
| 423 |
+
```python
|
| 424 |
+
from datasets import load_dataset
|
| 425 |
+
|
| 426 |
+
# all English news from 2008
|
| 427 |
+
ds = load_dataset("malteos/wikinews", config_name="en", split="2008")
|
| 428 |
+
|
| 429 |
+
# all German news from January 2017
|
| 430 |
+
ds = load_dataset("malteos/wikinews", config_name="de", split="2017_q1_01")
|
| 431 |
+
|
| 432 |
+
```
|
| 433 |
+
|
| 434 |
+
## Languages
|
| 435 |
+
|
| 436 |
+
- en
|
| 437 |
+
- es
|
| 438 |
+
- fr
|
| 439 |
+
- it
|
| 440 |
+
- de
|
| 441 |
+
|
| 442 |
+
## License
|
| 443 |
+
|
| 444 |
+
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/).
|