JulianKrgd/JULIAN-100M
Text Generation • Updated • 10 • 2
title stringclasses 1
value | text stringlengths 155 353k | url stringclasses 1
value | language stringclasses 1
value |
|---|---|---|---|
Anarchism is a political philosophy and movement that is skeptical of all justifications for authority and seeks to abolish the institutions it claims maintain unnecessary coercion and hierarchy, typically including nation-states, and capitalism. Anarchism advocates for the replacement of the state with stateless socie... | en | ||
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... | en | ||
A, or a, is the first letter and the first vowel of the Latin alphabet, used in the modern English alphabet, the alphabets of other western European languages 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 up... | en | ||
Alabama () is a state in the Southeastern region of the United States, bordered by 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 U.S. states.
Alabama is nicknamed the Yellowham... | en | ||
"In Greek mythology, Achilles ( ) or Achilleus () was a hero of the Trojan War who was known as bein(...TRUNCATED) | en | ||
"Abraham Lincoln ( ; February 12, 1809 – April 15, 1865) was an American lawyer, politician, and s(...TRUNCATED) | en | ||
"Aristotle (; Aristotélēs, ; 384–322 BC) was an Ancient Greek philosopher and polymath. His writ(...TRUNCATED) | en | ||
"An American in Paris is a jazz-influenced symphonic poem (or tone poem) for orchestra by American c(...TRUNCATED) | en | ||
"The Academy Award for Best Production Design recognizes achievement for art direction in film. The (...TRUNCATED) | en | ||
"The Academy Awards, mainly known as the Oscars, are awards for artistic and technical merit for the(...TRUNCATED) | en |
This dataset contains cleaned English Wikipedia articles used to train the JULIAN-100M language model.
title (string): Article titletext (string): Full article text (cleaned and formatted)url (string): Original Wikipedia URLlanguage (string): Language code ("en"){
"title": "Artificial Intelligence",
"text": "Artificial intelligence (AI) is intelligence demonstrated by machines...",
"url": "https://en.wikipedia.org/wiki/Artificial_Intelligence",
"language": "en"
}
Downloaded from Wikimedia dumps (English Wikipedia).
| Metric | Value |
|---|---|
| Total Articles | ~6.5 million |
| Total Tokens | ~3.5 billion |
| Average Article Length | ~540 tokens |
| Total Characters | ~21 billion |
from datasets import load_dataset
# Load full dataset
dataset = load_dataset("juliankerignard/wikipedia-en-julian", split="train")
# Stream for large datasets
dataset = load_dataset("juliankerignard/wikipedia-en-julian", split="train", streaming=True)
# Example: Get first article
print(dataset[0]['title'])
print(dataset[0]['text'][:200])
from datasets import load_dataset
import sentencepiece as spm
# Load dataset
dataset = load_dataset("juliankerignard/wikipedia-en-julian", split="train", streaming=True)
# Load tokenizer
tokenizer = spm.SentencePieceProcessor()
tokenizer.Load("julian_24k.model")
# Tokenize and prepare for training
def tokenize_function(examples):
return {"input_ids": tokenizer.EncodeAsIds(examples["text"])}
tokenized_dataset = dataset.map(tokenize_function, batched=True)
This dataset is derived from Wikipedia content, which is licensed under:
See Wikipedia's copyright policy for details.
If you use this dataset, please cite:
@misc{julian_wikipedia_en_2025,
title={Wikipedia English - JULIAN Training Dataset},
author={Julian Kerignard},
year={2025},
howpublished={\\url{https://huggingface.co/datasets/juliankerignard/wikipedia-en-julian}},
note={Derived from English Wikipedia dumps}
}
Also cite the original Wikipedia content:
@misc{wikipedia_en,
author = "{Wikipedia contributors}",
title = "English Wikipedia",
year = "2025",
howpublished = {\\url{https://en.wikipedia.org/}},
note = "[Online; accessed DATE]"
}
Note: This is a research dataset created for training the JULIAN-100M language model. For the latest Wikipedia content, please visit wikipedia.org.