Text Generation
Transformers
Safetensors
Arabic
llama
arabic
reasoning
chain-of-thought
math
gsm8k
small-language-model
slm
sft
conversational
text-generation-inference
Instructions to use oddadmix/Nawah-Math-Reasoning with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use oddadmix/Nawah-Math-Reasoning with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="oddadmix/Nawah-Math-Reasoning") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("oddadmix/Nawah-Math-Reasoning") model = AutoModelForCausalLM.from_pretrained("oddadmix/Nawah-Math-Reasoning", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use oddadmix/Nawah-Math-Reasoning with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "oddadmix/Nawah-Math-Reasoning" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "oddadmix/Nawah-Math-Reasoning", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/oddadmix/Nawah-Math-Reasoning
- SGLang
How to use oddadmix/Nawah-Math-Reasoning with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "oddadmix/Nawah-Math-Reasoning" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "oddadmix/Nawah-Math-Reasoning", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "oddadmix/Nawah-Math-Reasoning" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "oddadmix/Nawah-Math-Reasoning", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use oddadmix/Nawah-Math-Reasoning with Docker Model Runner:
docker model run hf.co/oddadmix/Nawah-Math-Reasoning
model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,176 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- ar
|
| 5 |
+
base_model: oddadmix/50M-2048-Emhotob
|
| 6 |
+
datasets:
|
| 7 |
+
- oddadmix/arabic-math-reasoning-synth
|
| 8 |
+
- oddadmix/gsm8k-reasoning-ar
|
| 9 |
+
- Omartificial-Intelligence-Space/Arabic_Reasoning_Dataset
|
| 10 |
+
library_name: transformers
|
| 11 |
+
pipeline_tag: text-generation
|
| 12 |
+
tags:
|
| 13 |
+
- arabic
|
| 14 |
+
- reasoning
|
| 15 |
+
- chain-of-thought
|
| 16 |
+
- math
|
| 17 |
+
- gsm8k
|
| 18 |
+
- small-language-model
|
| 19 |
+
- slm
|
| 20 |
+
- llama
|
| 21 |
+
- sft
|
| 22 |
+
---
|
| 23 |
+
|
| 24 |
+
# Nawah-Math-Reasoning — نموذج استدلال رياضي عربي
|
| 25 |
+
|
| 26 |
+
A **51.8M-parameter** Arabic math reasoning model. It writes its derivation step by step
|
| 27 |
+
inside `<think>…</think>`, then gives the answer. It is small enough to run on a CPU.
|
| 28 |
+
|
| 29 |
+
> **بالعربية:** نموذج عربي صغير (~52 مليون معامل) لحل المسائل الحسابية: يكتب خطوات
|
| 30 |
+
> تفكيره داخل وسم `<think>` ثم يعطي الإجابة. صغير بما يكفي ليعمل على المعالج (CPU).
|
| 31 |
+
|
| 32 |
+
| | |
|
| 33 |
+
|---|---|
|
| 34 |
+
| 🤗 **Demo** | [`oddadmix/Nawah-Math-Reasoning-Demo`](https://huggingface.co/spaces/oddadmix/Nawah-Math-Reasoning-Demo) |
|
| 35 |
+
| 🧩 **Base model** | [`oddadmix/50M-2048-Emhotob`](https://huggingface.co/oddadmix/50M-2048-Emhotob) — Llama architecture, 12 layers, hidden 512, 2048 ctx, pre-trained from scratch on ~20B Arabic tokens |
|
| 36 |
+
| 📚 **Data** | [`arabic-math-reasoning-synth`](https://huggingface.co/datasets/oddadmix/arabic-math-reasoning-synth) · [`gsm8k-reasoning-ar`](https://huggingface.co/datasets/oddadmix/gsm8k-reasoning-ar) · [`Arabic_Reasoning_Dataset`](https://huggingface.co/datasets/Omartificial-Intelligence-Space/Arabic_Reasoning_Dataset) |
|
| 37 |
+
| 🛠️ **Training code** | [`code/`](https://huggingface.co/oddadmix/Nawah-Math-Reasoning/tree/main/code) in this repo — data generation, translation, SFT, eval, GRPO |
|
| 38 |
+
| 🔤 **Vocab** | 32004 (4 chat/reasoning tokens added to the 32000 base vocab) |
|
| 39 |
+
|
| 40 |
+
## Results
|
| 41 |
+
|
| 42 |
+
Number agreement, greedy decoding. **Every cell is measured on identical held-out rows.** The
|
| 43 |
+
`Arabic_Reasoning` and `GSM8K-ar` rows are the eval splits fixed at the start of the project and
|
| 44 |
+
never re-drawn; the synthetic rows are pinned to the same 1,000 items every earlier version was
|
| 45 |
+
scored on.
|
| 46 |
+
|
| 47 |
+
The `v3 / v4 / v5` columns are internal development runs, kept here because they are what makes
|
| 48 |
+
the release number mean something. They are not published — the numbers are, so the ablation is
|
| 49 |
+
readable without them.
|
| 50 |
+
|
| 51 |
+
| eval set | n | v3 | v4 | v5 | **release** |
|
| 52 |
+
|---|---:|---:|---:|---:|---:|
|
| 53 |
+
| GSM8K-ar | 600 | 77.3% | 19.5% | 76.0% | **79.0%** |
|
| 54 |
+
| Arabic_Reasoning | 400 | 65.8% | 50.2% | **75.2%** | 73.0% |
|
| 55 |
+
| synthetic math | 1000 | 2.0% | 35.6% | 39.1% | **40.4%** |
|
| 56 |
+
| **synthetic relational** | 400 | — | — | 34.0% | **52.2%** |
|
| 57 |
+
|
| 58 |
+
**The relational row is what this release adds.** On problems whose difficulty is the *relation*
|
| 59 |
+
between quantities (`ضعف`, `نصف`, `أكثر بـ…`) rather than the arithmetic, it scores
|
| 60 |
+
**52.2%** where the previous run scores 34.0% — a **+18.2 point** gain and
|
| 61 |
+
the largest single-cell move anywhere in the development ladder. It did not cost the other
|
| 62 |
+
distributions: GSM8K-ar is simultaneously the best of the series at **79.0%**, and
|
| 63 |
+
synthetic math gains +1.3.
|
| 64 |
+
|
| 65 |
+
The one regression is `Arabic_Reasoning` at **-2.2** against v5 — on 400 rows that is
|
| 66 |
+
close to sampling noise, but it is the second consecutive mix where this column is the give.
|
| 67 |
+
|
| 68 |
+
| detail | GSM8K-ar | Arabic_Reasoning | synth math | synth relational |
|
| 69 |
+
|---|---:|---:|---:|---:|
|
| 70 |
+
| final-answer number correct | 79.0% | 77.5% | 46.2% | 54.2% |
|
| 71 |
+
| all numbers match | 79.0% | 73.0% | 43.5% | 52.2% |
|
| 72 |
+
| well-formed `<think>` + answer | 100.0% | 98.8% | 99.5% | 99.5% |
|
| 73 |
+
| mean reasoning length | 39 tok | 90 tok | 59 tok | 45 tok |
|
| 74 |
+
|
| 75 |
+
*(the synth-math column here is the 400-row mix cell; the 40.4% in the table above is the
|
| 76 |
+
1,000-row set used for the cross-model comparison.)*
|
| 77 |
+
|
| 78 |
+
Reproduce any cell with `code/eval_reasoning.py` — it is the same script for every model and every
|
| 79 |
+
row, which is the only reason these are comparable.
|
| 80 |
+
|
| 81 |
+
### The final checkpoint ships, and eval loss disagrees
|
| 82 |
+
|
| 83 |
+
Loss bottoms at **0.4559** (epoch 1.86) and rises to **0.5154** by
|
| 84 |
+
epoch 5 — yet the epoch-5 weights are the better model. This was measured directly on
|
| 85 |
+
an earlier run whose corpus contained **no repeated rows**, which rules out memorisation: the
|
| 86 |
+
minimum-loss checkpoint scored 30.9% where the final scored 35.6%. It happened on four consecutive
|
| 87 |
+
runs. `train_reasoning.py` therefore takes `LOAD_BEST=0`, and that is not an oversight.
|
| 88 |
+
|
| 89 |
+
## Training mix
|
| 90 |
+
|
| 91 |
+
275,639 rows, 31.1M tokens/epoch:
|
| 92 |
+
|
| 93 |
+
| source | rows | tokens/epoch | share |
|
| 94 |
+
|---|---:|---:|---:|
|
| 95 |
+
| [`oddadmix/arabic-math-reasoning-synth`](https://huggingface.co/datasets/oddadmix/arabic-math-reasoning-synth) | 118,062 | 16.79M | 53.9% |
|
| 96 |
+
| [`oddadmix/gsm8k-reasoning-ar`](https://huggingface.co/datasets/oddadmix/gsm8k-reasoning-ar) | 140,969 | 11.88M | 38.2% |
|
| 97 |
+
| [`Omartificial-Intelligence-Space/Arabic_Reasoning_Dataset`](https://huggingface.co/datasets/Omartificial-Intelligence-Space/Arabic_Reasoning_Dataset) | 16,608 (5,536 × 3) | 2.45M | 7.9% |
|
| 98 |
+
|
| 99 |
+
Of the synthetic corpus's 120,462 rows, 20,139 are **relational** problems generated
|
| 100 |
+
specifically for this release, after a `pass@k` diagnostic showed the previous model went 0/8 on
|
| 101 |
+
`ضعف`-style problems and a corpus audit found the relation appears in only 1.34% of rows. The
|
| 102 |
+
synthetic eval split was **pinned, not re-drawn** when those rows were added: re-shuffling would
|
| 103 |
+
have moved 1,955 of the 2,000 previously held-out items into train, turning that column into a
|
| 104 |
+
memorisation score.
|
| 105 |
+
|
| 106 |
+
Full fine-tune from the base (not from the previous version). Loss on the assistant turn only, user
|
| 107 |
+
prompt masked with `-100`. `Arabic_Reasoning` is ~25× smaller than GSM8K, so it is repeated 3×.
|
| 108 |
+
|
| 109 |
+
| | |
|
| 110 |
+
|---|---|
|
| 111 |
+
| epochs | 5 (21,535 steps) |
|
| 112 |
+
| effective batch | 64 |
|
| 113 |
+
| learning rate | 3e-4 cosine, 200 warmup steps |
|
| 114 |
+
| max length | 768 tokens (mix p100 is 703 — nothing truncated) |
|
| 115 |
+
| precision | bf16 |
|
| 116 |
+
| checkpoint | final (`load_best_model_at_end` disabled — it picks the worse model) |
|
| 117 |
+
| hardware | 1× RTX A6000, ~85 min |
|
| 118 |
+
|
| 119 |
+
## Usage
|
| 120 |
+
|
| 121 |
+
```python
|
| 122 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 123 |
+
import torch
|
| 124 |
+
|
| 125 |
+
model_id = "oddadmix/Nawah-Math-Reasoning"
|
| 126 |
+
tok = AutoTokenizer.from_pretrained(model_id)
|
| 127 |
+
model = AutoModelForCausalLM.from_pretrained(model_id, dtype=torch.bfloat16).eval()
|
| 128 |
+
|
| 129 |
+
messages = [{"role": "user", "content": "اشترى خالد 4 دفاتر بسعر 15 جنيهًا للدفتر، ودفع بورقة 100 جنيه. كم المبلغ المتبقي؟"}]
|
| 130 |
+
prompt = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 131 |
+
ids = tok(prompt, return_tensors="pt")
|
| 132 |
+
|
| 133 |
+
out = model.generate(**ids, max_new_tokens=384, do_sample=False)
|
| 134 |
+
print(tok.decode(out[0][ids["input_ids"].shape[1]:], skip_special_tokens=False))
|
| 135 |
+
```
|
| 136 |
+
|
| 137 |
+
Split the parts with `re.match(r"\s*<think>(.*?)</think>(.*)", completion, re.S)`.
|
| 138 |
+
Decode with `skip_special_tokens=False` — `<think>` and `</think>` are real tokens in this
|
| 139 |
+
tokenizer, and stripping them destroys the split.
|
| 140 |
+
|
| 141 |
+
It is **single-turn**: one user message per call. Chat history is out of distribution.
|
| 142 |
+
|
| 143 |
+
**Answer style is not something you can request.** The three corpora disagree — GSM8K rows end in a
|
| 144 |
+
bare numeral, the other two in an `إذن، …` sentence — and arithmetic word problems look alike in
|
| 145 |
+
all of them, so the model picks a style per prompt. **Score it on number agreement, not exact
|
| 146 |
+
string match**, and parse the answer by extracting its numbers.
|
| 147 |
+
|
| 148 |
+
## Limitations
|
| 149 |
+
|
| 150 |
+
At ~52M parameters this is a **proof of concept**, and the honest headline is the
|
| 151 |
+
synthetic columns — **40.4%** and **52.2%** on multi-step problems, well below the
|
| 152 |
+
79.0% it scores on GSM8K's narrower phrasing. Arithmetic is the dominant failure mode: the
|
| 153 |
+
reasoning is usually structurally right, one computation step is wrong, and the model then stays
|
| 154 |
+
faithful to its own bad number.
|
| 155 |
+
|
| 156 |
+
Each corpus brings its own defect. The GSM8K half is machine-translated, its 140,969 rows expanding
|
| 157 |
+
from only 2,814 question patterns, so that score partly reflects narrow phrasing. The synthetic
|
| 158 |
+
half is verified for **arithmetic, not for sense** — rows survive where every equation checks out
|
| 159 |
+
but a step introduces an entity never mentioned, or the answer resolves the reverse of what was
|
| 160 |
+
asked. The `Arabic_Reasoning` half excludes open-ended expository rows (they have no final answer
|
| 161 |
+
to place after `</think>`), so expository prompts remain out of distribution.
|
| 162 |
+
|
| 163 |
+
Everything is MSA; the synthetic corpus's region axis sets currency and context, not dialect. The
|
| 164 |
+
Arabic inherits source artifacts including inconsistent gender agreement. Its reasoning trace is
|
| 165 |
+
not a faithful account of any internal computation. Do not use it for anything consequential.
|
| 166 |
+
|
| 167 |
+
## Citation
|
| 168 |
+
|
| 169 |
+
```bibtex
|
| 170 |
+
@misc{nawah_math_reasoning_2026,
|
| 171 |
+
title = {Nawah-Math-Reasoning: a 52M-parameter Arabic chain-of-thought math model},
|
| 172 |
+
author = {Ahmed Wasfy},
|
| 173 |
+
year = {2026},
|
| 174 |
+
url = {https://huggingface.co/oddadmix/Nawah-Math-Reasoning}
|
| 175 |
+
}
|
| 176 |
+
```
|