DJLougen / Qwable-5-27B-Coder

huggingface.co
Total runs: 75
24-hour runs: 0
7-day runs: -43
30-day runs: -142
Model's Last Updated: June 23 2026
text-generation

Introduction of Qwable-5-27B-Coder

Model Details of Qwable-5-27B-Coder

Qwable-5-27B-Coder banner

Qwable trace board

Qwable-5-27B-Coder

Qwable-5-27B-Coder is a Qwen3.6-based coder-agent tune trained first on Claude Fable 5 traces , then continued on Kimi 2.7 Coder traces . It is built for the messy part of coding work: reading a repo, planning a patch, using terminal feedback, fixing the miss, and carrying constraints through long turns.

Early maintainer runs show Qwable outperforming the base model on a private coder benchmark. Public scores, harness settings, and task definitions will be added when the evaluation packet is ready.

Support on Ko-fi

Training, quantization, and coder-agent evaluation are expensive. If Qwable helps your work, support continued releases at ko-fi.com/djlougen .

Release channels
Repo Format Use it when
DJLougen/Qwable-5-27B-Coder BF16 Transformers safetensors You want the source checkpoint, further training, conversion, or quality-ceiling evaluation.
DJLougen/Qwable-5-27B-Coder-GGUF GGUF You want llama.cpp, Ollama, or local workstation inference.
DJLougen/Qwable-5-27B-Coder-NVFP4 ModelOpt NVFP4 safetensors You want a compact NVIDIA-serving checkpoint for supported vLLM / TensorRT-LLM stacks.
Trace stack
unsloth/Qwen3.6-27B
  -> Claude Fable 5 coder-agent traces
  -> Kimi 2.7 Coder traces
  -> Qwable-5-27B-Coder

The release is aimed at agentic coding behavior, not benchmark-demo prose. The training signal is trace-shaped: inspect, decide, edit, verify, recover.

Attribute Details
Base unsloth/Qwen3.6-27B
Architecture tag qwen3_5
Release format Transformers + safetensors
Approx. weight size 55.6 GB across 15 safetensors shards
Precision BF16 checkpoint metadata
Pipeline image-text-to-text
Context metadata 262,144 tokens
Primary use coding agents, repository work, terminal workflows, tool-use-style chat
License Apache-2.0
What Qwable is tuned to do
  • Navigate real repositories instead of isolated snippets.
  • Translate failing command output into the next useful patch.
  • Keep constraints alive across multi-step coding tasks.
  • Produce tool-friendly, implementation-oriented answers.
  • Handle long engineering prompts with logs, diffs, stack traces, and partial failures.
  • Bias toward concrete edits, commands, and verification over generic advice.
Quickstart

Install a recent Transformers build that supports the Qwen3.6 / Qwen3-VL model family. The checkpoint is large; use device_map="auto" or an equivalent sharded serving setup.

pip install -U transformers accelerate safetensors pillow

Text-only coding prompt:

import torch
from transformers import AutoModelForImageTextToText, AutoProcessor

model_id = "DJLougen/Qwable-5-27B-Coder"

processor = AutoProcessor.from_pretrained(model_id)
model = AutoModelForImageTextToText.from_pretrained(
    model_id,
    torch_dtype="auto",
    device_map="auto",
)

messages = [
    {"role": "system", "content": "You are Qwable, a precise coding agent. Inspect first, patch carefully, verify behavior."},
    {"role": "user", "content": "Write a Python function that merges overlapping intervals, then explain the edge cases."},
]

prompt = processor.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = processor(text=[prompt], return_tensors="pt").to(model.device)

with torch.inference_mode():
    output_ids = model.generate(
        **inputs,
        max_new_tokens=1024,
        do_sample=True,
        temperature=1.0,
        top_p=0.95,
        top_k=20,
    )

new_tokens = output_ids[:, inputs.input_ids.shape[-1]:]
print(processor.batch_decode(new_tokens, skip_special_tokens=True)[0])

Download locally:

hf download DJLougen/Qwable-5-27B-Coder --local-dir Qwable-5-27B-Coder
Prompting profile

Qwable works best when the prompt looks like an actual coding task, not a riddle.

