-
Notifications
You must be signed in to change notification settings - Fork 409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mllama3.2-V-11b support text-only mode? #2680
Comments
Yes, text only is supported. |
@AllentDan cool ! from lmdeploy import pipeline
from lmdeploy.vl import load_image
pipe = pipeline('meta-llama/Llama-3.2-11B-Vision-Instruct')
#image = load_image('https://raw.githubusercontent.com/open-mmlab/mmdeploy/main/tests/data/tiger.jpeg')
image=None
response = pipe(('who won the world cup in 2006?', image))
print(response) |
No, just like normal LLM inference. |
@AllentDan found log lmdeploy - WARNING - archs.py:53 - Fallback to pytorch engine because How long can turbomind engine support ? |
There is no such a plan in the short future. |
Can mllama3.2-V-11b support text only mode?
transformers code like this: https://github.com/huggingface/transformers/blob/655bec2da7120a8681acc2ce951f8d58c6f0e6ef/src/transformers/models/mllama/modeling_mllama.py#L1645
The text was updated successfully, but these errors were encountered: