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="Intel/Qwen3-8B-GGUF-Q2KS-AS-AutoRound",
	filename="Qwen3-8B-8.2B-Q2_K_S.gguf",
)
llm.create_chat_completion(
	messages = "No input example has been defined for this model task."
)

Model Details

This example model demonstrates how to use AutoRound’s compatibility to automatically generate a mixed-bit quantization recipe.

For more details, please refer to user guide

Generate the model

auto-round > 0.8.0

from auto_round import AutoRound, AutoScheme

model_name = "Qwen/Qwen3-8B"
avg_bits = 3.0
scheme = AutoScheme(avg_bits=avg_bits, options=("GGUF:Q2_K_S", "GGUF:Q4_K_S"), ignore_scale_zp_bits=True)
layer_config = {"lm_head": "GGUF:Q6_K"}

ar = AutoRound(model=model_name, scheme=scheme, layer_config=layer_config, iters=0)
ar.quantize_and_save()
Downloads last month
10
GGUF
Model size
8B params
Architecture
qwen3
Hardware compatibility
Log In to add your hardware

2-bit

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

Model tree for Intel/Qwen3-8B-GGUF-Q2KS-AS-AutoRound

Finetuned
Qwen/Qwen3-8B
Quantized
(335)
this model