Text Generation
Transformers
Safetensors
English
qwen2
code
python
qwen2.5-coder
dora
grpo
rlvr
reinforcement-learning
mixture-of-models
code-generation
conversational
text-generation-inference
Instructions to use srivarenya/MoM-python-slm-grpo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use srivarenya/MoM-python-slm-grpo with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="srivarenya/MoM-python-slm-grpo") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("srivarenya/MoM-python-slm-grpo") model = AutoModelForCausalLM.from_pretrained("srivarenya/MoM-python-slm-grpo") 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 srivarenya/MoM-python-slm-grpo with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "srivarenya/MoM-python-slm-grpo" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "srivarenya/MoM-python-slm-grpo", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/srivarenya/MoM-python-slm-grpo
- SGLang
How to use srivarenya/MoM-python-slm-grpo 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 "srivarenya/MoM-python-slm-grpo" \ --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": "srivarenya/MoM-python-slm-grpo", "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 "srivarenya/MoM-python-slm-grpo" \ --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": "srivarenya/MoM-python-slm-grpo", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use srivarenya/MoM-python-slm-grpo with Docker Model Runner:
docker model run hf.co/srivarenya/MoM-python-slm-grpo
Add model card (GRPO/RLVR results + specialization-trade framing)
Browse files
README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: srivarenya/MoM-python-slm
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
library_name: transformers
|
| 6 |
+
tags: [code, python, qwen2.5-coder, dora, grpo, rlvr, reinforcement-learning, mixture-of-models, code-generation]
|
| 7 |
+
language: [en]
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# MoM-Python-SLM-GRPO (1.5B)
|
| 11 |
+
|
| 12 |
+
The **spec-driven code-generation node** of a **Mixture-of-Models (MoM)** mesh β the GRPO/RLVR-tuned
|
| 13 |
+
successor to [`srivarenya/MoM-python-slm`](https://huggingface.co/srivarenya/MoM-python-slm). Given a
|
| 14 |
+
Python task (optionally with an upstream context packet), it returns reasoning followed by a function.
|
| 15 |
+
It shares the Qwen2.5-Coder tokenizer with the other generative nodes, which is what makes logit-space
|
| 16 |
+
fusion across the mesh valid.
|
| 17 |
+
|
| 18 |
+
- **Warm-started from:** [`srivarenya/MoM-python-slm`](https://huggingface.co/srivarenya/MoM-python-slm)
|
| 19 |
+
(DoRA r=64 SFT of Qwen2.5-Coder-1.5B-Instruct)
|
| 20 |
+
- **Method:** GRPO (Group Relative Policy Optimization, RLVR) β a fresh DoRA r=64 adapter trained 500
|
| 21 |
+
steps, then merged.
|
| 22 |
+
- **Reward:** `0.8 Β· execution + 0.1 Β· format + 0.1 Β· LLM-judge`. Execution reward runs each completion
|
| 23 |
+
against the problem's `assert` tests in a sandbox (binary pass/fail) β this is the load-bearing signal.
|
| 24 |
+
Two-sided abstention: `NEED_INPUT` is rewarded only on underspecified prompts.
|
| 25 |
+
- **GRPO config:** Ξ²=0 (no KL), asymmetric clip Ξ΅=[0.2, 0.25], G=8 completions/prompt, temp=0.9, top_p=0.95,
|
| 26 |
+
lr=1e-5. Problems: 6k execution-verifiable (problem_solving + spec_to_code) + abstention records.
|
| 27 |
+
|
| 28 |
+
## Benchmarks (greedy pass@1, same Colab/evalplus harness for all three)
|
| 29 |
+
|
| 30 |
+
| Metric | base | SFT (`MoM-python-slm`) | **this model (GRPO)** | GRPO vs SFT |
|
| 31 |
+
|---|---|---|---|---|
|
| 32 |
+
| MBPP | 66.7 | 69.6 | **72.5** | **+2.9** |
|
| 33 |
+
| MBPP+ | β | β | 62.7 | β |
|
| 34 |
+
| domain `problem_solving` (exec) | 0.700 | 0.713 | **0.767** | **+5.4** |
|
| 35 |
+
| domain `spec_to_code` (exec) | 0.632 | 0.714 | **0.729** | +1.5 |
|
| 36 |
+
| domain `api_usage` (application) | β | 0.855 | **0.900** | +4.5 |
|
| 37 |
+
| HumanEval | 68.9 | 70.7 | 67.7 | β3.0 |
|
| 38 |
+
| HumanEval+ | β | β | 62.2 | β |
|
| 39 |
+
| domain `api_signature` (param-recall) | 0.217 | 0.299 | 0.301 | +0.0 |
|
| 40 |
+
|
| 41 |
+
## What GRPO did (load-bearing read)
|
| 42 |
+
|
| 43 |
+
GRPO is a **specialization trade, not a free lunch.** Gains land on exactly the execution-rewarded,
|
| 44 |
+
spec-driven dimensions β **MBPP +2.9** and **domain problem_solving +5.4** over SFT β while the
|
| 45 |
+
**un-reinforced HumanEval completion format gives back β3.0** (slightly under base). That's the textbook
|
| 46 |
+
RLVR signature: the model sharpens "write a correct function from a spec" (what the MoM node actually
|
| 47 |
+
does) at a small cost to "graft a body under a fixed signature" (a format it never saw a reward for).
|
| 48 |
+
|
| 49 |
+
- **Use this model** for the spec-driven node role β it's the strongest on MBPP and the held-out domain eval.
|
| 50 |
+
- **Use the [SFT sibling](https://huggingface.co/srivarenya/MoM-python-slm)** if HumanEval-completion is a
|
| 51 |
+
hard gate β it remains the HumanEval-strongest checkpoint (70.7).
|
| 52 |
+
|
| 53 |
+
## Usage
|
| 54 |
+
```python
|
| 55 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 56 |
+
tok = AutoTokenizer.from_pretrained("srivarenya/MoM-python-slm-grpo")
|
| 57 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 58 |
+
"srivarenya/MoM-python-slm-grpo", dtype="bfloat16", device_map="auto")
|
| 59 |
+
```
|
| 60 |
+
Prompt with the training system prompt + a Python task; the model returns reasoning then code. Reward,
|
| 61 |
+
training recipe, and the self-contained GRPO Colab notebook are in the project repository.
|
| 62 |
+
|
| 63 |
+
Next cross-check: **LiveCodeBench** (contamination-resistant), before/after vs the SFT sibling.
|