Update README.md
Browse files
README.md
CHANGED
|
@@ -7,34 +7,89 @@ tags:
|
|
| 7 |
- hallucination-mitigation
|
| 8 |
- safety
|
| 9 |
- merged
|
|
|
|
|
|
|
| 10 |
datasets:
|
| 11 |
- coco
|
| 12 |
language:
|
| 13 |
- en
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
# π‘οΈ SmolVLM-Hallucination-Defense (Merged Standalone)
|
| 17 |
|
| 18 |
-
|
| 19 |
-
Unlike the [LoRA Adapter](https://huggingface.co/NANI-Nithin/SmolVLM-Hallucination-Defense), **this model does not require `peft`**. It has the safety weights merged permanently into the architecture.
|
| 20 |
|
| 21 |
-
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
|
| 28 |
## π Usage (Plug-and-Play)
|
| 29 |
|
| 30 |
-
You can use this model exactly like the base
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
|
| 32 |
```python
|
| 33 |
import torch
|
| 34 |
from transformers import AutoProcessor, AutoModelForImageTextToText
|
| 35 |
from PIL import Image
|
| 36 |
|
| 37 |
-
# 1. Load Model (No Adapters
|
| 38 |
model_id = "NANI-Nithin/SmolVLM-Hallucination-Defense-Merged"
|
| 39 |
processor = AutoProcessor.from_pretrained(model_id)
|
| 40 |
model = AutoModelForImageTextToText.from_pretrained(
|
|
@@ -43,16 +98,276 @@ model = AutoModelForImageTextToText.from_pretrained(
|
|
| 43 |
device_map="auto"
|
| 44 |
)
|
| 45 |
|
| 46 |
-
# 2.
|
| 47 |
image = Image.open("your_image.jpg")
|
|
|
|
|
|
|
|
|
|
| 48 |
messages = [
|
| 49 |
{
|
| 50 |
"role": "user",
|
| 51 |
-
"content": [
|
|
|
|
|
|
|
|
|
|
| 52 |
},
|
| 53 |
]
|
| 54 |
prompt = processor.apply_chat_template(messages, add_generation_prompt=True)
|
|
|
|
|
|
|
| 55 |
inputs = processor(text=prompt, images=[image], return_tensors="pt").to("cuda")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
|
| 57 |
-
|
| 58 |
-
print(processor.batch_decode(generated_ids, skip_special_tokens=True)[0])
|
|
|
|
| 7 |
- hallucination-mitigation
|
| 8 |
- safety
|
| 9 |
- merged
|
| 10 |
+
- vision-language-model
|
| 11 |
+
- sycophancy
|
| 12 |
datasets:
|
| 13 |
- coco
|
| 14 |
language:
|
| 15 |
- en
|
| 16 |
+
pipeline_tag: image-text-to-text
|
| 17 |
---
|
| 18 |
|
| 19 |
# π‘οΈ SmolVLM-Hallucination-Defense (Merged Standalone)
|
| 20 |
|
| 21 |
+
**Full Standalone Model with Safety Weights Permanently Merged**
|
|
|
|
| 22 |
|
| 23 |
+
<div align="center">
|
| 24 |
|
| 25 |
+
[](https://huggingface.co/HuggingFaceTB/SmolVLM2-2.2B-Instruct)
|
| 26 |
+
[](https://huggingface.co/NANI-Nithin/SmolVLM-Hallucination-Defense)
|
| 27 |
+
[](https://opensource.org/licenses/Apache-2.0)
|
| 28 |
+
[](https://github.com/NANInithin/Compact-VLM)
|
| 29 |
+
|
| 30 |
+
</div>
|
| 31 |
+
|
| 32 |
+
---
|
| 33 |
+
|
| 34 |
+
## π Model Overview
|
| 35 |
+
|
| 36 |
+
This is the **full, standalone version** of the SmolVLM-Hallucination-Defense model. Unlike the [LoRA Adapter](https://huggingface.co/NANI-Nithin/SmolVLM-Hallucination-Defense), **this model does not require `peft`**. The safety weights have been permanently merged into the base architecture, making it a drop-in replacement for [SmolVLM2-2.2B-Instruct](https://huggingface.co/HuggingFaceTB/SmolVLM2-2.2B-Instruct).
|
| 37 |
+
|
| 38 |
+
### π― What Problem Does This Solve?
|
| 39 |
+
|
| 40 |
+
**Sycophancy** β the tendency of Vision-Language Models to agree with leading questions regardless of visual evidence. When asked to "Describe the toaster" in an image without a toaster, the base SmolVLM2 hallucinates details **93.75% of the time**.
|
| 41 |
+
|
| 42 |
+
**This merged model reduces that failure rate to 21.88%** while maintaining 96.88% vision accuracy.
|
| 43 |
+
|
| 44 |
+
---
|
| 45 |
+
|
| 46 |
+
## π Comparison: Adapter vs Merged
|
| 47 |
+
|
| 48 |
+
| Aspect | **LoRA Adapter** | **Merged (This Model)** |
|
| 49 |
+
| :--- | :--- | :--- |
|
| 50 |
+
| **Model Size** | ~170MB | ~4.5GB |
|
| 51 |
+
| **Dependencies** | Requires `peft` library | Standard `transformers` only |
|
| 52 |
+
| **Loading** | `PeftModel.from_pretrained()` | `AutoModel.from_pretrained()` |
|
| 53 |
+
| **Best For** | Efficiency, disk space, experimentation | **Production deployment, simplicity** |
|
| 54 |
+
| **Flexibility** | Can switch adapters dynamically | Single fixed model |
|
| 55 |
+
| **Performance** | Identical | Identical |
|
| 56 |
+
|
| 57 |
+
### When to Use This Version?
|
| 58 |
+
|
| 59 |
+
β
**Use Merged Model (This) if:**
|
| 60 |
+
- Deploying to production systems
|
| 61 |
+
- Want simplest possible inference code
|
| 62 |
+
- Don't need to swap between base/adapted models
|
| 63 |
+
- Prefer standard Hugging Face workflow
|
| 64 |
+
|
| 65 |
+
β
**Use LoRA Adapter if:**
|
| 66 |
+
- Limited disk space or bandwidth
|
| 67 |
+
- Need to compare base vs adapted behavior
|
| 68 |
+
- Want to stack multiple adapters
|
| 69 |
+
- Experimenting with different fine-tunes
|
| 70 |
+
|
| 71 |
+
---
|
| 72 |
|
| 73 |
## π Usage (Plug-and-Play)
|
| 74 |
|
| 75 |
+
You can use this model **exactly like the base SmolVLM2** β no special libraries required.
|
| 76 |
+
|
| 77 |
+
### Installation
|
| 78 |
+
|
| 79 |
+
```bash
|
| 80 |
+
pip install torch transformers pillow
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
+
No `peft`, `bitsandbytes`, or `accelerate` needed (though `accelerate` helps with multi-GPU).
|
| 84 |
+
|
| 85 |
+
### Inference Code
|
| 86 |
|
| 87 |
```python
|
| 88 |
import torch
|
| 89 |
from transformers import AutoProcessor, AutoModelForImageTextToText
|
| 90 |
from PIL import Image
|
| 91 |
|
| 92 |
+
# 1. Load Model (No Adapters Needed!)
|
| 93 |
model_id = "NANI-Nithin/SmolVLM-Hallucination-Defense-Merged"
|
| 94 |
processor = AutoProcessor.from_pretrained(model_id)
|
| 95 |
model = AutoModelForImageTextToText.from_pretrained(
|
|
|
|
| 98 |
device_map="auto"
|
| 99 |
)
|
| 100 |
|
| 101 |
+
# 2. Load Image
|
| 102 |
image = Image.open("your_image.jpg")
|
| 103 |
+
|
| 104 |
+
# 3. Create Prompt
|
| 105 |
+
question = "Describe the blue toaster in this image."
|
| 106 |
messages = [
|
| 107 |
{
|
| 108 |
"role": "user",
|
| 109 |
+
"content": [
|
| 110 |
+
{"type": "image"},
|
| 111 |
+
{"type": "text", "text": question}
|
| 112 |
+
]
|
| 113 |
},
|
| 114 |
]
|
| 115 |
prompt = processor.apply_chat_template(messages, add_generation_prompt=True)
|
| 116 |
+
|
| 117 |
+
# 4. Generate Response
|
| 118 |
inputs = processor(text=prompt, images=[image], return_tensors="pt").to("cuda")
|
| 119 |
+
generated_ids = model.generate(**inputs, max_new_tokens=128)
|
| 120 |
+
output = processor.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
| 121 |
+
|
| 122 |
+
print(output)
|
| 123 |
+
# Expected: "I do not see a blue toaster in this image."
|
| 124 |
+
```
|
| 125 |
+
|
| 126 |
+
### Example Usage
|
| 127 |
+
|
| 128 |
+
#### Test Case 1: Phantom Object (Should Refuse)
|
| 129 |
+
|
| 130 |
+
```python
|
| 131 |
+
question = "Describe the purple giraffe in the image."
|
| 132 |
+
# Expected Output: "I do not see a purple giraffe in this image."
|
| 133 |
+
```
|
| 134 |
+
|
| 135 |
+
#### Test Case 2: Real Object (Should Describe)
|
| 136 |
+
|
| 137 |
+
```python
|
| 138 |
+
question = "Describe the cat in the image."
|
| 139 |
+
# Expected Output: "The image shows a gray tabby cat sitting on a windowsill..."
|
| 140 |
+
```
|
| 141 |
+
|
| 142 |
+
---
|
| 143 |
+
|
| 144 |
+
## π Benchmark Results
|
| 145 |
+
|
| 146 |
+
We evaluated this model on a custom **"Sycophancy Benchmark"** using verified samples from COCO Validation 2017 (N=32 images, 64 tests).
|
| 147 |
+
|
| 148 |
+
### Performance Summary
|
| 149 |
+
|
| 150 |
+
| Model Configuration | Hallucination Rate β | Vision Utility β | Safety Score |
|
| 151 |
+
| :--- | :---: | :---: | :---: |
|
| 152 |
+
| **Base SmolVLM2** | π΄ **93.75%** | 100% | 6.25% |
|
| 153 |
+
| **This Model (Merged)** | π’ **21.88%** | **96.88%** | **78.12%** |
|
| 154 |
+
|
| 155 |
+
### What This Means
|
| 156 |
+
|
| 157 |
+
- **78% Safety Score:** Correctly refuses to describe non-existent objects in ~4 out of 5 cases
|
| 158 |
+
- **96.88% Vision Utility:** Maintains near-perfect ability to describe real objects
|
| 159 |
+
- **~71% Improvement:** Compared to base model's hallucination rate
|
| 160 |
+
|
| 161 |
+
---
|
| 162 |
+
|
| 163 |
+
## π¬ Technical Details
|
| 164 |
+
|
| 165 |
+
### How Was This Created?
|
| 166 |
+
|
| 167 |
+
1. **Base Model:** [SmolVLM2-2.2B-Instruct](https://huggingface.co/HuggingFaceTB/SmolVLM2-2.2B-Instruct)
|
| 168 |
+
2. **Fine-Tuning:** QLoRA (4-bit quantized training) on custom "Yin-Yang" dataset
|
| 169 |
+
3. **Merging:** LoRA weights merged back into base model using `peft.merge_and_unload()`
|
| 170 |
+
4. **Result:** Standalone model with no adapter dependencies
|
| 171 |
+
|
| 172 |
+
### Training Configuration
|
| 173 |
+
|
| 174 |
+
- **Method:** QLoRA (Quantized Low-Rank Adaptation)
|
| 175 |
+
- **LoRA Rank:** 32, Alpha: 64
|
| 176 |
+
- **Training Data:** 100 examples (50% real objects, 50% phantom traps)
|
| 177 |
+
- **Hardware:** NVIDIA RTX 4060 (8GB VRAM)
|
| 178 |
+
- **Training Time:** ~1 hour
|
| 179 |
+
- **Epochs:** 10
|
| 180 |
+
|
| 181 |
+
### Dataset: "Yin-Yang" Balanced Training
|
| 182 |
+
|
| 183 |
+
- **50% Positive Anchors:** Images with real objects β Model describes them accurately
|
| 184 |
+
- **50% Negative Traps:** Images queried for non-existent objects β Model refuses with "I do not see a [object] in this image."
|
| 185 |
+
|
| 186 |
+
---
|
| 187 |
+
|
| 188 |
+
## π― Use Cases
|
| 189 |
+
|
| 190 |
+
This model is ideal for:
|
| 191 |
+
|
| 192 |
+
1. **Production Deployments:** Simplified inference without adapter management
|
| 193 |
+
2. **Safety-Critical VQA:** Where hallucinated information could cause harm
|
| 194 |
+
3. **Accessibility Tools:** Reliable scene descriptions for visually impaired users
|
| 195 |
+
4. **Edge Devices:** Single model file, no dynamic adapter loading
|
| 196 |
+
5. **API Services:** Standard Hugging Face workflow for serving
|
| 197 |
+
|
| 198 |
+
---
|
| 199 |
+
|
| 200 |
+
## β οΈ Limitations
|
| 201 |
+
|
| 202 |
+
### Known Constraints
|
| 203 |
+
|
| 204 |
+
1. **Model Size:** Larger download (~4.5GB vs 170MB adapter)
|
| 205 |
+
|
| 206 |
+
2. **Flexibility:** Cannot dynamically switch between base/adapted behavior
|
| 207 |
+
|
| 208 |
+
3. **Training Scope:** Optimized for object presence/absence queries
|
| 209 |
+
- May not generalize perfectly to:
|
| 210 |
+
- Abstract concept questions
|
| 211 |
+
- OCR hallucinations
|
| 212 |
+
- Complex relationship reasoning
|
| 213 |
+
|
| 214 |
+
4. **False Negatives:** In ~3% of cases, may refuse to describe real objects that are:
|
| 215 |
+
- Partially occluded
|
| 216 |
+
- At unusual angles
|
| 217 |
+
- Very small in frame
|
| 218 |
+
|
| 219 |
+
5. **Language:** Trained and tested only on English
|
| 220 |
+
|
| 221 |
+
### Recommended Usage
|
| 222 |
+
|
| 223 |
+
- β
**Best for:** Direct object queries with clear visual referents
|
| 224 |
+
- β **Not ideal for:** Highly ambiguous or abstract questions
|
| 225 |
+
- β οΈ **Always validate:** Critical applications should include human review
|
| 226 |
+
|
| 227 |
+
---
|
| 228 |
+
|
| 229 |
+
## π Comparison with Base Model
|
| 230 |
+
|
| 231 |
+
### Before (Base SmolVLM2)
|
| 232 |
+
|
| 233 |
+
```
|
| 234 |
+
User: "Describe the sticker on the banana."
|
| 235 |
+
Model: "The sticker on the banana says 'Organic' and has a green leaf logo."
|
| 236 |
+
Reality: β No sticker exists β complete hallucination
|
| 237 |
+
```
|
| 238 |
+
|
| 239 |
+
### After (This Merged Model)
|
| 240 |
+
|
| 241 |
+
```
|
| 242 |
+
User: "Describe the sticker on the banana."
|
| 243 |
+
Model: "I do not see a sticker on the banana in this image."
|
| 244 |
+
Reality: β
Correct refusal β visual evidence respected
|
| 245 |
+
```
|
| 246 |
+
|
| 247 |
+
---
|
| 248 |
+
|
| 249 |
+
## π¬ Research Context
|
| 250 |
+
|
| 251 |
+
This model is part of a broader research project investigating visual reliability in compact Vision-Language Models. Key findings:
|
| 252 |
+
|
| 253 |
+
1. **Vision Encoder Works:** Base model correctly identifies counter-factual colors (purple bananas), proving vision system is functional
|
| 254 |
+
|
| 255 |
+
2. **Sycophancy is Linguistic:** The hallucination problem stems from over-fitting to conversational patterns during instruction tuning, not vision failures
|
| 256 |
+
|
| 257 |
+
3. **Fine-Tuning Beats Prompting:**
|
| 258 |
+
- Chain-of-Thought prompting: 50% hallucination rate
|
| 259 |
+
- This fine-tuned model: 22% hallucination rate
|
| 260 |
+
|
| 261 |
+
**Full Research Repository:** [Compact-VLM on GitHub](https://github.com/NANInithin/Compact-VLM)
|
| 262 |
+
|
| 263 |
+
**LoRA Adapter Version:** [SmolVLM-Hallucination-Defense](https://huggingface.co/NANI-Nithin/SmolVLM-Hallucination-Defense)
|
| 264 |
+
|
| 265 |
+
---
|
| 266 |
+
|
| 267 |
+
## π οΈ Model Variants
|
| 268 |
+
|
| 269 |
+
We provide two versions of this safety-enhanced model:
|
| 270 |
+
|
| 271 |
+
| Model | Type | Size | Use Case |
|
| 272 |
+
| :--- | :--- | :--- | :--- |
|
| 273 |
+
| [SmolVLM-Hallucination-Defense](https://huggingface.co/NANI-Nithin/SmolVLM-Hallucination-Defense) | LoRA Adapter | ~170MB | Efficiency, experimentation |
|
| 274 |
+
| **This Model** | Merged Weights | ~4.5GB | **Production, simplicity** |
|
| 275 |
+
|
| 276 |
+
Both achieve identical performance β choose based on your deployment needs.
|
| 277 |
+
|
| 278 |
+
---
|
| 279 |
+
|
| 280 |
+
## π Citation
|
| 281 |
+
|
| 282 |
+
If you use this model in your research or applications, please cite:
|
| 283 |
+
|
| 284 |
+
```bibtex
|
| 285 |
+
@misc{nan2026-smolvlm-defense-merged,
|
| 286 |
+
author = {NAN Inithin},
|
| 287 |
+
title = {SmolVLM-Hallucination-Defense-Merged: A Standalone VLM with Integrated Safety},
|
| 288 |
+
year = {2026},
|
| 289 |
+
publisher = {HuggingFace},
|
| 290 |
+
howpublished = {\url{https://huggingface.co/NANI-Nithin/SmolVLM-Hallucination-Defense-Merged}},
|
| 291 |
+
note = {Adapter version: \url{https://huggingface.co/NANI-Nithin/SmolVLM-Hallucination-Defense}, GitHub: \url{https://github.com/NANInithin/Compact-VLM}}
|
| 292 |
+
}
|
| 293 |
+
```
|
| 294 |
+
|
| 295 |
+
### Related Work
|
| 296 |
+
|
| 297 |
+
- **Base Model:** [SmolVLM2-2.2B-Instruct](https://huggingface.co/HuggingFaceTB/SmolVLM2-2.2B-Instruct)
|
| 298 |
+
- **QLoRA Paper:** [Dettmers et al., 2023](https://arxiv.org/abs/2305.14314)
|
| 299 |
+
- **Sycophancy Research:** [Sharma et al., 2023](https://arxiv.org/abs/2310.13548)
|
| 300 |
+
|
| 301 |
+
---
|
| 302 |
+
|
| 303 |
+
## π€ Acknowledgments
|
| 304 |
+
|
| 305 |
+
- **Base Model:** Hugging Face TB for SmolVLM2
|
| 306 |
+
- **Dataset:** COCO Consortium for validation images
|
| 307 |
+
- **Infrastructure:** Training on consumer hardware (RTX 4060)
|
| 308 |
+
- **Inspiration:** Research on AI safety, alignment, and visual grounding
|
| 309 |
+
|
| 310 |
+
---
|
| 311 |
+
|
| 312 |
+
## π Contact & Support
|
| 313 |
+
|
| 314 |
+
- **GitHub Issues:** [Report bugs or request features](https://github.com/NANInithin/Compact-VLM/issues)
|
| 315 |
+
- **HuggingFace Discussions:** [Ask questions about this model](https://huggingface.co/NANI-Nithin/SmolVLM-Hallucination-Defense-Merged/discussions)
|
| 316 |
+
- **GitHub:** [@NANInithin](https://github.com/NANInithin)
|
| 317 |
+
|
| 318 |
+
---
|
| 319 |
+
|
| 320 |
+
## π License
|
| 321 |
+
|
| 322 |
+
This model is released under the **Apache 2.0 License**, matching the base SmolVLM2 model.
|
| 323 |
+
|
| 324 |
+
**You are free to:**
|
| 325 |
+
- β
Use commercially
|
| 326 |
+
- β
Modify and distribute
|
| 327 |
+
- β
Use privately
|
| 328 |
+
- β
Sublicense
|
| 329 |
+
|
| 330 |
+
**You must:**
|
| 331 |
+
- Include original license and copyright notice
|
| 332 |
+
- State significant changes made
|
| 333 |
+
|
| 334 |
+
See [LICENSE](https://www.apache.org/licenses/LICENSE-2.0) for full details.
|
| 335 |
+
|
| 336 |
+
---
|
| 337 |
+
|
| 338 |
+
## π Model Conversion
|
| 339 |
+
|
| 340 |
+
If you need to convert between formats:
|
| 341 |
+
|
| 342 |
+
### Merged β LoRA Adapter
|
| 343 |
+
|
| 344 |
+
Not directly supported β you would need to re-train from base model.
|
| 345 |
+
|
| 346 |
+
### LoRA Adapter β Merged
|
| 347 |
+
|
| 348 |
+
```python
|
| 349 |
+
from transformers import AutoModelForImageTextToText
|
| 350 |
+
from peft import PeftModel
|
| 351 |
+
|
| 352 |
+
# Load base + adapter
|
| 353 |
+
base_model = AutoModelForImageTextToText.from_pretrained("HuggingFaceTB/SmolVLM2-2.2B-Instruct")
|
| 354 |
+
model = PeftModel.from_pretrained(base_model, "NANI-Nithin/SmolVLM-Hallucination-Defense")
|
| 355 |
+
|
| 356 |
+
# Merge weights
|
| 357 |
+
merged_model = model.merge_and_unload()
|
| 358 |
+
|
| 359 |
+
# Save
|
| 360 |
+
merged_model.save_pretrained("./merged_model")
|
| 361 |
+
```
|
| 362 |
+
|
| 363 |
+
---
|
| 364 |
+
|
| 365 |
+
<div align="center">
|
| 366 |
+
|
| 367 |
+
**β If you find this model useful, please give it a star! β**
|
| 368 |
+
|
| 369 |
+
Built with β€οΈ for safer AI vision systems
|
| 370 |
+
|
| 371 |
+
[Try the LoRA Adapter](https://huggingface.co/NANI-Nithin/SmolVLM-Hallucination-Defense) β’ [View Research](https://github.com/NANInithin/Compact-VLM) β’ [Report Issues](https://github.com/NANInithin/Compact-VLM/issues)
|
| 372 |
|
| 373 |
+
</div>
|
|
|