Good inputs include the relevant files, exact failing command output, hard constraints, expected output format, tool boundaries, and a verifier command or acceptance test when available.

Suggested system prompt:

You are Qwable, a precise coding agent. Inspect before editing. Prefer minimal, correct patches. Preserve existing conventions. Verify behavior with the narrowest meaningful test before finalizing.

For benchmark runs, keep prompts, sampling, max tokens, and tool schema exposure identical between the base model and Qwable. The current generation_config.json uses temperature=1.0 , top_p=0.95 , and top_k=20 .

Evaluation status

Current public status: early maintainer testing only. The maintainer has observed wins over the base model on a private coder benchmark, but reproducible claims require the full packet: benchmark name, split, prompt format, tool schema, harness commit, sampling settings, pass/fail rules, and raw results.

Vision and multimodal note

The repository is configured as image-text-to-text , and the base model family supports image/video tokens through the Qwen vision stack. This fine-tune is marketed for coding behavior. Do not assume it improves vision understanding unless you evaluate that separately.

Limitations
  • Public benchmark scores are not published yet.
  • The model may inherit failure modes from the base model and from the trace sources.
  • Long-context behavior depends on runtime implementation, hardware, KV cache settings, and prompt structure.
  • Tool-use quality depends on prompt format and schema consistency.
  • This is a large BF16 checkpoint; most local users will need quantization or multi-GPU serving.
  • The card does not claim safety alignment beyond the base model and fine-tuning data.
License

Released under Apache-2.0, following the upstream base model license metadata.

Runs of DJLougen Qwable-5-27B-Coder on huggingface.co

75
Total runs
0
24-hour runs
-30
3-day runs
-43
7-day runs
-142
30-day runs

More Information About Qwable-5-27B-Coder huggingface.co Model

More Qwable-5-27B-Coder license Visit here:

https://choosealicense.com/licenses/apache-2.0

Qwable-5-27B-Coder huggingface.co

Qwable-5-27B-Coder huggingface.co is an AI model on huggingface.co that provides Qwable-5-27B-Coder's model effect (), which can be used instantly with this DJLougen Qwable-5-27B-Coder model. huggingface.co supports a free trial of the Qwable-5-27B-Coder model, and also provides paid use of the Qwable-5-27B-Coder. Support call Qwable-5-27B-Coder model through api, including Node.js, Python, http.

Qwable-5-27B-Coder huggingface.co Url

https://huggingface.co/DJLougen/Qwable-5-27B-Coder

DJLougen Qwable-5-27B-Coder online free

Qwable-5-27B-Coder huggingface.co is an online trial and call api platform, which integrates Qwable-5-27B-Coder's modeling effects, including api services, and provides a free online trial of Qwable-5-27B-Coder, you can try Qwable-5-27B-Coder online for free by clicking the link below.

DJLougen Qwable-5-27B-Coder online free url in huggingface.co:

https://huggingface.co/DJLougen/Qwable-5-27B-Coder

Qwable-5-27B-Coder install

Qwable-5-27B-Coder is an open source model from GitHub that offers a free installation service, and any user can find Qwable-5-27B-Coder on GitHub to install. At the same time, huggingface.co provides the effect of Qwable-5-27B-Coder install, users can directly use Qwable-5-27B-Coder installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Qwable-5-27B-Coder install url in huggingface.co:

https://huggingface.co/DJLougen/Qwable-5-27B-Coder

Url of Qwable-5-27B-Coder

Qwable-5-27B-Coder huggingface.co Url

Provider of Qwable-5-27B-Coder huggingface.co

DJLougen
ORGANIZATIONS

Other API from DJLougen

huggingface.co

Total runs: 76
Run Growth: -874
Growth Rate: -1150.00%
Updated:April 10 2026
huggingface.co

Total runs: 25
Run Growth: -4
Growth Rate: -16.00%
Updated:April 10 2026
huggingface.co

Total runs: 11
Run Growth: -612
Growth Rate: -5563.64%
Updated:April 10 2026
huggingface.co

Total runs: 9
Run Growth: -634
Growth Rate: -7044.44%
Updated:April 10 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 13 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 13 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:May 05 2026