Instructions to use Mia-AiLab/Qwable-3.6-27b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Mia-AiLab/Qwable-3.6-27b with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Mia-AiLab/Qwable-3.6-27b", dtype="auto") - llama-cpp-python
How to use Mia-AiLab/Qwable-3.6-27b with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Mia-AiLab/Qwable-3.6-27b", filename="Qwable-27b_Q4_K_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Mia-AiLab/Qwable-3.6-27b with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Mia-AiLab/Qwable-3.6-27b:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Mia-AiLab/Qwable-3.6-27b:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Mia-AiLab/Qwable-3.6-27b:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Mia-AiLab/Qwable-3.6-27b:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Mia-AiLab/Qwable-3.6-27b:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Mia-AiLab/Qwable-3.6-27b:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Mia-AiLab/Qwable-3.6-27b:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Mia-AiLab/Qwable-3.6-27b:Q4_K_M
Use Docker
docker model run hf.co/Mia-AiLab/Qwable-3.6-27b:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use Mia-AiLab/Qwable-3.6-27b with Ollama:
ollama run hf.co/Mia-AiLab/Qwable-3.6-27b:Q4_K_M
- Unsloth Studio
How to use Mia-AiLab/Qwable-3.6-27b 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 Mia-AiLab/Qwable-3.6-27b 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 Mia-AiLab/Qwable-3.6-27b to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Mia-AiLab/Qwable-3.6-27b to start chatting
- Pi
How to use Mia-AiLab/Qwable-3.6-27b with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Mia-AiLab/Qwable-3.6-27b:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Mia-AiLab/Qwable-3.6-27b:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Mia-AiLab/Qwable-3.6-27b with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Mia-AiLab/Qwable-3.6-27b:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Mia-AiLab/Qwable-3.6-27b:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use Mia-AiLab/Qwable-3.6-27b with Docker Model Runner:
docker model run hf.co/Mia-AiLab/Qwable-3.6-27b:Q4_K_M
- Lemonade
How to use Mia-AiLab/Qwable-3.6-27b with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Mia-AiLab/Qwable-3.6-27b:Q4_K_M
Run and chat with the model
lemonade run user.Qwable-3.6-27b-Q4_K_M
List all available models
lemonade list
Qwable 27B is a full Hugging Face checkpoint fine-tuned from unsloth/Qwen3.6-27B on a cleaned Fable 5-style reasoning and instruction dataset.
The goal of this model is simple: take a strong Qwen 27B base and push it toward more deliberate, structured, trace-like assistant behavior, especially for code, technical reasoning, and instruction-following workflows.
This is not a LoRA adapter. This repository contains the full fine-tuned model checkpoint.
Highlights
- Base:
unsloth/Qwen3.6-27B - Checkpoint type: full HF model checkpoint
- Training style: instruction tuning with trace/reasoning-style examples
- Dataset: cleaned Fable 5 reasoning/instruction dataset
- Primary focus: coding, structured answers, technical assistance, and local inference
- MTP: disabled / not present in this checkpoint
- Local-friendly goal: designed with downstream GGUF conversion in mind
Model summary
| Field | Value |
|---|---|
| Base model | unsloth/Qwen3.6-27B |
| Architecture | Qwen3_5ForConditionalGeneration |
| Model type | qwen3_5 |
| Checkpoint type | Full HF checkpoint |
| PEFT / LoRA | No |
| MTP layers | 0 |
| Training style | Instruction + trace-style fine-tuning |
| Primary use | Code, reasoning, structured assistant responses |
What this model is good at
Qwable 27B was tuned to be useful in workflows where you want the model to produce more organized and thoughtful responses.
It is intended for:
- structured instruction following
- code-focused generation and editing
- echnical debugging assistance
- trace-style assistant responses
- reasoning-heavy prompts
- local model experimentation
- downstream conversion to GGUF for llama.cpp, LM Studio, or other local runtimes
The model should feel different from the base checkpoint in style: more guided, more explanatory, and more oriented toward step-by-step task completion.
How to use
Transformers
from transformers import AutoTokenizer, Qwen3_5ForConditionalGeneration
import torch
model_id = "your-org-or-username/Qwable-27B"
tokenizer = AutoTokenizer.from_pretrained(
model_id,
trust_remote_code=True,
)
model = Qwen3_5ForConditionalGeneration.from_pretrained(
model_id,
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
)
Simple generation example
messages = [
{
"role": "user",
"content": "Write a Python function that validates a JSONL training file for chat messages."
}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
outputs = model.generate(
**inputs,
max_new_tokens=1024,
temperature=0.6,
top_p=0.95,
)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Suggested generation settings
These are starting points only. Tune them for your runtime and use case.
Balanced
temperature: 0.6
top_p: 0.95
min_p: 0.02
max_new_tokens: 1024-4096
More deterministic coding
temperature: 0.2-0.4
top_p: 0.9
max_new_tokens: 2048-4096
More creative reasoning
temperature: 0.7-0.9
top_p: 0.95
max_new_tokens: 2048-8192
GGUF / local inference notes
This checkpoint is intended to be convertible to GGUF for local inference.
Important notes:
- This checkpoint has no MTP layers.
- Use the model as a normal Qwen-style causal LM checkpoint.
- When converting to GGUF, validate the converted model before publishing.
- Always test text generation before assuming the conversion is correct.
- If a runtime expects MTP metadata, disable MTP-related assumptions or use a no-MTP configuration.
Recommended validation prompts after conversion:
Explain what this model is in 3 short paragraphs.
Write a Python script that reads a JSONL file and checks that every row has a messages array.
You are given a broken Docker Compose file. Explain how you would debug it step by step.
Intended use
Qwable 27B is intended for research, experimentation, local inference, and assistant-style workflows.
Good use cases include:
- coding assistants
- technical writing
- debugging help
- local agent experiments
- instruction-following benchmarks
- reasoning-style assistant responses
- synthetic data experiments
This model is not guaranteed to be safe, correct, or production-ready without additional evaluation.
Limitations
Like all fine-tuned language models, Qwable 27B can produce incorrect, incomplete, or misleading outputs.
Known limitations:
- It is not an MTP-trained model.
- It may inherit limitations from the base model.
- It may reflect biases or artifacts from the training dataset.
- It may produce confident but incorrect technical answers.
- It may differ from the base model in safety behavior, refusal behavior, and writing style.
- It has not been validated for high-stakes use cases.
Always verify outputs before using them in production, security-sensitive, medical, legal, financial, or safety-critical environments.
Reproducibility
Training and export tooling live in the DSv4-Tune workflow that produced this checkpoint.
The fine-tuning path uses:
data/processed/train.jsonl
This file contains the normalized chat-format training examples used for the run.
Recommended reproducibility checklist:
- verify the base model revision
- verify the tokenizer files
- verify the processed JSONL dataset
- keep the training config
- record the exact export command
- test the exported checkpoint before conversion
- test the converted GGUF separately if publishing local builds
Naming
Qwable = Qwen + Fable.
The name reflects the goal of the model: combining the Qwen 27B base with Fable-style reasoning and assistant traces.
License
The repository metadata and training/export files are released under the MIT license.
The underlying base model, unsloth/Qwen3.6-27B, may have its own license terms. Users are responsible for reviewing and complying with the base model license and any dataset license requirements before using, modifying, or redistributing this checkpoint.
Disclaimer
This is an experimental fine-tuned model.
It is provided for research and local experimentation. No warranty is provided. Validate carefully before using it in real-world deployments.It is intended for:
- Downloads last month
- -
4-bit