CoolFace
Datasetpublic

Reza2kn/RaahNaameh-1-textual-corpus

RaahNaameh-1 Textual Corpus A large-scale Persian text corpus assembled for training the RaahNaameh-1 embedding model. Sources Source Sentences Description Jomleh 1,002,221 Formal Persian web text LSCP 10,257,866 Iranian tweets — colloquial, slang, emoji Persian Wikipedia 1,107,618 Encyclopedic articles Total 12,367,705 Processing Light normalization only: Arabic→Persian character mapping, zero-width space removal Emojis… See the full description on the dataset page: https://huggingface.co/datasets/Reza2kn/RaahNaameh-1-textual-corpus.

sourceHugging Facecc-by-4.0updated 6mo agoView on Hugging Face
0likes50downloads
Dataset Card

RaahNaameh-1 Textual Corpus

A large-scale Persian text corpus assembled for training the RaahNaameh-1 embedding model.

Sources

SourceSentencesDescription
Jomleh1,002,221Formal Persian web text
LSCP10,257,866Iranian tweets — colloquial, slang, emoji
Persian Wikipedia1,107,618Encyclopedic articles
Total12,367,705

Processing

  • —Light normalization only: Arabic→Persian character mapping, zero-width space removal
  • —Emojis, Finglish, code-switching, informal spelling are all preserved
  • —MD5-based deduplication across all sources
  • —Min length: 5 chars, Max length: 2000 chars

Purpose

This corpus is the training data for RaahNaameh-1, an open Persian embedding model created by distilling Gemini Embedding 2's knowledge into a compact student model.

Usage

python
from datasets import load_dataset

ds = load_dataset("Reza2kn/RaahNaameh-1-textual-corpus", split="train", streaming=True)
for row in ds:
    print(row["text"], row["source"])