CoolFace
Modelpublic

prithivMLmods/Gliese-Qwen3.5-4B-Abliterated-Caption

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
10likes1.3kdownloads
Model Card

1

Gliese-Qwen3.5-4B-Abliterated-Caption

Gliese-Qwen3.5-4B-Abliterated-Caption is an abliterated evolution built on top of Qwen/Qwen3.5-4B, designed specifically for generalized and unfiltered image captioning. The model applies advanced refusal direction analysis and abliterated training strategies to minimize internal refusal behaviors while maximizing descriptive capability and visual understanding. The result is a powerful 4B parameter vision-language model optimized for highly detailed captions, deep scene understanding, and rich visual descriptions.
[!IMPORTANT] This model is intended for research and learning purposes only. The model has reduced internal refusal behaviors, and any content generated by it is used at the user’s own risk. The authors and hosting page disclaim any liability for content generated by this model. Users are responsible for ensuring that the model is used in a safe, ethical, and lawful manner.

<div style=" background: rgba(255, 235, 59, 0.15); padding: 16px; border-radius: 6px; border: 1px solid rgba(255, 235, 59, 0.4); margin: 16px 0; ">

<details> <summary>Get GGUF</summary>

File NameQuant TypeFile SizeFile Link
Gliese-Qwen3.5-4B-Abliterated-Caption.BF16.ggufBF168.42 GBDownload
Gliese-Qwen3.5-4B-Abliterated-Caption.F16.ggufF168.42 GBDownload
Gliese-Qwen3.5-4B-Abliterated-Caption.F32.ggufF3216.8 GBDownload
Gliese-Qwen3.5-4B-Abliterated-Caption.Q8_0.ggufQ8_04.48 GBDownload
Gliese-Qwen3.5-4B-Abliterated-Caption.mmproj-bf16.ggufmmproj-bf16676 MBDownload
Gliese-Qwen3.5-4B-Abliterated-Caption.mmproj-f16.ggufmmproj-f16676 MBDownload
Gliese-Qwen3.5-4B-Abliterated-Caption.mmproj-f32.ggufmmproj-f321.33 GBDownload
Gliese-Qwen3.5-4B-Abliterated-Caption.mmproj-q8_0.ggufmmproj-q8_0367 MBDownload

</details>

</div>

[!NOTE]

Expert Image Captioning System (chat_template.jinja) – https://huggingface.co/prithivMLmods/Gliese-Qwen3.5-4B-Abliterated-Caption/blob/main/chat_template.jinja [Recommended]

[!NOTE]

Standard or Default (chat_template.jinja) – https://huggingface.co/prithivMLmods/Gliese-Qwen3.5-4B-Abliterated-Caption/blob/main/standard-chat_template/chat_template.jinja


Base Model Signatures:

This model has been re-sharded and optimized for the latest Transformers version from the base model: https://huggingface.co/huihui-ai/Huihui-Qwen3.5-4B-abliterated.


Download the model

bash
hf auth login --token <YOUR_HF_TOKEN>

hf download prithivMLmods/Gliese-Qwen3.5-4B-Abliterated-Caption

Key Highlights

  • —Advanced Refusal Direction Analysis Uses targeted activation analysis to identify and mitigate refusal directions within the model’s latent space.
  • —Abliterated Caption Training Fine-tuned for unfiltered and detailed caption generation, enabling comprehensive visual descriptions without excessive refusal behaviors.
  • —Optimized Visual Understanding Enhanced to provide rich, context-aware descriptions of scenes, objects, people, and environments.
  • —4B Parameter Architecture Built on Qwen3.5-4B, delivering strong multimodal reasoning and improved caption quality while remaining deployable on modern GPUs.
  • —High-Fidelity Caption Generation Designed to produce long-form, structured, and semantically detailed captions suitable for dataset generation, annotation, and research.
  • —Efficient Deployment Suitable for caption dataset creation, multimodal research, local inference pipelines, and AI development workflows.

Quick Start with Transformers

bash
pip install transformers==5.3.0
# or
pip install git+https://github.com/huggingface/transformers.git
python
from transformers import Qwen3_5ForConditionalGeneration, AutoProcessor
import torch

model = Qwen3_5ForConditionalGeneration.from_pretrained(
    "prithivMLmods/Gliese-Qwen3.5-4B-Abliterated-Caption",
    torch_dtype="auto",
    device_map="auto"
)

processor = AutoProcessor.from_pretrained(
    "prithivMLmods/Gliese-Qwen3.5-4B-Abliterated-Caption"
)

messages = [
    {
        "role": "user",
        "content": [
            {"type": "text", "text": "Describe this image in extreme detail."}
        ],
    }
]

text = processor.apply_chat_template(
    messages, tokenize=False, add_generation_prompt=True
)

inputs = processor(
    text=[text],
    padding=True,
    return_tensors="pt"
).to("cuda")

generated_ids = model.generate(**inputs, max_new_tokens=512)

generated_ids_trimmed = [
    out_ids[len(in_ids):] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
]

output_text = processor.batch_decode(
    generated_ids_trimmed,
    skip_special_tokens=True,
    clean_up_tokenization_spaces=False
)

print(output_text)

Intended Use

  • —High-Detail Image Captioning – Generating extremely descriptive captions for images.
  • —Dataset Generation – Creating large-scale caption datasets for multimodal training.
  • —Vision-Language Research – Studying multimodal reasoning and captioning behavior.
  • —Annotation Automation – Assisting in automatic labeling and visual description tasks.
  • —Local Multimodal AI Deployment – Running powerful captioning models on local GPUs.

Limitations & Risks

Important Note: This model intentionally reduces built-in refusal mechanisms.
  • —Unfiltered Outputs – The model may generate explicit or controversial captions depending on the input images.
  • —User Responsibility – Generated outputs should be handled responsibly and within legal and ethical boundaries.
  • —Model Size Constraints – While strong, a 4B model still has limitations compared to frontier-scale multimodal architectures.