The dataset is currently empty. Upload or create new data files. Then, you will be able to explore them in the Dataset Viewer.

Typing SVG

PyPI PyPI Downloads GitHub LinkedIn Email

Profile Views


🧠 About Me

aakash = {
    "name"       : "Aakash Meghwar",
    "location"   : "Nizhny Novgorod, Russia πŸ‡·πŸ‡Ί  ←→  Pakistan πŸ‡΅πŸ‡°",
    "education"  : "MSc @ HSE β€” Higher School of Economics (2024–)",
    "mission"    : "Bridge linguistics and AI for low-resource languages",
    "research"   : [
        "SindhiLM β€” Sindhi Language Model (Qwen2.5 fine-tune)",
        "SindhiLM-Tokenizer β€” Morpheme-aware BPE for Sindhi",
        "Sindhi Corpus 505M β€” largest open Sindhi pretraining corpus",
        "sindhinltk β€” first open-source Sindhi NLP Python library",
        "Sentiment Analysis Β· Computational Stylistics Β· CL",
    ],
    "languages"  : {
        "Sindhi" : "Native πŸŒ™",
        "Urdu"   : "Native ✨",
        "English": "C2 πŸ”₯",
        "Russian": "A2 πŸ“–",
    },
    "looking_for": "PhD position in NLP / Computational Linguistics πŸŽ“",
    "fun_fact"   : "Building NLP tools for 80M Sindhi speakers from scratch",
}

πŸš€ Flagship Projects

πŸ€– SindhiLM

Sindhi Language Model β€” fine-tuning Qwen2.5-0.5B on 505M token Sindhi corpus. First transformer model dedicated to Sindhi.

Status Base Tokens

πŸ”€ SindhiLM-Tokenizer

Morpheme-boundary-aware BPE tokenizer merged into Qwen2.5. v1 live Β· v2 with SindhiNLTK pre-segmentation coming.

v1 Live v2 Tokens

πŸ“¦ sindhinltk

First open-source Python NLP toolkit for Sindhi. Zero dependencies. Pure Python. Works immediately.

PyPI Downloads GitHub

πŸ“Š Sindhi Corpus 505M

Largest open-source deduplicated Sindhi pretraining corpus. 742K docs Β· ~505M tokens Β· 11 source datasets.

Dataset Docs Tokens


πŸ“¦ sindhinltk β€” Quick Start

pip install sindhinltk
from sindhinltk.tokenizer import SindhiTokenizer
from sindhinltk.sentiment import SindhiSentiment
from sindhinltk.stopwords import SindhiStopwords
from sindhinltk.stemmer   import SindhiStemmer

text = "Ψ³Ω†ΪŒΩŠ Ω»ΩˆΩ„ΩŠ ΨͺΩ…Ψ§Ω… سٺي Ϋ½ Ω‚Ψ―ΩŠΩ… Ψ’Ω‡ΩŠ"

tokens = SindhiTokenizer().tokenize(text)
# β†’ ['Ψ³Ω†ΪŒΩŠ', 'Ω»ΩˆΩ„ΩŠ', 'ΨͺΩ…Ψ§Ω…', 'سٺي', 'Ϋ½', 'Ω‚Ψ―ΩŠΩ…', 'Ψ’Ω‡ΩŠ']

label  = SindhiSentiment().analyze(text)
# β†’ 'Ω…Ψ«Ψ¨Ψͺ'  βœ… positive

clean  = SindhiStopwords().remove_stopwords(tokens)
# β†’ ['Ψ³Ω†ΪŒΩŠ', 'Ω»ΩˆΩ„ΩŠ', 'سٺي', 'Ω‚Ψ―ΩŠΩ…']

stems  = SindhiStemmer().stem_tokens(clean)
# β†’ ['Ψ³Ω†ΪŒΩŠ', 'Ω»ΩˆΩ„ΩŠ', 'سٺي', 'Ω‚Ψ―ΩŠΩ…']

πŸ—‚οΈ All Repositories

πŸ€– Models

Model Description Stats
SindhiLM-Qwen-0.5B Sindhi LM base Β· Text Generation Downloads
SindhiLM-Qwen-0.5B-SFT SFT fine-tune πŸ”œ
SindhiLM-Qwen-0.5B-V2 V2 improved Downloads
urdu-poetry-transformer Urdu poetry generation βœ…
aurat-march-sentiment-minilm Sentiment Β· MiniLM Downloads

πŸ”€ Tokenizers

Tokenizer Description Status
SindhiLM-Tokenizer-v1 BPE Β· +7,978 Sindhi tokens Β· merged into Qwen2.5 βœ… Live
SindhiLM-Tokenizer-v2 Morpheme-aware Β· +4,571 cleaner tokens Β· SindhiNLTK pre-seg πŸ”œ Soon

πŸ“Š Datasets

Dataset Description Size
sindhi-corpus-505m Largest open Sindhi pretraining corpus 742K docs Β· 505M tokens
Sindhi-Intelligence-Core-SFT SFT instruction dataset 361K rows
Sindhi-Intelligence-Core-SFT-V2 SFT V2 improved 46.1K rows
Sindhi-Factual-QA Factual QA pairs 99 rows
sindhi-tokenized-505m Pre-tokenized corpus 742K rows
aurat-march-processed-news News corpus for discourse analysis 5K rows

πŸ“š Publications

πŸ“„ [Springer, 2026] Compact Transformer Models for Classical Urdu Poetry: A Computational Stylistics Approach Language Resources and Evaluation β€” Transformers Urdu NLP Computational Stylistics

πŸ“„ [SSRN, 2025] The Comparative Analysis of How the Aurat March Movement is Represented in British and Pakistani Pro-Government Press Read on SSRN β†’ β€” Critical Discourse Analysis Corpus Linguistics

🎀 [April 2025] Sentiment Analysis of International Students' Online Reviews 78th Herzen Readings, St. Petersburg, Russia β€” Sentiment Analysis NLP


πŸ› οΈ Tech Stack

Python PyTorch TensorFlow HuggingFace LangChain scikit-learn Pandas Jupyter Azure IBM Watson Git


πŸ”­ Currently Working On

β–Έ πŸ‹οΈ  Fine-tuning SindhiLM β€” Qwen2.5-0.5B on Sindhi Corpus 505M
β–Έ πŸ”€  SindhiLM-Tokenizer-v2 β€” morpheme-aware BPE + SindhiNLTK pre-segmentation
β–Έ πŸ“¦  sindhinltk v1.4 β€” NER + POS tagger modules
β–Έ πŸŽ“  Seeking PhD position in NLP / Computational Linguistics
β–Έ πŸ“  Writing research on low-resource Sindhi language modeling

πŸ’‘ Research Interests

Low-Resource NLP Β· Language Modeling Β· Morphological Analysis Β· BPE Tokenization Β· Arabic-Script NLP Β· Computational Stylistics Β· Multilingual Transformers Β· Sindhi & Urdu NLP Β· Fine-tuning LLMs Β· Corpus Linguistics Β· Sentiment Analysis


🀝 Open For

  • πŸŽ“ PhD collaborations in NLP / Computational Linguistics
  • πŸ”¬ Research partnerships on low-resource South Asian languages
  • πŸ› οΈ Contributions to sindhinltk and SindhiLM
  • πŸ’¬ Discussions on Sindhi Β· Urdu Β· Arabic-script NLP

πŸ“§ aakashmeghwar01@gmail.com Β· 🌐 texttechsolutions.com


"There are 7,000 languages in the world. Most have zero NLP tooling. Let's fix that."

β€” Aakash Meghwar, building for 80 million Sindhi speakers

Downloads last month
18