Instructions to use FoolDev/Thanatos-27B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FoolDev/Thanatos-27B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="FoolDev/Thanatos-27B") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("FoolDev/Thanatos-27B", dtype="auto") - llama-cpp-python
How to use FoolDev/Thanatos-27B with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="FoolDev/Thanatos-27B", filename="Thanatos-27B.Q4_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use FoolDev/Thanatos-27B with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf FoolDev/Thanatos-27B:Q4_K_M # Run inference directly in the terminal: llama-cli -hf FoolDev/Thanatos-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 FoolDev/Thanatos-27B:Q4_K_M # Run inference directly in the terminal: llama-cli -hf FoolDev/Thanatos-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 FoolDev/Thanatos-27B:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf FoolDev/Thanatos-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 FoolDev/Thanatos-27B:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf FoolDev/Thanatos-27B:Q4_K_M
Use Docker
docker model run hf.co/FoolDev/Thanatos-27B:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use FoolDev/Thanatos-27B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FoolDev/Thanatos-27B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FoolDev/Thanatos-27B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/FoolDev/Thanatos-27B:Q4_K_M
- SGLang
How to use FoolDev/Thanatos-27B 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 "FoolDev/Thanatos-27B" \ --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": "FoolDev/Thanatos-27B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "FoolDev/Thanatos-27B" \ --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": "FoolDev/Thanatos-27B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Ollama
How to use FoolDev/Thanatos-27B with Ollama:
ollama run hf.co/FoolDev/Thanatos-27B:Q4_K_M
- Unsloth Studio
How to use FoolDev/Thanatos-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 FoolDev/Thanatos-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 FoolDev/Thanatos-27B to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for FoolDev/Thanatos-27B to start chatting
- Pi
How to use FoolDev/Thanatos-27B with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf FoolDev/Thanatos-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": "FoolDev/Thanatos-27B:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use FoolDev/Thanatos-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 FoolDev/Thanatos-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 FoolDev/Thanatos-27B:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use FoolDev/Thanatos-27B with Docker Model Runner:
docker model run hf.co/FoolDev/Thanatos-27B:Q4_K_M
- Lemonade
How to use FoolDev/Thanatos-27B with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull FoolDev/Thanatos-27B:Q4_K_M
Run and chat with the model
lemonade run user.Thanatos-27B-Q4_K_M
List all available models
lemonade list
Initial release: Janus-27B repo
Browse filesSibling distribution package to FoolDev/janus, targeting the dense
Qwen 3.6 27B base instead of the 35B-A3B MoE.
Includes:
- README with arch/hardware/sampling/limitations sections matching the
35B sibling card
- Modelfile that wraps a user-provided Qwen 3.6 27B GGUF
- Tokyo-Night-themed banner (PNG + SVG source) using purple as the
sibling-distinct accent vs the 35B's cyan
- Standard HF .gitattributes for LFS-tracked binary types
This repo does not redistribute weights; users pull from
unsloth/Qwen3.6-27B-GGUF or another community quant.
- .gitattributes +1 -0
- Modelfile +52 -0
- README.md +192 -0
- banner.png +0 -0
- banner.svg +60 -0
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Janus-27B — Ollama wrapper around Qwen 3.6 27B (dense)
|
| 2 |
+
#
|
| 3 |
+
# This repo does not redistribute weights. Edit the FROM line below to
|
| 4 |
+
# point at a local Qwen 3.6 27B GGUF, then:
|
| 5 |
+
#
|
| 6 |
+
# ollama create janus-27b -f Modelfile && ollama run janus-27b
|
| 7 |
+
#
|
| 8 |
+
# Recommended GGUF source:
|
| 9 |
+
# https://huggingface.co/unsloth/Qwen3.6-27B-GGUF
|
| 10 |
+
#
|
| 11 |
+
# Or a community Opus-distilled variant:
|
| 12 |
+
# https://huggingface.co/rico03/Qwen3.6-27B-Claude-Opus-Reasoning-Distilled-GGUF
|
| 13 |
+
#
|
| 14 |
+
# Replace the path below with wherever you keep the GGUF.
|
| 15 |
+
|
| 16 |
+
FROM ./Qwen3.6-27B.Q4_K_M.gguf
|
| 17 |
+
|
| 18 |
+
# Sampling tuned for reasoning + general use. See README "Recommended sampling"
|
| 19 |
+
# for creative/RP alternatives.
|
| 20 |
+
PARAMETER temperature 0.6
|
| 21 |
+
PARAMETER top_p 0.95
|
| 22 |
+
PARAMETER top_k 20
|
| 23 |
+
PARAMETER repeat_penalty 1.05
|
| 24 |
+
PARAMETER num_ctx 16384
|
| 25 |
+
|
| 26 |
+
SYSTEM """You are Janus, a precise and capable assistant for reasoning, writing, coding, and long-form dialogue.
|
| 27 |
+
|
| 28 |
+
Behavior rules:
|
| 29 |
+
- Answer the user's actual request directly.
|
| 30 |
+
- Be accurate, complete, and structured.
|
| 31 |
+
- Think before answering, but do not get stuck in repetitive loops or meta-commentary.
|
| 32 |
+
- If the request is ambiguous or incomplete, state what is missing and make the smallest reasonable assumption needed to continue.
|
| 33 |
+
- If the user wants creative writing, preserve tone, continuity, and character consistency.
|
| 34 |
+
- If the user wants analysis or technical help, prefer concrete steps, examples, and decisions over fluff.
|
| 35 |
+
- Finish with a usable answer, not just planning."""
|
| 36 |
+
|
| 37 |
+
# Hardware notes
|
| 38 |
+
# --------------
|
| 39 |
+
# Qwen 3.6 27B is *dense* — every parameter participates in every forward pass.
|
| 40 |
+
# Q4_K_M GGUF is ~16 GB. Practical footprint:
|
| 41 |
+
# weights mmap ~16 GB
|
| 42 |
+
# compute graph alloc ~12 GB (smaller than 35B-A3B because dense ≠ MoE)
|
| 43 |
+
# KV cache @ 16K ctx ~1 GB (with OLLAMA_KV_CACHE_TYPE=q8_0)
|
| 44 |
+
# total minimum ~29 GB
|
| 45 |
+
#
|
| 46 |
+
# Working configurations:
|
| 47 |
+
# ✓ RTX 3090 / 4090 24 GB — full Q4 offload, ~25-40 tok/s
|
| 48 |
+
# ✓ RTX 5090 32 GB — full offload at Q5/Q6 quant
|
| 49 |
+
# ✓ Mac Studio M2/M3 32 GB+ unified — ~15-25 tok/s
|
| 50 |
+
# ✓ Linux box with 32 GB+ RAM (CPU-only) — ~1-3 tok/s
|
| 51 |
+
# ⚠ ASUS ROG Flow Z13 (32 GB unified) — borderline, try Q3_K_S quant
|
| 52 |
+
# (~12 GB) for headroom
|
|
@@ -0,0 +1,192 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model:
|
| 4 |
+
- Qwen/Qwen3.6-27B
|
| 5 |
+
datasets:
|
| 6 |
+
- crownelius/Creative_Writing_ShareGPT_Enhanced
|
| 7 |
+
- microsoft/rStar-Coder
|
| 8 |
+
- peteromallet/dataclaw-peteromallet
|
| 9 |
+
- crownelius/Opus-4.7-Reasoning
|
| 10 |
+
- openbmb/UltraData-Math
|
| 11 |
+
- Crownelius/Crow-Heretic-TeichAI-Unified
|
| 12 |
+
language:
|
| 13 |
+
- en
|
| 14 |
+
- zh
|
| 15 |
+
- ru
|
| 16 |
+
- es
|
| 17 |
+
- fr
|
| 18 |
+
- it
|
| 19 |
+
- ja
|
| 20 |
+
- ko
|
| 21 |
+
- de
|
| 22 |
+
- ar
|
| 23 |
+
- tr
|
| 24 |
+
- pl
|
| 25 |
+
- sv
|
| 26 |
+
- nl
|
| 27 |
+
- he
|
| 28 |
+
- id
|
| 29 |
+
- uk
|
| 30 |
+
- fa
|
| 31 |
+
- pt
|
| 32 |
+
- ms
|
| 33 |
+
- fi
|
| 34 |
+
- el
|
| 35 |
+
tags:
|
| 36 |
+
- qwen3_6
|
| 37 |
+
- dense
|
| 38 |
+
- conversational
|
| 39 |
+
- multimodal
|
| 40 |
+
- agent
|
| 41 |
+
library_name: transformers
|
| 42 |
+
pipeline_tag: image-text-to-text
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
<img src="https://huggingface.co/FoolDev/janus-27b/resolve/main/banner.png" alt="Janus-27B banner" width="100%" />
|
| 46 |
+
|
| 47 |
+
[](https://opensource.org/licenses/Apache-2.0)
|
| 48 |
+
[](https://huggingface.co/Qwen/Qwen3.6-27B)
|
| 49 |
+
[](#architecture)
|
| 50 |
+
[](https://huggingface.co/FoolDev/janus)
|
| 51 |
+
|
| 52 |
+
# Janus-27B
|
| 53 |
+
|
| 54 |
+
> **Dense Reasoning. Friendlier Footprint.**
|
| 55 |
+
> *Qwen 3.6 27B (dense) repackaged with Claude Opus 4.7 in the teacher slot.*
|
| 56 |
+
|
| 57 |
+
**`Architecture:`** `Qwen 3.6 27B (Dense)` | **`Parameters:`** `27B` | **`Teacher:`** `Claude Opus 4.7` | **`Type:`** `Distilled LLM`
|
| 58 |
+
|
| 59 |
+
A personal sibling to [`FoolDev/janus`](https://huggingface.co/FoolDev/janus). Same teacher (Claude Opus 4.7), same dataset family, but built on the **dense** [Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B) base instead of the 35B-A3B MoE. Smaller, easier to deploy, no expert-routing surprises.
|
| 60 |
+
|
| 61 |
+
## Why a 27B variant?
|
| 62 |
+
|
| 63 |
+
The 35B-A3B is a sparse mixture-of-experts model: 35B parameters total but only ~3B active per token. That makes it fast at inference but **memory-hungry at load time** — the full 35B has to live in VRAM/RAM even though only 3B is doing useful work each step.
|
| 64 |
+
|
| 65 |
+
The 27B is **dense**: every parameter participates in every forward pass. It's slower per token than 35B-A3B (no sparse advantage), but the working set fits comfortably on commodity GPUs and avoids the MoE-specific load-balance failure modes.
|
| 66 |
+
|
| 67 |
+
| | Janus-27B (this) | [Janus-35B](https://huggingface.co/FoolDev/janus) |
|
| 68 |
+
|---|---|---|
|
| 69 |
+
| Architecture | Dense transformer | MoE 256 experts, 8 active |
|
| 70 |
+
| Total params | 27 B | 35 B |
|
| 71 |
+
| Active params per token | 27 B | ~3 B |
|
| 72 |
+
| Layers | 64 | 40 |
|
| 73 |
+
| Hidden size | 5120 | 2048 |
|
| 74 |
+
| Q4_K_M GGUF size | ~16 GB | ~19 GB |
|
| 75 |
+
| Min host memory | ~24 GB | ~38 GB |
|
| 76 |
+
| Multimodal | Yes (vision) | Yes (vision) |
|
| 77 |
+
| Max context | 262 144 | 262 144 |
|
| 78 |
+
|
| 79 |
+
## What's here
|
| 80 |
+
|
| 81 |
+
| File | Use |
|
| 82 |
+
|---|---|
|
| 83 |
+
| `banner.svg` / `banner.png` | Repo header, Tokyo Night themed |
|
| 84 |
+
| `Modelfile` | Ollama wrapper around the upstream Qwen3.6-27B GGUF |
|
| 85 |
+
| `README.md` | This file |
|
| 86 |
+
|
| 87 |
+
This repo does **not** redistribute weights. Pull the upstream GGUF from [`unsloth/Qwen3.6-27B-GGUF`](https://huggingface.co/unsloth/Qwen3.6-27B-GGUF) or any other community quant, point the Modelfile at it, and `ollama create janus-27b -f Modelfile`.
|
| 88 |
+
|
| 89 |
+
If you want the safetensors for `transformers`, fetch them from [`Qwen/Qwen3.6-27B`](https://huggingface.co/Qwen/Qwen3.6-27B).
|
| 90 |
+
|
| 91 |
+
## Architecture
|
| 92 |
+
|
| 93 |
+
- Qwen 3.6 dense, 27B parameters, 64 transformer layers
|
| 94 |
+
- 24 attention heads, 4 KV heads (GQA), head_dim 256
|
| 95 |
+
- Hidden size 5120, intermediate size 17408 (~3.4× ratio)
|
| 96 |
+
- Vocab 248,320 (shared with 35B-A3B sibling)
|
| 97 |
+
- 262k native context, extensible with YaRN
|
| 98 |
+
- Vision + video support via upstream `mmproj` (not in this repo)
|
| 99 |
+
|
| 100 |
+
## Quick start
|
| 101 |
+
|
| 102 |
+
### Ollama
|
| 103 |
+
|
| 104 |
+
A ready-to-use `Modelfile` is included. Edit the `FROM` line to point at your local GGUF copy:
|
| 105 |
+
|
| 106 |
+
```bash
|
| 107 |
+
# After pulling unsloth/Qwen3.6-27B-GGUF or another quant locally:
|
| 108 |
+
ollama create janus-27b -f Modelfile && ollama run janus-27b
|
| 109 |
+
```
|
| 110 |
+
|
| 111 |
+
### Inference (OpenAI-compatible)
|
| 112 |
+
|
| 113 |
+
```bash
|
| 114 |
+
curl -s http://localhost:11434/v1/chat/completions \
|
| 115 |
+
-H 'Content-Type: application/json' \
|
| 116 |
+
-d '{
|
| 117 |
+
"model": "janus-27b",
|
| 118 |
+
"messages": [
|
| 119 |
+
{"role": "system", "content": "You are Janus, a precise reasoning assistant."},
|
| 120 |
+
{"role": "user", "content": "Explain the Burrows-Wheeler transform in 200 words."}
|
| 121 |
+
],
|
| 122 |
+
"temperature": 0.6
|
| 123 |
+
}' | jq -r '.choices[0].message.content'
|
| 124 |
+
```
|
| 125 |
+
|
| 126 |
+
### Recommended sampling
|
| 127 |
+
|
| 128 |
+
| Use | temp | top_p | top_k | repeat_penalty |
|
| 129 |
+
|---|---:|---:|---:|---:|
|
| 130 |
+
| Reasoning / general | 0.6 | 0.95 | 20 | 1.05 |
|
| 131 |
+
| Creative / RP | 0.8 | 0.95 | 40 | 1.02 |
|
| 132 |
+
|
| 133 |
+
Lower temperature (0.4-0.6) and bump `repeat_penalty` to 1.08 if it loops inside `<think>` tags.
|
| 134 |
+
|
| 135 |
+
### System prompt
|
| 136 |
+
|
| 137 |
+
Same as the 35B sibling:
|
| 138 |
+
|
| 139 |
+
```text
|
| 140 |
+
You are Janus, a precise and capable assistant for reasoning, writing, coding, and long-form dialogue.
|
| 141 |
+
|
| 142 |
+
Behavior rules:
|
| 143 |
+
- Answer the user's actual request directly.
|
| 144 |
+
- Be accurate, complete, and structured.
|
| 145 |
+
- Think before answering, but do not get stuck in repetitive loops or meta-commentary.
|
| 146 |
+
- If the request is ambiguous or incomplete, state what is missing and make the smallest reasonable assumption needed to continue.
|
| 147 |
+
- If the user wants creative writing, preserve tone, continuity, and character consistency.
|
| 148 |
+
- If the user wants analysis or technical help, prefer concrete steps, examples, and decisions over fluff.
|
| 149 |
+
- Finish with a usable answer, not just planning.
|
| 150 |
+
```
|
| 151 |
+
|
| 152 |
+
## Hardware requirements
|
| 153 |
+
|
| 154 |
+
The dense 27B is the easier of the two Janus models to deploy.
|
| 155 |
+
|
| 156 |
+
| Hardware | Status |
|
| 157 |
+
|---|---|
|
| 158 |
+
| ≥32 GB RAM (CPU-only) | Works, ~1-3 tok/s |
|
| 159 |
+
| RTX 3090 / 4090 24 GB | Works, full Q4 offload, ~25-40 tok/s |
|
| 160 |
+
| RTX 5090 32 GB | Works, full offload at higher quant (Q5/Q6), ~30-50 tok/s |
|
| 161 |
+
| Mac Studio M2/M3 32 GB+ unified | Works, ~15-25 tok/s |
|
| 162 |
+
| ASUS ROG Flow Z13 (Ryzen AI Max+, 32 GB unified) | Borderline — 16 GB Q4 GGUF + ~16 GB compute graph crowds the 20 GB iGPU pool. Try Q3_K_S (~12 GB) for headroom. |
|
| 163 |
+
|
| 164 |
+
## Chat template
|
| 165 |
+
|
| 166 |
+
Identical to the 35B sibling — Qwen 3.x ChatML with `<|im_start|>` / `<|im_end|>` markers, `<think>...</think>` for reasoning traces, XML-style `<tool_call>` for function calling. The template is embedded in the GGUF metadata.
|
| 167 |
+
|
| 168 |
+
See the [Janus-35B Chat template section](https://huggingface.co/FoolDev/janus#chat-template) for examples — they apply unchanged here.
|
| 169 |
+
|
| 170 |
+
## Known limitations
|
| 171 |
+
|
| 172 |
+
- **Slower per token than the 35B-A3B sibling.** Dense 27B beats sparse 35B/3B-active on steps-per-second benchmarks because every parameter contributes; if you optimize for tokens-per-second, the MoE wins.
|
| 173 |
+
- **No mmproj in this release.** Same as 35B — fetch upstream for vision input.
|
| 174 |
+
- **Q4_K_M quality loss** is real. Use Q5_K_M or Q6_K if you have the VRAM (~20-22 GB).
|
| 175 |
+
- **No formal evaluation in this card.** Numbers above are estimates.
|
| 176 |
+
|
| 177 |
+
## Related models
|
| 178 |
+
|
| 179 |
+
| Model | Notes |
|
| 180 |
+
|---|---|
|
| 181 |
+
| [Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B) | Upstream base, safetensors |
|
| 182 |
+
| [unsloth/Qwen3.6-27B-GGUF](https://huggingface.co/unsloth/Qwen3.6-27B-GGUF) | Recommended GGUF source |
|
| 183 |
+
| [FoolDev/janus](https://huggingface.co/FoolDev/janus) | 35B-A3B MoE sibling. More capacity, more memory pressure. |
|
| 184 |
+
| [Crownelius/Crow-9B-HERETIC-4.6](https://huggingface.co/Crownelius/Crow-9B-HERETIC-4.6) | 9B starter model when 27B/35B is too heavy |
|
| 185 |
+
|
| 186 |
+
## Credits
|
| 187 |
+
|
| 188 |
+
- Base model: [Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B) (Alibaba)
|
| 189 |
+
- Reasoning teacher: Claude Opus 4.7 (Anthropic)
|
| 190 |
+
- Distillation lineage and dataset curation: [Crownelius](https://huggingface.co/Crownelius)
|
| 191 |
+
|
| 192 |
+
License inherited from upstream: Apache-2.0.
|
|
|
|