OpenLLM-France/wikimedia
Dataset Card This dataset is a curated collection of Wikimedia pages in markdown format, compiled from various Wikimedia projects across multiple languages. Covered Wikimedia Projects: wikipedia wikibooks wikinews wikiquote wikisource wikiversity wikivoyage wiktionary Supported Languages: ar (Arabic) br (Breton) ca (Catalan) co (Corsican) de (German) en (English) es (Spanish) eu (Basque) fr (French) frp (Arpitan) it (Italian) nl (Dutch) oc (Occitan) pcd (Picard) pt… See the full description on the dataset page: https://huggingface.co/datasets/OpenLLM-France/wikimedia.
Dataset Card
This dataset is a curated collection of Wikimedia pages in markdown format, compiled from various Wikimedia projects across multiple languages.
Covered Wikimedia Projects:
- wikipedia
- wikibooks
- wikinews
- wikiquote
- wikisource
- wikiversity
- wikivoyage
- wiktionary
Supported Languages:
- ar (Arabic)
- br (Breton)
- ca (Catalan)
- co (Corsican)
- de (German)
- en (English)
- es (Spanish)
- eu (Basque)
- fr (French)
- frp (Arpitan)
- it (Italian)
- nl (Dutch)
- oc (Occitan)
- pcd (Picard)
- pt (Portuguese)
Data Source
The content was extracted from the Wikimedia dumps, specifically from the dump dated March 20, 2025 (20250320).
The extraction process follows the same methodology as the one used in the OpenLLM-France/wikipedia.
Dataset Size
The tables below provide a detailed overview of the dataset size, organized by language:
The tables below provide a detailed overview of the dataset size, organized by language and Wikimedia project:
Example use (python)
Load the full dataset:
import datasets
ds = datasets.load_dataset("OpenLLM-France/wikimedia",
streaming=True,
split="train"
)Load the dataset for a given language (French in this example):
ds = datasets.load_dataset("OpenLLM-France/wikimedia", "fr",
streaming=True,
split="train"
)