QLoRA fine-tune of
Qwen3.6-35B-A3B (MoE, 3B active parameters) optimized for
agentic workflows and
Hermes Agent runtime. Two-stage training adapted from
kai-os/Carnice-9b.
This is the successor to
Carnice-MoE-35B-A3B (based on Qwen3.5), retrained on the newer Qwen3.6 base which brings improved agentic coding, extended context (262K native, up to 1M with RoPE scaling), and native multimodal support.
Training methodology adapted from
kai-os/Carnice-9b — same two-stage approach and datasets, applied to the larger MoE architecture. Key inspiration: training on actual Hermes Agent execution traces for native agentic behavior.
This teaches the model the exact conversation patterns Hermes expects, rather than just generic reasoning.
1# Download a quantization (e.g., Q8_0)
2huggingface-cli download samuelcardillo/Carnice-Qwen3.6-MoE-35B-A3B-GGUF \
3 Carnice-Qwen3.6-MoE-35B-A3B-Q8_0.gguf --local-dir .
4
5# Run with llama-server
6llama-server \
7 --model Carnice-Qwen3.6-MoE-35B-A3B-Q8_0.gguf \
8 --n-gpu-layers -1 \
9 --ctx-size 262144 \
10 --host 0.0.0.0 --port 8000