Dataset Viewer
Auto-converted to Parquet Duplicate
page_id
int64
12
2.54M
title
stringlengths
1
261
cleaned_text
stringlengths
0
753k
linked_titles
sequencelengths
0
29.9k
12
Anarchism
Anarchism is a political philosophy and movement that seeks to abolish all institutions that perpetuate authority, coercion, or hierarchy, primarily targeting the state and capitalism. Anarchism advocates for the replacement of the state with stateless societies and voluntary free associations. A historically left-wing...
[ "grassroots", "Paul Goodman", "Environmental movement", "Francisco Ferrer", "class consciousness", "Tactic (method)", "Social hierarchy", "affinity group", "Sophocles", "Kronstadt rebellion", "insurrectionary anarchism", "Human sexuality", "enlightened self-interest", "drug", "New Left",...
39
Albedo
Albedo ( ; ) is the fraction of sunlight that is diffusely reflected by a body. It is measured on a scale from 0 (corresponding to a black body that absorbs all incident radiation) to 1 (corresponding to a body that reflects all incident radiation). Surface albedo is defined as the ratio of radiosity Je to the irradian...
[ "urban heat island", "planet", "space weathering", "Greenland", "photosynthesis", "Exitance", "Bond albedo", "remote sensing", "directional-hemispherical reflectance", "angle of incidence (optics)", "afforestation", "Terra (satellite)", "photometry (astronomy)", "season", "position of th...
290
A
A, or a, is the first letter and the first vowel letter of the Latin alphabet, used in the modern English alphabet, and others worldwide. Its name in English is a (pronounced ), plural aes. It is similar in shape to the Ancient Greek letter alpha, from which it derives. The uppercase version consists of the two slanti...
[ "Ǻ", "Ā", "universal quantification", "English articles", "Norwegian language", "Finnish language", "open-mid back unrounded vowel", "Mathematical Alphanumeric Symbols", "Unicode", "French language", "Danish language", "Ulster Irish", "halfwidth and fullwidth forms", "𐎀", "Polish langua...
303
Alabama
Alabama ( ) is a state in the Southeastern region of the United States. It borders Tennessee to the north, Georgia to the east, Florida and the Gulf of Mexico to the south, and Mississippi to the west. Alabama is the 30th largest by area, and the 24th-most populous of the 50 U.S. states. Alabama is nicknamed the Yello...
[ "Indochina refugee crisis", "at-large", "No Child Left Behind Act", "Seven Years' War", "Basilosaurus", "Jim Crow laws", "French language", "Hyundai Motor Manufacturing Alabama", "Southern Association of Colleges and Schools", "Alabama Senate", "European colonization of the Americas", "Avocent...
305
Achilles
"In Greek mythology, Achilles ( ) or Achilleus () was a hero of the Trojan War who was known as bein(...TRUNCATED)
["Staatliche Antikensammlungen","Periplus of the Euxine Sea","Pedasus","Battle of Trafalgar","Oreste(...TRUNCATED)
307
Abraham Lincoln
"Abraham Lincoln ( ; February 12, 1809 – April 15, 1865) was the 16th president of the United Stat(...TRUNCATED)
["1862 Homestead Act","William O. Stoddard","John J. Hardin","Henry Hastings Sibley","itinerant teac(...TRUNCATED)
308
Aristotle
"Aristotle (; 384–322 BC) was an Ancient Greek philosopher and polymath. His writings cover a bro(...TRUNCATED)
["Myles Burnyeat","Ant","Intellectual virtue","property","Sea bass","wikt:phantasm","Nuremberg Chron(...TRUNCATED)
309
An American in Paris
"An American in Paris is a jazz-influenced symphonic poem (or tone poem) for orchestra by American c(...TRUNCATED)
["clarinet","George Gershwin","Richard Wagner","24th Academy Awards","celesta","Historical editions (...TRUNCATED)
316
Academy Award for Best Production Design
"The Academy Award for Best Production Design recognizes achievement for art direction in film. The (...TRUNCATED)
["Men in Black (1997 film)","14th Academy Awards","42nd Academy Awards","Lillian Russell (film)","Lo(...TRUNCATED)
324
Academy Awards
"The Academy Awards, commonly known as the Oscars, are awards for artistic and technical merit in fi(...TRUNCATED)
["42nd Academy Awards","Digital watermarking","Mental Floss","Grammy Awards","legacy Oscar","48th Ac(...TRUNCATED)
End of preview. Expand in Data Studio

French Wikipedia Corpus - Snapshot of April 20, 2025

Dataset Description

This dataset contains a complete snapshot of the French-language Wikipedia encyclopedia, as it existed on April 20, 2025. It includes the latest version of each page, with its raw text content, the titles of linked pages, as well as a unique identifier.

The text of each article retains the MediaWiki formatting structure for titles (== Section Title ==), subtitles (=== Subtitle ===), and so on. This makes it particularly useful for tasks that can benefit from the document's hierarchical structure.

This corpus is ideal for training language models, information retrieval, question-answering, and any other Natural Language Processing (NLP) research requiring a large amount of structured, encyclopedic text.

Dataset Structure

Data Fields

The dataset is composed of the following columns:

  • id (string): A unique identifier for each article (e.g., the Wikipedia page ID).
  • title (string): The title of the Wikipedia article.
  • text (string): The full text content of the article. The section structure is preserved with the ==, ===, ====, etc. syntax.
  • linked_titles (list of strings): A list containing the titles of other Wikipedia articles that are linked from the text field.

Data Splits

The dataset contains only one split: train, which includes all the articles from the dump.

Usage

You can easily load and use this dataset with the Hugging Face datasets library.

from datasets import load_dataset

# Load the dataset
dataset = load_dataset("OrdalieTech/wiki_fr")

# Display information about the dataset
print(dataset)
# >>> DatasetDict({
# >>>     train: Dataset({
# >>>         features: ['id', 'title', 'text', 'linked_titles'],
# >>>         num_rows: 2700000 # Example
# >>>     })
# >>> })

# Access an example
first_article = dataset['train'][0]
print("Title:", first_article['title'])
print("\nText excerpt:", first_article['text'][:500])
print("\nLinked titles:", first_article['linked_titles'][:5])
Downloads last month
139