Views
No views yet

Gliese-Qwen3.5-2B-Abliterated-Caption is an abliterated evolution built on top of Qwen/Qwen3.5-2B, 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 capable 2B 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.
| File Name | Quant Type | File Size | File Link |
|---|---|---|---|
| Gliese-Qwen3.5-2B-Abliterated-Caption.BF16.gguf | BF16 | 3.78 GB | Download |
| Gliese-Qwen3.5-2B-Abliterated-Caption.F16.gguf | F16 | 3.78 GB | Download |
| Gliese-Qwen3.5-2B-Abliterated-Caption.F32.gguf | F32 | 7.54 GB | Download |
| Gliese-Qwen3.5-2B-Abliterated-Caption.Q8_0.gguf | Q8_0 | 2.01 GB | Download |
| Gliese-Qwen3.5-2B-Abliterated-Caption.mmproj-bf16.gguf | mmproj-bf16 | 671 MB | Download |
| Gliese-Qwen3.5-2B-Abliterated-Caption.mmproj-f16.gguf | mmproj-f16 | 671 MB | Download |
| Gliese-Qwen3.5-2B-Abliterated-Caption.mmproj-f32.gguf | mmproj-f32 | 1.33 GB | Download |
| Gliese-Qwen3.5-2B-Abliterated-Caption.mmproj-q8_0.gguf | mmproj-q8_0 | 365 MB | Download |
[!NOTE] Expert Image Captioning System (chat_template.jinja) – https://huggingface.co/prithivMLmods/Gliese-Qwen3.5-2B-Abliterated-Caption/blob/main/chat_template.jinja [Recommended]
[!NOTE] Standard or Default (chat_template.jinja) – https://huggingface.co/prithivMLmods/Gliese-Qwen3.5-2B-Abliterated-Caption/blob/main/standard-chat_template/chat_template.jinja
1hf auth login --token <YOUR_HF_TOKEN>
2
3hf download prithivMLmods/Gliese-Qwen3.5-2B-Abliterated-Caption1pip install transformers==5.3.0
2# or
3pip install git+https://github.com/huggingface/transformers.git1from transformers import Qwen3_5ForConditionalGeneration, AutoProcessor
2import torch
3
4model = Qwen3_5ForConditionalGeneration.from_pretrained(
5 "prithivMLmods/Gliese-Qwen3.5-2B-Abliterated-Caption",
6 torch_dtype="auto",
7 device_map="auto"
8)
9
10processor = AutoProcessor.from_pretrained(
11 "prithivMLmods/Gliese-Qwen3.5-2B-Abliterated-Caption"
12)
13
14messages = [
15 {
16 "role": "user",
17 "content": [
18 {"type": "text", "text": "Describe this image in extreme detail."}
19 ],
20 }
21]
22
23text = processor.apply_chat_template(
24 messages, tokenize=False, add_generation_prompt=True
25)
26
27inputs = processor(
28 text=[text],
29 padding=True,
30 return_tensors="pt"
31).to("cuda")
32
33generated_ids = model.generate(**inputs, max_new_tokens=512)
34
35generated_ids_trimmed = [
36 out_ids[len(in_ids):] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
37]
38
39output_text = processor.batch_decode(
40 generated_ids_trimmed,
41 skip_special_tokens=True,
42 clean_up_tokenization_spaces=False
43)
44
45print(output_text)Important Note: This model intentionally reduces built-in refusal mechanisms.