How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="gaostar/DeViL-7B", trust_remote_code=True)
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("gaostar/DeViL-7B", trust_remote_code=True, dtype="auto")
Quick Links

DeViL-7B

Official checkpoint for "Detector-Empowered Video Large Language Model for Efficient Spatio-Temporal Grounding"

Paper | Code

DeViL teaser

Overview

DeViL is a detector-empowered video large language model designed for efficient spatio-temporal video grounding (STVG) and grounded video reasoning. Instead of relying on long autoregressive coordinate decoding or expensive candidate construction, DeViL offloads dense spatial grounding to a fully parallel detector. It distills the user query into a detector-compatible reference-semantic token and uses temporal consistency regularization to maintain object coherence across frames.

This repository hosts the official DeViL-7B checkpoint released by the authors.

Highlights

  • Detector-empowered grounding for efficient spatio-temporal localization
  • Strong performance reported in the paper: 43.1 m_vIoU on HC-STVG and 14.33 FPS
  • Preserves the backbone MLLM's general video understanding and reasoning ability
  • Supports both image and video inputs in the official demo pipeline

Links

Downloads last month
31
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for gaostar/DeViL-7B

Base model

Qwen/Qwen2.5-7B
Finetuned
(1)
this model

Paper for gaostar/DeViL-7B