Video-ChatGPT
Collection
"Video-ChatGPT" is a video conversation model capable of generating meaningful conversation about videos. β’ 2 items β’ Updated β’ 3
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("MBZUAI/Video-ChatGPT-7B", dtype="auto")Video-ChatGPT is a video conversation model capable of generating meaningful conversation about videos. It combines the capabilities of LLMs with a pretrained visual encoder adapted for spatiotemporal video representation.
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("visual-question-answering", model="MBZUAI/Video-ChatGPT-7B")