How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "prithivMLmods/Gliese-Qwen3.5-0.8B-Abliterated-Caption"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "prithivMLmods/Gliese-Qwen3.5-0.8B-Abliterated-Caption",
		"messages": [
			{
				"role": "user",
				"content": [
					{
						"type": "text",
						"text": "Describe this image in one sentence."
					},
					{
						"type": "image_url",
						"image_url": {
							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
						}
					}
				]
			}
		]
	}'
Use Docker
docker model run hf.co/prithivMLmods/Gliese-Qwen3.5-0.8B-Abliterated-Caption:
Quick Links

1

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

Gliese-Qwen3.5-0.8B-Abliterated-Caption is an abliterated evolution built on top of Qwen/Qwen3.5-0.8B, 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 lightweight 0.8B parameter vision-language model optimized for detailed captions, strong scene understanding, and rich visual descriptions, while remaining highly efficient.

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 a safe, ethical, and lawful manner.

Get GGUF
File Name Quant Type File Size File Link
Gliese-Qwen3.5-0.8B-Abliterated-Caption.BF16.gguf BF16 1.52 GB Download
Gliese-Qwen3.5-0.8B-Abliterated-Caption.F16.gguf F16 1.52 GB Download
Gliese-Qwen3.5-0.8B-Abliterated-Caption.F32.gguf F32 3.02 GB Download
Gliese-Qwen3.5-0.8B-Abliterated-Caption.Q8_0.gguf Q8_0 812 MB Download
Gliese-Qwen3.5-0.8B-Abliterated-Caption.mmproj-bf16.gguf mmproj-bf16 207 MB Download
Gliese-Qwen3.5-0.8B-Abliterated-Caption.mmproj-f16.gguf mmproj-f16 207 MB Download
Gliese-Qwen3.5-0.8B-Abliterated-Caption.mmproj-f32.gguf mmproj-f32 402 MB Download
Gliese-Qwen3.5-0.8B-Abliterated-Caption.mmproj-q8_0.gguf mmproj-q8_0 116 MB Download

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

Standard or Default (chat_template.jinja)https://huggingface.co/prithivMLmods/Gliese-Qwen3.5-0.8B-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-0.8B-abliterated.


Download the model

hf auth login --token <YOUR_HF_TOKEN>

hf download prithivMLmods/Gliese-Qwen3.5-0.8B-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.

  • 0.8B Parameter Architecture Built on Qwen3.5-0.8B, delivering efficient multimodal reasoning and caption generation while remaining lightweight and fast to deploy.

  • High-Fidelity Caption Generation Designed to produce structured and semantically detailed captions suitable for dataset generation, annotation, and research.

  • Efficient Deployment Suitable for caption dataset creation, multimodal research, local inference pipelines, edge deployments, and AI development workflows.

Quick Start with Transformers

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

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

processor = AutoProcessor.from_pretrained(
    "prithivMLmods/Gliese-Qwen3.5-0.8B-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 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.
  • Lightweight Multimodal Deployment – Running captioning models efficiently on local machines and edge devices.

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 Capacity Limits – Due to its 0.8B parameter size, the model may have reduced reasoning depth compared to larger multimodal architectures.
Downloads last month
867
Safetensors
Model size
0.9B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for prithivMLmods/Gliese-Qwen3.5-0.8B-Abliterated-Caption

Quantized
(149)
this model
Quantizations
2 models

Collection including prithivMLmods/Gliese-Qwen3.5-0.8B-Abliterated-Caption