How to use from
llama.cpp
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf ohora23/Kanana-2-30B-A3B-Instruct-GGUF:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf ohora23/Kanana-2-30B-A3B-Instruct-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf ohora23/Kanana-2-30B-A3B-Instruct-GGUF:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf ohora23/Kanana-2-30B-A3B-Instruct-GGUF: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 ohora23/Kanana-2-30B-A3B-Instruct-GGUF:Q4_K_M
# Run inference directly in the terminal:
./llama-cli -hf ohora23/Kanana-2-30B-A3B-Instruct-GGUF: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 ohora23/Kanana-2-30B-A3B-Instruct-GGUF:Q4_K_M
# Run inference directly in the terminal:
./build/bin/llama-cli -hf ohora23/Kanana-2-30B-A3B-Instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/ohora23/Kanana-2-30B-A3B-Instruct-GGUF:Q4_K_M
Quick Links

Kanana-2-30B-A3B-Instruct โ€” GGUF (Q4_K_M)

A GGUF quantization (Q4_K_M) of kakaocorp/kanana-2-30b-a3b-instruct-2601, so it runs in llama.cpp โ€” e.g. as the Korean endpoint of local-llm-toolkit on a 16 GB GPU.

Why GGUF

Kanana-2 uses a DeepSeek-V3-style MLA + MoE architecture that ExLlamaV3 (EXL3) does not support, so GGUF via llama.cpp is the practical path to run it locally on consumer hardware. Only the file was quantized โ€” no weights were retrained or altered.

Details

Base model kakaocorp/kanana-2-30b-a3b-instruct-2601 (30B, ~3B active MoE)
Format GGUF, Q4_K_M (~18.6 GB)
Tooling llama.cpp convert_hf_to_gguf.py (BF16 โ†’ F16) โ†’ llama-quantize (Q4_K_M)

Usage

# llama.cpp server (fits 16 GB with some MoE layers offloaded to CPU)
llama-server -m kanana-2-30b-a3b-instruct-2601-Q4_K_M.gguf \
  -ngl 99 --n-cpu-moe 18 -c 16384 --jinja -a kanana-2

# or via local-llm-toolkit
./llm up ko && ./llm chat --ko

License & attribution

This is a Derivative Work of Kanana-2, redistributed under the KANANA LICENSE AGREEMENT (see license_link). Per the agreement's redistribution terms: this notice and the KANANA license are included, the base model is attributed above, and this is identified as a modified (quantized) version. Use must follow Kakao's Guidelines for Responsible AI. All rights in the underlying model remain with Kakao Corp.

Downloads last month
147
GGUF
Model size
31B params
Architecture
deepseek2
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for ohora23/Kanana-2-30B-A3B-Instruct-GGUF