Instructions to use DAMO-NLP-SG/VideoLLaMA3-7B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DAMO-NLP-SG/VideoLLaMA3-7B with Transformers:
# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("DAMO-NLP-SG/VideoLLaMA3-7B", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Fix import error
This file returns ImportError("cannot import name 'VideoInput' from 'transformers.image_utils' (/home/rhassanaly/.cache/pypoetry/virtualenvs/benchmark-B9CbOoqA-py3.13/lib/python3.13/site-packages/transformers/image_utils.py)").
I fixed the import of VideoInput.
Can confirm this works! Please merge
Hi all, I was wondering if this problem has been solved. I am using transformers and still facing the error: ImportError: cannot import name 'VideoInput' from 'transformers.image_utils'
Hi all, I was wondering if this problem has been solved. I am using transformers and still facing the error: ImportError: cannot import name 'VideoInput' from 'transformers.image_utils'
The updated change above can solve this problem.