How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "gaostar/DeViL-7B"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "gaostar/DeViL-7B",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/gaostar/DeViL-7B
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