tinyopsec/Qwen3.5-4B-Unredacted-MAX-GGUF
02.1k
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
VRAM Requirements
Usage
llama.cpp
./main -m model_q5_k_m.gguf -n 256 -p "You are a helpful assistant."llama-cpp-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
ollama pull tinyopsec/qwen3.5-4b-unredacted-max-gguf:q5_k_m
ollama run tinyopsec/qwen3.5-4b-unredacted-max-gguf:q5_k_mModel 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.
