S-MLLMUn Qwen2.5-VL Original Model
This repository contains the fine-tuned original Qwen2.5-VL checkpoint used by S-MLLMUn before applying unlearning methods.
The checkpoint was initialized from 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.
Usage
from transformers import AutoProcessor, Qwen2_5_VLForConditionalGeneration
model_id = "path-or-hf-repo-id"
processor = AutoProcessor.from_pretrained(model_id)
model = Qwen2_5_VLForConditionalGeneration.from_pretrained(model_id)
For benchmark reproduction, place this checkpoint at:
model/original_model/Qwen2.5-VL-7B-original
and pass it as --original_dir in the S-MLLMUn training scripts.