sahil2801/CodeAlpaca-20k
Viewer • Updated • 20k • 21.2k • 230
How to use mahernaija/Qwen3.5-27B-Coder with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="mahernaija/Qwen3.5-27B-Coder")
messages = [
{"role": "user", "content": "Who are you?"},
]
pipe(messages) # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("mahernaija/Qwen3.5-27B-Coder")
model = AutoModelForCausalLM.from_pretrained("mahernaija/Qwen3.5-27B-Coder")
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]:]))How to use mahernaija/Qwen3.5-27B-Coder with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "mahernaija/Qwen3.5-27B-Coder"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "mahernaija/Qwen3.5-27B-Coder",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/mahernaija/Qwen3.5-27B-Coder
How to use mahernaija/Qwen3.5-27B-Coder with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "mahernaija/Qwen3.5-27B-Coder" \
--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": "mahernaija/Qwen3.5-27B-Coder",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'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 "mahernaija/Qwen3.5-27B-Coder" \
--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": "mahernaija/Qwen3.5-27B-Coder",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'How to use mahernaija/Qwen3.5-27B-Coder with Docker Model Runner:
docker model run hf.co/mahernaija/Qwen3.5-27B-Coder
Fine-tuned version of Qwen/Qwen3.5-27B specialized for coding tasks.
| Parameter | Value |
|---|---|
| Base model | Qwen/Qwen3.5-27B (27B dense, Apache 2.0) |
| Method | LoRA r=64, alpha=128, all-linear projections |
| Precision | BF16 |
| Framework | HuggingFace SFTTrainer + PEFT + DeepSpeed ZeRO-2 |
| Hardware | 16× NVIDIA H200 SXM (141 GB each), 2 nodes |
| GPU utilization | 91% VRAM, 91-100% compute |
| Training steps | 250 (early stopped — loss plateaued) |
| Training time | ~4 hours |
| Final loss | 0.70 (down from 1.13, -40%) |
| Final accuracy | 80.0% token accuracy |
| Dataset | Examples | Purpose |
|---|---|---|
| Magicoder-Evol-Instruct-110K | 110K | Complex coding tasks from real GitHub code |
| CodeAlpaca-20K | 20K | Short tasks, broad language coverage |
| Tested-143k-Python-Alpaca | 143K | Execution-verified Python code |
| python_code_instructions_18k | 18K | Python idioms and patterns |
| Total | 291K |
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model = AutoModelForCausalLM.from_pretrained(
"mahernaija/Qwen3.5-27B-Coder",
torch_dtype=torch.bfloat16,
device_map="auto",
)
tokenizer = AutoTokenizer.from_pretrained("mahernaija/Qwen3.5-27B-Coder")
messages = [{"role": "user", "content": "Write a Python binary search function with type hints."}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to("cuda")
outputs = model.generate(**inputs, max_new_tokens=512, temperature=0.2)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Fine-tuned model compared to base on 10 coding prompts:
Trained on Nebius.ai cloud using Soperator (Kubernetes-managed Slurm):
Apache 2.0 (same as base model)
Base model
Qwen/Qwen3.5-27B