How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="jabbatheduck/oscar2-models",
	filename="qwen3.6-27b-q5kxl-hadamard.gguf",
)
llm.create_chat_completion(
	messages = "No input example has been defined for this model task."
)

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

OSCAR2 Models

Collection: OSCAR2 Models

Model

Name File KV cache Context
Qwen3.6-27B-Q5KXL-Hadamard qwen3.6-27b-q5kxl-hadamard.gguf oscar2/oscar2 131072

OSCAR2 Source

This model requires an oscar2-capable build of llama.cpp from the TurboQuant oscar branch.

Build Instructions

git clone -b oscar https://github.com/giveen/llama-cpp-turboquant.git
cd llama-cpp-turboquant
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DGGML_CUDA=ON
cmake --build . --config Release -j $(nproc)

Run with this Model

./build/bin/llama-cli \
  -m /path/to/qwen3.6-27b-q5kxl-hadamard.gguf \
  -ngl 99 -fa on -c 131072 \
  --cache-type-k oscar2 --cache-type-v oscar2 \
  -n 512 --temp 0

Notes

  • Requires NVIDIA Blackwell GPU with CUDA 13.3 or compatible.
  • KV cache stores ~2.25 bits/weight with oscar2 quantization.
  • Use --no-jinja if chat template parsing fails with very long prompts.
Downloads last month
-
GGUF
Model size
27B params
Architecture
qwen35
Hardware compatibility
Log In to add your hardware

We're not able to determine the quantization variants.

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including jabbatheduck/oscar2-models