You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

Armenian Clean Corpus (pretraining + SFT bundle)

Combined, deduplicated, cleaned Armenian text assembled for pretraining and supervised fine-tuning of small language models. Built via the pipeline at https://github.com/EdikSimonian/armenian-gpt:

python 1_download.py        # fetch sources
python 2_prepare.py         # clean + dedup + merge
python 1_download.py --upload   # push this bundle

Contents

corpus/clean_text.txt.zst    zstd-compressed merged corpus
finetune/*.json              SFT Q&A files (ArmBench, Aya hy slice,
                             optional Qwen/Claude generated pairs)

Corpus statistics

  • Uncompressed size: 62.85 GB
  • Compressed size (zstd L19): 12.07 GB
  • Paragraphs: 20,420,721
  • Sources: 12 (see list above)

Deduplicated at the paragraph level across all sources. Quality-priority dedup order: Wikimedia β†’ ARLIS β†’ news β†’ HPLT 3.0 β†’ CulturaX β†’ FineTranslations β†’ mC4 β†’ CC-100.

Fine-tuning Q&A files

  • finetune/armbench_eval.json β€” 150 pairs
  • finetune/armbench_train.json β€” 304 pairs
  • finetune/armenian_qa_qwen.json β€” 1,104 pairs
  • finetune/armenian_qa_qwen_short.json β€” 779 pairs
  • finetune/aya_armenian.json β€” 27,069 pairs

Sources used

License and attribution

This dataset is assembled from multiple publicly available sources for text-and-data-mining research on low-resource language modeling. Wikimedia sources (Wikipedia / Wikisource / Wiktionary / Wikiquote) are CC BY-SA 4.0 β€” strict application of the ShareAlike clause would require this derivative work to also be CC BY-SA 4.0. The bundle is published under a mixed-source-attribution notice invoking the EU TDM exception (Directive 2019/790 Art. 4) and US fair use for ML research.

Users are responsible for compliance with source license terms in their own jurisdiction. If you redistribute or fine-tune models on this data, please also preserve attribution to the upstream sources listed above.

Quick start

Download the compressed corpus:

from huggingface_hub import hf_hub_download
import zstandard as zstd

path = hf_hub_download(
    repo_id="edisimon/armenian-clean-text",
    filename="corpus/clean_text.txt.zst",
    repo_type="dataset",
)

# Decompress
with open(path, "rb") as fin, open("clean_text.txt", "wb") as fout:
    zstd.ZstdDecompressor().copy_stream(fin, fout)

Or reproduce via the pipeline:

git clone https://github.com/EdikSimonian/armenian-gpt.git
cd armenian-gpt
pip install -r requirements.txt
python 1_download.py --download   # uses this HF dataset as source
Downloads last month
69