Instructions to use Monibee-Fudgekins/gemma-coder-dev with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Monibee-Fudgekins/gemma-coder-dev with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Monibee-Fudgekins/gemma-coder-dev")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Monibee-Fudgekins/gemma-coder-dev", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Monibee-Fudgekins/gemma-coder-dev with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Monibee-Fudgekins/gemma-coder-dev" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Monibee-Fudgekins/gemma-coder-dev", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Monibee-Fudgekins/gemma-coder-dev
- SGLang
How to use Monibee-Fudgekins/gemma-coder-dev 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 "Monibee-Fudgekins/gemma-coder-dev" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Monibee-Fudgekins/gemma-coder-dev", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "Monibee-Fudgekins/gemma-coder-dev" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Monibee-Fudgekins/gemma-coder-dev", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Unsloth Studio
How to use Monibee-Fudgekins/gemma-coder-dev 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 Monibee-Fudgekins/gemma-coder-dev 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 Monibee-Fudgekins/gemma-coder-dev to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Monibee-Fudgekins/gemma-coder-dev to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="Monibee-Fudgekins/gemma-coder-dev", max_seq_length=2048, ) - Docker Model Runner
How to use Monibee-Fudgekins/gemma-coder-dev with Docker Model Runner:
docker model run hf.co/Monibee-Fudgekins/gemma-coder-dev
Update model card (smoke run, pass@1 0.00%)
Browse files
README.md
CHANGED
|
@@ -1,40 +1,40 @@
|
|
| 1 |
---
|
| 2 |
license: gemma
|
| 3 |
-
base_model:
|
| 4 |
datasets:
|
| 5 |
-
- sahil2801/CodeAlpaca-20k
|
| 6 |
library_name: transformers
|
| 7 |
pipeline_tag: text-generation
|
| 8 |
tags:
|
| 9 |
-
- code
|
| 10 |
-
- coding-assistant
|
| 11 |
-
- qlora
|
| 12 |
-
- unsloth
|
| 13 |
model-index:
|
| 14 |
-
- name: gemma-coder-dev
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
---
|
| 27 |
|
| 28 |
# gemma-coder-dev
|
| 29 |
|
| 30 |
-
Coding-focused fine-tune of [`
|
| 31 |
-
|
| 32 |
-
[remote-agent-dev-platform](https://github.com/Monibee-Fudgekins/remote-agent-dev-platform).
|
| 33 |
-
promoted: **False**.
|
| 34 |
|
| 35 |
## Model description
|
| 36 |
-
QLoRA fine-tune of
|
| 37 |
-
agent model for the remote-agent-dev-platform (served via vLLM on Modal).
|
| 38 |
|
| 39 |
## Intended uses & limitations
|
| 40 |
- **Intended:** code generation and assistance in Python, JavaScript/React, Go, Java,
|
|
@@ -49,7 +49,7 @@ agent model for the remote-agent-dev-platform (served via vLLM on Modal).
|
|
| 49 |
|
| 50 |
## Training procedure
|
| 51 |
- Method: QLoRA (Unsloth), 4-bit base, LoRA r=16 / alpha=32, lr 2e-4 (cosine),
|
| 52 |
-
max steps 10, max seq len
|
| 53 |
- Hardware: Kaggle free GPU (weekly GitHub Actions run).
|
| 54 |
|
| 55 |
## Evaluation
|
|
|
|
| 1 |
---
|
| 2 |
license: gemma
|
| 3 |
+
base_model: google/gemma-4-26B-A4B-it
|
| 4 |
datasets:
|
| 5 |
+
- sahil2801/CodeAlpaca-20k
|
| 6 |
library_name: transformers
|
| 7 |
pipeline_tag: text-generation
|
| 8 |
tags:
|
| 9 |
+
- code
|
| 10 |
+
- coding-assistant
|
| 11 |
+
- qlora
|
| 12 |
+
- unsloth
|
| 13 |
model-index:
|
| 14 |
+
- name: gemma-coder-dev
|
| 15 |
+
results:
|
| 16 |
+
- task:
|
| 17 |
+
type: text-generation
|
| 18 |
+
name: Code generation
|
| 19 |
+
dataset:
|
| 20 |
+
type: code-eval
|
| 21 |
+
name: remote-agent-dev-platform coding_eval
|
| 22 |
+
metrics:
|
| 23 |
+
- type: pass@1
|
| 24 |
+
value: 0.0000
|
| 25 |
+
name: pass@1 (Python/JS/React/Go/Java/Swift)
|
| 26 |
---
|
| 27 |
|
| 28 |
# gemma-coder-dev
|
| 29 |
|
| 30 |
+
Coding-focused fine-tune of [`google/gemma-4-26B-A4B-it`](https://huggingface.co/google/gemma-4-26B-A4B-it)
|
| 31 |
+
(**Gemma 4 26B A4B**, an MoE with ~4B active params), produced automatically by the
|
| 32 |
+
weekly retrain pipeline in [remote-agent-dev-platform](https://github.com/Monibee-Fudgekins/remote-agent-dev-platform).
|
| 33 |
+
**Last updated: 2026-06-16 21:07 UTC** 路 run mode: `smoke` 路 promoted: **False**.
|
| 34 |
|
| 35 |
## Model description
|
| 36 |
+
QLoRA fine-tune of google/gemma-4-26B-A4B-it specialized for coding assistance. It is the
|
| 37 |
+
default agent model for the remote-agent-dev-platform (served via vLLM on Modal).
|
| 38 |
|
| 39 |
## Intended uses & limitations
|
| 40 |
- **Intended:** code generation and assistance in Python, JavaScript/React, Go, Java,
|
|
|
|
| 49 |
|
| 50 |
## Training procedure
|
| 51 |
- Method: QLoRA (Unsloth), 4-bit base, LoRA r=16 / alpha=32, lr 2e-4 (cosine),
|
| 52 |
+
max steps 10, max seq len 1024, optimizer adamw_8bit.
|
| 53 |
- Hardware: Kaggle free GPU (weekly GitHub Actions run).
|
| 54 |
|
| 55 |
## Evaluation
|