From 95b3c3814db27d2a57ec16c9488792543573717c Mon Sep 17 00:00:00 2001 From: Raushan Turganbay Date: Thu, 16 May 2024 17:23:01 +0500 Subject: [PATCH] Video-LLaVa: Fix docs (#30855) fix model id in docs --- docs/source/en/model_doc/video_llava.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/en/model_doc/video_llava.md b/docs/source/en/model_doc/video_llava.md index 0dad4df06f0e87..7f27e65a4ee994 100644 --- a/docs/source/en/model_doc/video_llava.md +++ b/docs/source/en/model_doc/video_llava.md @@ -80,8 +80,8 @@ def read_video_pyav(container, indices): return np.stack([x.to_ndarray(format="rgb24") for x in frames]) -model = VideoLlavaForConditionalGeneration.from_pretrained("RaushanTurganbay/video-llava-7b-hf", device_map="auto") -processor = VideoLlavaProcessor.from_pretrained("RaushanTurganbay/video-llava-7b-hf") +model = VideoLlavaForConditionalGeneration.from_pretrained("LanguageBind/Video-LLaVA-7B-hf", device_map="auto") +processor = VideoLlavaProcessor.from_pretrained("LanguageBind/Video-LLaVA-7B-hf") video_path = hf_hub_download(repo_id="raushan-testing-hf/videos-test", filename="sample_demo_1.mp4", repo_type="dataset")