CoolFace
Modelpublic

COinCO/Qwen2.5-VL-3B-Location

sourceHugging Facecc-by-4.0updated 6mo agoView on Hugging Face
0likes5downloads
Model Card

Qwen2.5-VL-3B Location Context Classifier

Authors: Tianze Yang\, Tyson Jordan\, Ruitong Sun\, Ninghao Liu, Jin Sun \Equal contribution | Affiliation: University of Georgia

Overview

A fine-tuned Qwen2.5-VL-3B-Instruct model for detecting out-of-context objects based on the location criterion.

Given an image with an object marked by a red bounding box, the model evaluates whether the object is placed in a physically and contextually reasonable position — e.g., supported by a surface, on the ground, or in a plausible environment. Objects floating in mid-air or embedded in other objects are classified as out-of-context.

How to Use

python
from transformers import Qwen2_5_VLForConditionalGeneration, AutoProcessor
import torch

model_id = "COinCO/Qwen2.5-VL-3B-Location"

model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
    model_id,
    torch_dtype=torch.float16,
    device_map="auto",
)
processor = AutoProcessor.from_pretrained(model_id)

Training Details

ParameterValue
Base ModelQwen2.5-VL-3B-Instruct
MethodLoRA fine-tuning (merged)
DatasetCOinCO
Training Samples~5,000
Epochs3
Learning Rate2e-4

Evaluation Results

Inpainted Test Set (In-context vs Out-of-context)

ModelAccuracyPrecisionRecallF1
Baseline (Qwen2.5-VL-3B)74.43%———
This model71.05%———

Real COCO Images (shortcut learning detection, higher = better)

ModelAccuracy
Baseline47.55%
This model91.35% (+43.80%)
The baseline model heavily relies on visual artifacts (shortcut learning), achieving only 47.55% on real images. After fine-tuning, the model correctly identifies 91.35% of real objects as in-context, demonstrating significantly reduced shortcut reliance.

Related Resources

Citation

bibtex
@article{yang2025coinco,
  title={Common Inpainted Objects In-N-Out of Context},
  author={Tianze Yang and Tyson Jordan and Ruitong Sun and Ninghao Liu and Jin Sun},
  year={2025}
}