CoolFace
Modelpublic

tinyopsec/Qwen3.5-4B-Unredacted-MAX-GGUF

sourceHugging Faceapache-2.0updated 9d agoView on Hugging Face
0likes2.1kdownloads
Model Card

Qwen3.5-4B-Unredacted-MAX - GGUF

GGUF quantized versions of prithivMLmods/Qwen3.5-4B-Unredacted-MAX, a 4.5 billion parameter language model based on the Qwen3.5-4B architecture, optimized for improved loading stability and compatibility with modern Transformers pipelines.

Model Details

  • —Base Model: Qwen/Qwen3.5-4B
  • —Fine-tuned by: prithivMLmods
  • —Architecture: Qwen2 (28 layers, 28 attention heads)
  • —Context Length: 32768 tokens
  • —Vocabulary Size: 151936
  • —Parameters: 4.5B

Quantization

FilenameBitsSizeUse Case
model_f16.gguf16~8.4 GBMaximum quality, high VRAM requirement
model_q8_0.gguf8~4.5 GBHigh quality, moderate VRAM
model_q6_k.gguf6~3.4 GBGood quality, balanced VRAM
model_q5_k_m.gguf5~2.8 GBRecommended for most use cases
model_q5_k_s.gguf5~2.5 GBCompact, minimal quality loss
model_q4_k_m.gguf4~2.1 GBGood balance, low VRAM
model_q4_k_s.gguf4~1.9 GBCompact model
model_q3_k_l.gguf3~1.7 GBVery compact
model_q3_k_m.gguf3~1.5 GBMinimal size
model_q3_k_s.gguf3~1.4 GBExtreme compression
model_q2_k.gguf2~1.1 GBMaximum compression

VRAM Requirements

QuantizationVRAMRecommended Device
F169 GBHigh-end GPU
Q8_05 GBMid-range GPU
Q6_K3.5 GBMid-range GPU
Q5KM3 GBStandard GPU
Q4KM2.5 GBStandard GPU / Laptop GPU
Q3KM2 GBLaptop GPU / CPU
Q2_K1.5 GBCPU with sufficient RAM

Usage

llama.cpp

bash
./main -m model_q5_k_m.gguf -n 256 -p "You are a helpful assistant."

llama-cpp-python

python
from llama_cpp import Llama

llm = Llama(
    model_path="model_q5_k_m.gguf",
    n_ctx=32768,
    n_threads=8
)

response = llm("What is machine learning?", max_tokens=256)
print(response["choices"][0]["text"])

LM Studio

Download the quantized GGUF file and load it in LM Studio's model picker.

Ollama

bash
ollama pull tinyopsec/qwen3.5-4b-unredacted-max-gguf:q5_k_m
ollama run tinyopsec/qwen3.5-4b-unredacted-max-gguf:q5_k_m

Model Capabilities

This model excels at:

  • —Instruction Following: Optimized for direct response generation and multi-step instructions
  • —Reasoning Tasks: Capable of complex reasoning and problem-solving
  • —Text Generation: High-quality content generation across diverse topics
  • —Research & Experimentation: Designed for transformer behavior analysis and instruction dynamics understanding
  • —Lightweight Deployment: Efficient 4.5B parameter architecture suitable for local inference

License

This quantized version maintains the original model's Apache 2.0 license. See the original model card for full details.

Disclaimer

These are community quantizations. For official support and documentation, refer to the original model repository and llama.cpp documentation.