Flash-VStream: Memory-Based Real-Time Understanding for Long Video Streams
Paper • 2406.08085 • Published • 17
# Load model directly
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("IVGSZ/Flash-VStream-7b", dtype="auto")We proposed Flash-VStream, a video-language model that simulates the memory mechanism of human. Our model is able to process extremely long video streams in real-time and respond to user queries simultaneously.
This model is trained based on image data from LLaVA-1.5 dataset, and video data from WebVid and ActivityNet datasets following LLaMA-VID, including
This project is licensed under the LLAMA 2 License.
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="IVGSZ/Flash-VStream-7b")