mbzuai-oryx / Video-ChatGPT

[ACL 2024 🔥] 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. We also introduce a rigorous 'Quantitative Evaluation Benchmarking' for video-based conversational models.
https://mbzuai-oryx.github.io/Video-ChatGPT
Creative Commons Attribution 4.0 International
1.17k stars 103 forks source link

Can't download weights using transformers api #6

Closed AnaRhisT94 closed 1 year ago

AnaRhisT94 commented 1 year ago

Hi, When using the code below to download the weights I'm getting an error key regarding LLava.

from transformers import AutoModelForCausalLM

model = AutoModelForCausalLM.from_pretrained("mmaaz60/LLaVA-7B-Lightening-v1-1")
mmaaz60 commented 1 year ago

Hi @AnaRhisT94,

Thank You for your interest in our work. Please share some more details about the error? Also, please make sure that you are using the recommended version of transformers as in requirements.txt.

pip install transformers@git+https://github.com/huggingface/transformers.git@cae78c46

Alternatively, you can also download the same model from here.

Please let me know if it solves the issue. Thank You