Views
No views yet
1from transformers import AutoModelForImageTextToText, AutoProcessor
2
3model = AutoModelForImageTextToText.from_pretrained(
4 "AryanNsc/LMF2.5-VL-Ghost-V1",
5 torch_dtype="bfloat16",
6 device_map="auto",
7 trust_remote_code=True,
8)
9processor = AutoProcessor.from_pretrained("AryanNsc/LMF2.5-VL-Ghost-V1", trust_remote_code=True)