Text Generation
PEFT
Safetensors
English
lora
sft
qwen2.5
qwen2.5-coder
code
reasoning
debugging
pedagogy
fine-tuned
unsloth
trl
conversational
Instructions to use mechramc/codek-qwen2.5-coder-7b-lora-v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use mechramc/codek-qwen2.5-coder-7b-lora-v3 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/Qwen2.5-Coder-7B-Instruct") model = PeftModel.from_pretrained(base_model, "mechramc/codek-qwen2.5-coder-7b-lora-v3") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Unsloth Studio
How to use mechramc/codek-qwen2.5-coder-7b-lora-v3 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mechramc/codek-qwen2.5-coder-7b-lora-v3 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mechramc/codek-qwen2.5-coder-7b-lora-v3 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mechramc/codek-qwen2.5-coder-7b-lora-v3 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="mechramc/codek-qwen2.5-coder-7b-lora-v3", max_seq_length=2048, )
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,210 +1,130 @@
|
|
| 1 |
---
|
| 2 |
-
base_model:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
library_name: peft
|
|
|
|
| 4 |
pipeline_tag: text-generation
|
| 5 |
tags:
|
| 6 |
-
- base_model:adapter:unsloth/Qwen2.5-Coder-7B-Instruct
|
| 7 |
- lora
|
|
|
|
| 8 |
- sft
|
| 9 |
-
-
|
| 10 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
- unsloth
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
-
#
|
| 15 |
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
| 17 |
|
|
|
|
| 18 |
|
|
|
|
| 19 |
|
| 20 |
## Model Details
|
| 21 |
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
- **Model type:** [More Information Needed]
|
| 32 |
-
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
-
- **License:** [More Information Needed]
|
| 34 |
-
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
-
|
| 36 |
-
### Model Sources [optional]
|
| 37 |
-
|
| 38 |
-
<!-- Provide the basic links for the model. -->
|
| 39 |
-
|
| 40 |
-
- **Repository:** [More Information Needed]
|
| 41 |
-
- **Paper [optional]:** [More Information Needed]
|
| 42 |
-
- **Demo [optional]:** [More Information Needed]
|
| 43 |
-
|
| 44 |
-
## Uses
|
| 45 |
-
|
| 46 |
-
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 47 |
-
|
| 48 |
-
### Direct Use
|
| 49 |
-
|
| 50 |
-
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 51 |
-
|
| 52 |
-
[More Information Needed]
|
| 53 |
-
|
| 54 |
-
### Downstream Use [optional]
|
| 55 |
-
|
| 56 |
-
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 57 |
-
|
| 58 |
-
[More Information Needed]
|
| 59 |
-
|
| 60 |
-
### Out-of-Scope Use
|
| 61 |
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
[More Information Needed]
|
| 65 |
-
|
| 66 |
-
## Bias, Risks, and Limitations
|
| 67 |
-
|
| 68 |
-
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 69 |
-
|
| 70 |
-
[More Information Needed]
|
| 71 |
-
|
| 72 |
-
### Recommendations
|
| 73 |
-
|
| 74 |
-
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 75 |
-
|
| 76 |
-
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 77 |
-
|
| 78 |
-
## How to Get Started with the Model
|
| 79 |
-
|
| 80 |
-
Use the code below to get started with the model.
|
| 81 |
-
|
| 82 |
-
[More Information Needed]
|
| 83 |
-
|
| 84 |
-
## Training Details
|
| 85 |
-
|
| 86 |
-
### Training Data
|
| 87 |
-
|
| 88 |
-
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 89 |
-
|
| 90 |
-
[More Information Needed]
|
| 91 |
-
|
| 92 |
-
### Training Procedure
|
| 93 |
|
| 94 |
-
|
| 95 |
|
| 96 |
-
|
|
|
|
| 97 |
|
| 98 |
-
|
|
|
|
| 99 |
|
|
|
|
| 100 |
|
| 101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
|
| 103 |
-
|
|
|
|
| 104 |
|
| 105 |
-
###
|
| 106 |
|
| 107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
|
| 109 |
-
|
| 110 |
|
| 111 |
## Evaluation
|
| 112 |
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
### Testing Data, Factors & Metrics
|
| 116 |
|
| 117 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 118 |
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
[More Information Needed]
|
| 122 |
-
|
| 123 |
-
#### Factors
|
| 124 |
-
|
| 125 |
-
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 126 |
-
|
| 127 |
-
[More Information Needed]
|
| 128 |
-
|
| 129 |
-
#### Metrics
|
| 130 |
-
|
| 131 |
-
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 132 |
-
|
| 133 |
-
[More Information Needed]
|
| 134 |
-
|
| 135 |
-
### Results
|
| 136 |
-
|
| 137 |
-
[More Information Needed]
|
| 138 |
-
|
| 139 |
-
#### Summary
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
## Model Examination [optional]
|
| 144 |
-
|
| 145 |
-
<!-- Relevant interpretability work for the model goes here -->
|
| 146 |
-
|
| 147 |
-
[More Information Needed]
|
| 148 |
-
|
| 149 |
-
## Environmental Impact
|
| 150 |
-
|
| 151 |
-
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 152 |
-
|
| 153 |
-
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 154 |
-
|
| 155 |
-
- **Hardware Type:** [More Information Needed]
|
| 156 |
-
- **Hours used:** [More Information Needed]
|
| 157 |
-
- **Cloud Provider:** [More Information Needed]
|
| 158 |
-
- **Compute Region:** [More Information Needed]
|
| 159 |
-
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
-
|
| 161 |
-
## Technical Specifications [optional]
|
| 162 |
-
|
| 163 |
-
### Model Architecture and Objective
|
| 164 |
-
|
| 165 |
-
[More Information Needed]
|
| 166 |
-
|
| 167 |
-
### Compute Infrastructure
|
| 168 |
-
|
| 169 |
-
[More Information Needed]
|
| 170 |
-
|
| 171 |
-
#### Hardware
|
| 172 |
-
|
| 173 |
-
[More Information Needed]
|
| 174 |
-
|
| 175 |
-
#### Software
|
| 176 |
-
|
| 177 |
-
[More Information Needed]
|
| 178 |
-
|
| 179 |
-
## Citation [optional]
|
| 180 |
-
|
| 181 |
-
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 182 |
-
|
| 183 |
-
**BibTeX:**
|
| 184 |
-
|
| 185 |
-
[More Information Needed]
|
| 186 |
-
|
| 187 |
-
**APA:**
|
| 188 |
-
|
| 189 |
-
[More Information Needed]
|
| 190 |
-
|
| 191 |
-
## Glossary [optional]
|
| 192 |
|
| 193 |
-
|
| 194 |
|
| 195 |
-
|
|
|
|
|
|
|
|
|
|
| 196 |
|
| 197 |
-
|
|
|
|
| 198 |
|
| 199 |
-
|
|
|
|
|
|
|
|
|
|
| 200 |
|
| 201 |
-
|
|
|
|
|
|
|
|
|
|
| 202 |
|
| 203 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 204 |
|
| 205 |
-
|
| 206 |
|
| 207 |
-
|
| 208 |
-
### Framework versions
|
| 209 |
|
| 210 |
-
- PEFT 0.18.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: Qwen/Qwen2.5-Coder-7B-Instruct
|
| 3 |
+
datasets:
|
| 4 |
+
- mechramc/codek-v1
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
library_name: peft
|
| 8 |
+
license: apache-2.0
|
| 9 |
pipeline_tag: text-generation
|
| 10 |
tags:
|
|
|
|
| 11 |
- lora
|
| 12 |
+
- peft
|
| 13 |
- sft
|
| 14 |
+
- qwen2.5
|
| 15 |
+
- qwen2.5-coder
|
| 16 |
+
- code
|
| 17 |
+
- reasoning
|
| 18 |
+
- debugging
|
| 19 |
+
- pedagogy
|
| 20 |
+
- fine-tuned
|
| 21 |
- unsloth
|
| 22 |
+
- trl
|
| 23 |
+
- base_model:adapter:Qwen/Qwen2.5-Coder-7B-Instruct
|
| 24 |
---
|
| 25 |
|
| 26 |
+
# CodeK v3 — Qwen2.5-Coder-7B LoRA
|
| 27 |
|
| 28 |
+
A LoRA adapter fine-tuned on **CodeK**, a synthetic dataset of Python programming tasks
|
| 29 |
+
written in the style of Andrej Karpathy's open-source code. The model is trained to reason
|
| 30 |
+
carefully about code: explaining implementations, diagnosing bugs, contrasting correct vs.
|
| 31 |
+
incorrect versions, and generating multi-hypothesis debugging chains.
|
| 32 |
|
| 33 |
+
**Best checkpoint:** `checkpoint-800` (eval loss: 0.5888)
|
| 34 |
|
| 35 |
+
---
|
| 36 |
|
| 37 |
## Model Details
|
| 38 |
|
| 39 |
+
| Field | Value |
|
| 40 |
+
|-------|-------|
|
| 41 |
+
| Base model | `Qwen/Qwen2.5-Coder-7B-Instruct` |
|
| 42 |
+
| Adapter type | LoRA (rank 16, alpha 32, RSLoRA) |
|
| 43 |
+
| Target modules | q/k/v/o proj, gate/up/down proj |
|
| 44 |
+
| Training tokens | response-only (prompt tokens masked) |
|
| 45 |
+
| Best checkpoint | checkpoint-800 |
|
| 46 |
+
| Eval loss | 0.5888 |
|
| 47 |
+
| Training hardware | NVIDIA A100 80GB SXM4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
|
| 49 |
+
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
+
## Training Data
|
| 52 |
|
| 53 |
+
The CodeK v3 dataset combines **v2** (398 seeds) and **v3** (161 seeds) augmentation pipelines
|
| 54 |
+
for a total of **559 unique Python tasks** across 9 categories:
|
| 55 |
|
| 56 |
+
- Data structures, algorithms, graphs, dynamic programming
|
| 57 |
+
- Numerical methods, parsing, concurrency, bit manipulation, compression
|
| 58 |
|
| 59 |
+
Each seed is augmented across up to 5 passes:
|
| 60 |
|
| 61 |
+
| Pass | Type | Description |
|
| 62 |
+
|------|------|-------------|
|
| 63 |
+
| Pass 1 | Reasoning | Step-by-step explanation of the correct implementation |
|
| 64 |
+
| Pass 2 | Debugging | Single-line surgical bug + model diagnosis (via Codex, 100% coverage) |
|
| 65 |
+
| Pass 3 | Contrast | Correct vs. incorrect comparison with explanation |
|
| 66 |
+
| Pass 4 | Research loop | Multi-turn investigation of the implementation |
|
| 67 |
+
| Pass 5 | Multi-hypothesis | Competing bug hypotheses, ranked by plausibility |
|
| 68 |
|
| 69 |
+
**Training split:** 6,757 pairs (504 seed-level train tasks)
|
| 70 |
+
**Validation split:** 728 pairs (55 seed-level held-out tasks, zero task overlap with train)
|
| 71 |
|
| 72 |
+
### Key improvements over v2 model
|
| 73 |
|
| 74 |
+
- **Seed-level val split** — validation set has no task overlap with training (eval loss is meaningful)
|
| 75 |
+
- **Response-only loss** — prompt tokens masked; model only trained on assistant responses
|
| 76 |
+
- **Pass 5** — multi-hypothesis bug reasoning signal (new in v3)
|
| 77 |
+
- **Pass 2 via Codex** — 100% pass 2 coverage with sharper `change_token` annotations
|
| 78 |
+
- **`change_token` field** — targets the `change_hit` failure mode from the v1/v2 evals
|
| 79 |
|
| 80 |
+
---
|
| 81 |
|
| 82 |
## Evaluation
|
| 83 |
|
| 84 |
+
Ground-truth Pass 2 eval on 50 held-out v1 seeds (same seeds used across all versions for apples-to-apples comparison). A prediction passes if it correctly identifies both the **function** containing the bug and the **nature of the change**.
|
|
|
|
|
|
|
| 85 |
|
| 86 |
+
| Version | Dataset | LoRA Pass@1 | Base Pass@1 |
|
| 87 |
+
|---------|---------|-------------|-------------|
|
| 88 |
+
| v0 | 201 seeds, 4 passes | 58% | 64% |
|
| 89 |
+
| v1 | 398 seeds, 4 passes | 60% | 62% |
|
| 90 |
+
| **v3** | **559 seeds, 5 passes** | **pending** | **pending** |
|
| 91 |
|
| 92 |
+
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
|
| 94 |
+
## Usage
|
| 95 |
|
| 96 |
+
```python
|
| 97 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 98 |
+
from peft import PeftModel
|
| 99 |
+
import torch
|
| 100 |
|
| 101 |
+
base = "Qwen/Qwen2.5-Coder-7B-Instruct"
|
| 102 |
+
adapter = "mechramc/codek-qwen2.5-coder-7b-lora-v3"
|
| 103 |
|
| 104 |
+
tokenizer = AutoTokenizer.from_pretrained(base, trust_remote_code=True)
|
| 105 |
+
model = AutoModelForCausalLM.from_pretrained(base, torch_dtype=torch.bfloat16, device_map="auto")
|
| 106 |
+
model = PeftModel.from_pretrained(model, adapter)
|
| 107 |
+
model.eval()
|
| 108 |
|
| 109 |
+
messages = [
|
| 110 |
+
{"role": "system", "content": "You are a Python debugging expert. When shown code with a bug, identify the exact location and nature of the bug. Be precise and concise."},
|
| 111 |
+
{"role": "user", "content": "The following Python code has a subtle bug. Find it.\n\n```python\ndef binary_search(arr, target):\n lo, hi = 0, len(arr) - 1\n while lo <= hi:\n mid = (lo + hi) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n lo = mid\n else:\n hi = mid - 1\n return -1\n```"}
|
| 112 |
+
]
|
| 113 |
|
| 114 |
+
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 115 |
+
inputs = tokenizer(text, return_tensors="pt").to(model.device)
|
| 116 |
+
with torch.no_grad():
|
| 117 |
+
out = model.generate(**inputs, max_new_tokens=300, do_sample=False)
|
| 118 |
+
print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
|
| 119 |
+
```
|
| 120 |
|
| 121 |
+
---
|
| 122 |
|
| 123 |
+
## Framework Versions
|
|
|
|
| 124 |
|
| 125 |
+
- PEFT: 0.18.1
|
| 126 |
+
- TRL: 0.24.0
|
| 127 |
+
- Transformers: 5.5.0
|
| 128 |
+
- PyTorch: 2.6.0
|
| 129 |
+
- Unsloth: 2026.4.1
|
| 130 |
+
- CUDA: 12.4
|