Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

YAML Metadata Warning:The task_categories "text-simplification" is not in the official list: text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, feature-extraction, text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, audio-text-to-text, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-ranking, text-retrieval, time-series-forecasting, text-to-video, image-text-to-text, image-text-to-image, image-text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, image-feature-extraction, video-text-to-text, keypoint-detection, visual-document-retrieval, any-to-any, video-to-video, other

WikiLarge Cleaned

Summary
This dataset is a cleaned and deduplicated subset of the classic WikiLarge-style sentence pairs (English Wikipedia → Simple English Wikipedia).
Starting from the original alignment files (wiki.full.aner.ori.train/valid/test.{src,dst}), we constructed a Hugging Face datasets corpus, applied a set of cheap filters, and removed near-duplicates.

Provenance & License: This is a derivative of Wikipedia / Simple English Wikipedia content under CC BY-SA.
The derivative is distributed under CC BY-SA 4.0 as required by the ShareAlike clause.
Please ensure proper attribution (TASL: Title, Author(s), Source, License) and preserve the same license for downstream derivatives.


Data Schema

  • Fields

    • source (str) – original (complex) sentence from English Wikipedia
    • target (str) – simplified sentence from Simple English Wikipedia
  • Splits

    • train, validation, test (derived from the original train/valid/test files)

Construction & Cleaning

Starting point
We downloaded the original WikiLarge files from the official GitHub and created a standard HF DatasetDict:

  • Files used: wiki.full.aner.ori.train.src, wiki.full.aner.ori.train.dst, and analogous valid / test.

Cheap filters (single batched pass) — thresholds used:

  • Length constraints
    • Source tokens: MIN_SRC_TOKENS = 4, MAX_SRC_TOKENS = 256
    • Target tokens: MIN_TGT_TOKENS = 2, MAX_TGT_TOKENS = 256
  • Compression ratio (simple/complex): keep if 0.40 ≤ CR ≤ 0.95
  • Near-identity cutoff (lexical Jaccard): keep if Jaccard(source, target) < 0.98

Implementation notes (as used here):

  • Tokenization for checks is whitespace split (str.split()).
  • Jaccard is computed on token sets, i.e., lexical overlap.
  • We record a per-example first-fail reason among: lengthcompressionnear_identity.

Deduplication strategy.
We deduplicate (source, target) pairs using a stable hash key:

  • Normalize each text by lowercasing and collapsing whitespace.
  • Compute md5(src_norm) + "#" + md5(tgt_norm); keep the first occurrence and drop repeats.

Cleaning Results & Statistics

Sizes

  • Train: [296402 → 123862]
  • Validation: [992 → 417]
  • Test: [359 → 121]

Removal breakdown (exclusive, first-fail)

  • Train

    • length fails: [15764] (5.32%)

    • compression fails: [156027] (57.84%)

    • near_identity fails: [633] (0.93%)

    • dedup: [116] (0.04%)

    • before → after

      • Mean CR: [0.88 → 0.70]
      • Mean source length: [25.17 → 26.49]
      • Mean target length: [18.51 → 18.29]
  • Validation

    • length fails: [57] (5.75%)
    • compression fails: [572] (57.66%)
    • near_identity fails: [16] (1.61%)
    • dedup: [0] (0.00%)
  • Test

    • length fails: [0] (0.00%)
    • compression fails: [237] (66.02%)
    • near_identity fails: [55] (15.32%)
    • dedup: [0] (0.00%)

Intended Use

  • Primary task: Text simplification (English).
  • Recommended splits: Use validation for model selection and test for final reporting.
  • Caveats: Original sentence alignments were automatically mined; occasional noise or content drift may exist even after this cleaning.

Usage

from datasets import load_dataset

ds = load_dataset("eilamc14/wikilarge-clean")
print(ds)
print(ds["train"][0])  # {"source": "...", "target": "..."}

Attribution & License

  • Provenance: Derived from English Wikipedia and Simple English Wikipedia content.
  • License: CC BY-SA 4.0 (ShareAlike applies). You must provide attribution (TASL: Title, Author(s), Source, License) and distribute derivatives under the same license.

Reproducibility

Filters and dedup are implemented as described above (length, CR, Jaccard, and hash-based pair dedup).
Implementation reference: dataset_cleaning.ipynb


Citation

Please cite both the widely used WikiLarge reference and this cleaned subset:

Original alignment (WikiLarge): Zhang, X., & Lapata, M. (2017). Sentence Simplification with Deep Reinforcement Learning. In EMNLP 2017 (pp. 584–594). Association for Computational Linguistics. doi:10.18653/v1/D17-1062

This dataset (cleaned subset):
Cohen, E., Bul, I., Inbar, D., & Loewenbach, O. (2026). Simplify-This: A Comparative Analysis of Prompt-Based and Fine-Tuned LLMs. arXiv. arxiv.org/abs/2601.05794

WikiLarge BibTeX:

@inproceedings{zhang-lapata-2017-sentence,
  title     = {Sentence Simplification with Deep Reinforcement Learning},
  author    = {Zhang, Xingxing and Lapata, Mirella},
  booktitle = {Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing},
  pages     = {584--594},
  year      = {2017},
  address   = {Copenhagen, Denmark},
  publisher = {Association for Computational Linguistics},
  doi       = {10.18653/v1/D17-1062},
  url       = {https://aclanthology.org/D17-1062/}
}

Wikilarge cleaned BibTeX:

@misc{simplifythis2025,
  author       = {Cohen, Eilam and others},
  title        = {Simplify-This: A Comparative Analysis of Prompt-Based and Fine-Tuned LLMs},
  year         = {2025},
  howpublished = {\url{https://github.com/eilamc14/Simplify-This}},
  note         = {GitHub repository},
  urldate      = {2025-09-30} 
}
Downloads last month
89

Models trained or fine-tuned on eilamc14/wikilarge-clean

Collection including eilamc14/wikilarge-clean

Paper for eilamc14/wikilarge-clean