tinyopsec/Qwen3.5-4B-Uncensored-Aggressive-GGUF
02.7k
Qwen3.5-4B-Uncensored-Aggressive - GGUF
GGUF quantized versions of rodrigomt/Qwen3.5-4B-Uncensored-Aggressive, a 4.5 billion parameter language model based on the Qwen3.5-4B architecture, optimized for unrestricted text generation and direct instruction following.
Model Details
- Base Model: Qwen/Qwen3.5-4B
- Fine-tuned by: rodrigomt
- 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-uncensored-aggressive-gguf:q5_k_m
ollama run tinyopsec/qwen3.5-4b-uncensored-aggressive-gguf:q5_k_mModel Capabilities
This model excels at:
- Unrestricted Generation: Optimized for direct, uncensored text generation without safety filters
- Aggressive Instruction Following: Maximized compliance with user instructions and prompts
- Diverse Content Generation: Capable of generating a wide range of content types
- Lightweight Deployment: Efficient 4.5B parameter architecture suitable for local inference
- Research & Experimentation: Designed for exploring model behavior without refusal patterns
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.
