โš ๏ธ Note: This 0.6B version is undertrained and does not reliably follow Hindi instructions. For a working Hindi model, please use Qwen3-4B-Hindi-Instruct-v2 (GGUF here).


Qwen3-0.6B Hindi Instruct v1

A Qwen3-0.6B model fine-tuned on Hindi instruction data โ€” built for developers and researchers who need a tiny, fast, Hindi-capable language model that runs anywhere.

This is the full precision safetensors version. For local CPU inference, use the GGUF version instead.


Quick Start

Load and run with transformers:

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "pankajpandey-dev/Qwen3-0.6B-Hindi-Instruct-v1"

tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, dtype="auto", device_map="auto")

messages = [{"role": "user", "content": "เคญเคพเคฐเคค เค•เฅ€ เคฐเคพเคœเคงเคพเคจเฅ€ เค•เฅเคฏเคพ เคนเฅˆ?"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=200, temperature=0.7)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

Model Details

Property Value
Base Model Qwen/Qwen3-0.6B
Parameters 600M
Architecture Qwen2
Fine-tune Method QLoRA with LoRA r=16 alpha=16
Training Framework Unsloth + TRL
Training Steps 60 steps
Training Data 2000 English to Hindi instruction pairs
Max Context 2048 tokens
Languages Hindi and English
License Apache 2.0 โ€” commercial use allowed

Training Details

This model was fine-tuned using QLoRA โ€” a memory-efficient technique that trains small adapter weights on top of a frozen base model. This makes it possible to fine-tune on free Google Colab without any paid GPU.

Training setup:

Base model:   Qwen/Qwen3-0.6B
Method:       QLoRA via Unsloth
LoRA rank:    16
LoRA alpha:   16
Batch size:   2
Grad accum:   4
LR:           2e-4
Steps:        60
Hardware:     Google Colab free tier (T4 GPU)

Example Outputs

Hindi Question Answering:

User: เคญเคพเคฐเคค เค•เฅ€ เคฐเคพเคœเคงเคพเคจเฅ€ เค•เฅเคฏเคพ เคนเฅˆ?
Model: เคญเคพเคฐเคค เค•เฅ€ เคฐเคพเคœเคงเคพเคจเฅ€ เคจเคˆ เคฆเคฟเคฒเฅเคฒเฅ€ เคนเฅˆเฅค

Hindi Instructions:

User: เคฎเฅเคเฅ‡ เคšเคพเคฏ เคฌเคจเคพเคจเฅ‡ เค•เคพ เคคเคฐเฅ€เค•เคพ เคฌเคคเคพเค“เฅค
Model: เคšเคพเคฏ เคฌเคจเคพเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เคชเคนเคฒเฅ‡ เคชเคพเคจเฅ€ เค—เคฐเคฎ เค•เคฐเฅ‡เค‚...

Mixed Language Coding:

User: Python เคฎเฅ‡เค‚ for loop เค•เฅˆเคธเฅ‡ เคฒเคฟเค–เคคเฅ‡ เคนเฅˆเค‚?
Model: Python เคฎเฅ‡เค‚ for loop เค‡เคธ เคคเคฐเคน เคฒเคฟเค–เคคเฅ‡ เคนเฅˆเค‚...

Intended Use

  • Hindi language applications and chatbots
  • Low-resource Hindi NLP research
  • Edge deployment where model size matters
  • Fine-tuning base for domain-specific Hindi tasks
  • Educational projects around Hindi AI

Limitations

  • Trained on only 2000 examples โ€” v2 will have significantly more data
  • May mix Hindi and English in some responses
  • Not trained for harmful content filtering โ€” use responsibly
  • Small model size means limited reasoning on complex tasks

Why This Model?

  • Tiny โ€” 600M parameters, runs on any machine
  • Hindi-first โ€” specifically fine-tuned for Hindi instruction following
  • Open โ€” Apache 2.0, free for personal and commercial use
  • Reproducible โ€” trained entirely on free Colab, full pipeline documented
  • Versioned โ€” actively maintained with improvements planned

Roadmap

  • Done: v1 โ€” Base Hindi fine-tune on Qwen3-0.6B with 2000 samples
  • Next: v2 โ€” 10x larger dataset, improved Hindi fluency
  • Next: v3 โ€” RLHF alignment for better instruction following
  • Next: Qwen3-1.7B-Hindi โ€” bigger model, same niche
  • Next: Live demo Space on HuggingFace

Related Repos

Repo Description
pankajpandey-dev/Qwen3-0.6B-Hindi-Instruct-v1 This repo โ€” full precision safetensors
pankajpandey-dev/Qwen3-0.6B-Hindi-Instruct-v1-GGUF GGUF versions for local CPU inference

Citation

If you use this model in your research or project, please cite:

@misc{pankajpandey-dev-hindi-2026,
  author    = {Pankaj Pandey},
  title     = {Qwen3-0.6B Hindi Instruct v1},
  year      = {2026},
  publisher = {HuggingFace},
  url       = {https://huggingface.co/pankajpandey-dev/Qwen3-0.6B-Hindi-Instruct-v1}
}

About the Author

Made by pankajpandey-dev Building open-source Hindi AI models for India

Follow for weekly model updates and new Hindi LLM releases.

Found this useful? Please like this repo โ€” it helps other Hindi speakers find it.

Downloads last month
27
Safetensors
Model size
0.6B params
Tensor type
F16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for pankajpandey-dev/Qwen3-0.6B-Hindi-Instruct-v1

Finetuned
Qwen/Qwen3-0.6B
Finetuned
(1299)
this model
Quantizations
1 model

Collection including pankajpandey-dev/Qwen3-0.6B-Hindi-Instruct-v1