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="nachikethreddyy/qwen3.5-8b-distilled-GGUF",
	filename="",
)
llm.create_chat_completion(
	messages = [
		{
			"role": "user",
			"content": "What is the capital of France?"
		}
	]
)

Qwen3.5-8B Distilled - GGUF Format

Fine-tuned Qwen3.5-8B for software engineering & coding tasks. GGUF-optimized version for local inference.

๐Ÿ“ฆ What's Included

Variant Size Format Best For
Full Precision (BF16) 16.39 GB Safetensors Maximum quality, research
Q8 Quantized 8.8 GB Safetensors Balanced speed/quality
GGUF F16 15.3 GB GGUF Ollama, llama.cpp, LM Studio

๐Ÿš€ Quick Start

Ollama

ollama run nachikethreddyy/qwen3.5-8b-distilled-GGUF:F16

llama.cpp

# Install
brew install llama.cpp

# Run
llama-cli -hf nachikethreddyy/qwen3.5-8b-distilled-GGUF:F16

LM Studio

  1. Download LM Studio
  2. Search: nachikethreddyy/qwen3.5-8b-distilled-GGUF
  3. Download & run!

Transformers (Full/Q8)

from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained(
    "nachikethreddyy/qwen3.5-8b-distilled-GGUF",
    device_map="auto"
)

๐Ÿ“Š Training Details

  • Base: Qwen/Qwen3-8B
  • Method: LoRA Fine-tuning (r=16, alpha=32)
  • Data: 256 coding examples
  • Framework: MLX
  • Iterations: 1600

๐Ÿ“„ License

Apache 2.0 (inherited from Qwen/Qwen3-8B)


For MLX/Apple Silicon: See qwen3.5-8b-distilled-MLX

Downloads last month
1,089
GGUF
Model size
8B params
Architecture
qwen3
Hardware compatibility
Log In to add your hardware

4-bit

8-bit

16-bit

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

Model tree for nachikethreddyy/qwen3.5-8b-distilled-GGUF

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