srivarenya commited on
Commit
c269e2a
Β·
verified Β·
1 Parent(s): 6768ee3

Add model card (GRPO/RLVR results + specialization-trade framing)

Browse files
Files changed (1) hide show
  1. README.md +63 -0
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.