AI4Burmese Padauk
Mission: Open, free, and accessible Burmese AI so Myanmar is not left behind in the age of AI.
Padauk is part of the AI4Burmese initiative: an open effort to make Burmese AI more accessible, practical, and buildable for everyone, including users, students, researchers, and developers.
It is a practical Burmese-first agentic chat model specialized for day-to-day assistance, tool use, function calling, and compatibility with Skills, MCP servers, and external tools.
Model Details
- Developed by: Dr. Wai Yan Nyein Naing
- Shared by: WYNN747
- Initiative: AI4Burmese
- Model type: PEFT LoRA adapter for agentic chat behavior
- Base model:
unsloth/gemma-4-E4B-it
- Languages: Burmese, English
- Best for: Day-to-day assistance, workflow support, tool routing, and agentic interaction
- Technical project page: https://waiyannyeinnaing.com/projects/padauk
- Public model card: https://waiyannyeinnaing.com/projects/padauk
- Website: https://ai4burmese.com/
- Founder: https://waiyannyeinnaing.com
- Hugging Face profile: https://huggingface.co/WYNN747
Model Description
Padauk is designed as a practical assistant layer rather than a pure text-completion model. It is built to help with everyday questions, writing, planning, task guidance, and assistant-style interactions in Burmese and English.
As part of the AI4Burmese mission, this release is intended to support more open and usable Burmese AI for real-world needs, especially for communities that benefit from free, practical, and adaptable local-language AI.
The model is positioned for real assistant workflows:
- Direct answers for simple requests
- Function-calling style behavior for structured tasks
- Compatibility with external Skills, MCP servers, and tools when wired into a runtime
- Burmese-first interaction with English support
- Practical deployment as part of an open Burmese AI ecosystem
Why AI4Burmese
Burmese is still underserved in modern AI. Many users, students, and builders do not yet have enough open, high-quality, and practically deployable AI systems designed for Burmese language use.
AI4Burmese exists to help close that gap by supporting open-source Burmese AI models and tools that are:
- Open for community learning and contribution
- Free and accessible for broader public use
- Practical for real workflows, not only demos
- Buildable so others can adapt and extend them
- Burmese-first while remaining useful in bilingual settings
Padauk is one part of that broader effort.
How to Use
1from transformers import AutoTokenizer, AutoModelForCausalLM
2from peft import PeftModel
3
4base_model_id = "unsloth/gemma-4-E4B-it"
5adapter_id = "WYNN747/ai4burmese-padauk"
6
7tokenizer = AutoTokenizer.from_pretrained(base_model_id)
8base_model = AutoModelForCausalLM.from_pretrained(
9 base_model_id,
10 device_map="auto",
11)
12model = PeftModel.from_pretrained(base_model, adapter_id)
13
14messages = [
15 {"role": "system", "content": "You are Padauk, a practical Burmese-first agentic AI assistant from the AI4Burmese initiative."},
16 {"role": "user", "content": "Help me plan a productive work day."},
17]
18
19text = tokenizer.apply_chat_template(
20 messages,
21 tokenize=False,
22 add_generation_prompt=True,
23)
24inputs = tokenizer(text, return_tensors="pt").to(model.device)
25outputs = model.generate(**inputs, max_new_tokens=256)
26response = tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=False)
27print(response)
Tool execution, Skills, and MCP server calls should be implemented in the surrounding application or runtime. Padauk is intended to decide when a tool should be used, not to replace the orchestration layer.
Best-Suited Uses
- Everyday assistance and practical Q&A
- Writing and rewriting
- Planning and task breakdowns
- Search-assisted workflows
- Coding help and technical support
- Tool-augmented assistant experiences
- Skill-driven or MCP-connected workflows
- Burmese-first AI applications and experiments
Training Notes
This release is framed as an agentic assistant fine-tune built on Gemma 4 E4B Instruct. The public positioning focuses on assistant behavior, tool use, practical task handling, and Burmese-first usability.
This model card intentionally stays concise so the release remains aligned with product and community use. A future expanded technical appendix may include:
- Dataset details
- Training recipe
- Alignment method
- Evaluation results
- Quantization or deployment notes
Out-of-Scope & Limitations
- Not a substitute for verified sources, professional advice, or domain experts
- Tool access depends on the runtime and connected integrations
- Function-calling quality depends on tool schema quality and orchestration
- Results should be reviewed before use in high-stakes settings
- Real-world usefulness depends on the surrounding application design and deployment setup
Citation
If you use Padauk in research or product work, please cite the model page and project page:
1@misc{padauk2026,
2 title = {AI4Burmese Padauk: Practical Burmese-First Agentic AI Assistant},
3 author = {Wai Yan Nyein Naing},
4 year = {2026},
5 url = {https://huggingface.co/WYNN747/ai4burmese-padauk}
6}
License
Gemma license, subject to the base model terms and any repository-specific release notes.
Contact
Related Work
- AI4Burmese
- Padauk technical project page
- Padauk public model card and live arena
- Burmese-Coder-4B
- Burmese language open-source AI work