Views
No views yet
Qwen/Qwen2.5-VL-7B-Instruct and fine-tuned on the S-MLLMUn benchmark fine-tuning data. Tokenizer and processor files are copied from the base model so the checkpoint can be loaded directly with Transformers.1from transformers import AutoProcessor, Qwen2_5_VLForConditionalGeneration
2
3model_id = "path-or-hf-repo-id"
4processor = AutoProcessor.from_pretrained(model_id)
5model = Qwen2_5_VLForConditionalGeneration.from_pretrained(model_id)model/original_model/Qwen2.5-VL-7B-original--original_dir in the S-MLLMUn training scripts.