Transformers How to use General-Medical-AI/UniMedVL with Transformers:
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("General-Medical-AI/UniMedVL", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained("General-Medical-AI/UniMedVL", trust_remote_code=True)