diagnostic-copilot-api / train_multimodal.py
hssling's picture
Fix SFTTrainer kwargs error by migrating to standard Trainer
d3e4905
import torch
from transformers import AutoProcessor, Qwen2VLForConditionalGeneration, TrainingArguments, Trainer
from peft import LoraConfig, get_peft_model
from datasets import load_dataset
import os
from huggingface_hub import login
# 1. Configuration for Kaggle/HuggingFace Fine-Tuning
MODEL_ID = "Qwen/Qwen2-VL-2B-Instruct" # Small, highly capable multimodal model perfect for medical VQA
DATASET_ID = "flaviagiammarino/vqa-rad" # Example Medical VQA dataset (Radiology)
OUTPUT_DIR = "./med-qwen-vl-adapter"
HF_HUB_REPO = "hssling/med-qwen-vl-adapter" # Replace with your planned target repo name
def main():
# Attempt to authenticate with Hugging Face via Kaggle Secrets
try:
from kaggle_secrets import UserSecretsClient
user_secrets = UserSecretsClient()
hf_token = user_secrets.get_secret("HF_TOKEN")
login(token=hf_token)
print("Successfully logged into Hugging Face Hub using Kaggle Secrets.")
except Exception as e:
print("Could not log in via Kaggle Secrets. If running locally, ensure you ran `huggingface-cli login`.", e)
print(f"Loading processor and model: {MODEL_ID}")
# Load processor and model with memory-efficient 4-bit quantization
processor = AutoProcessor.from_pretrained(MODEL_ID)
model = Qwen2VLForConditionalGeneration.from_pretrained(
MODEL_ID,
device_map="auto",
torch_dtype=torch.float16,
low_cpu_mem_usage=True,
)
# Apply LoRA (Low-Rank Adaptation)
print("Applying LoRA parameters...")
lora_config = LoraConfig(
r=16,
lora_alpha=32,
lora_dropout=0.05,
target_modules=["q_proj", "k_proj", "v_proj", "o_proj"], # Attention layers
bias="none",
)
model = get_peft_model(model, lora_config)
model.print_trainable_parameters()
# Load and format the dataset
print(f"Loading dataset: {DATASET_ID}")
dataset = load_dataset(DATASET_ID, split="train[:50%]") # Use subset for demonstration
def format_data(example):
# We need to format the inputs as required by the specific model
# For Qwen2-VL:
messages = [
{
"role": "user",
"content": [
{"type": "image"},
{"type": "text", "text": example["question"]}
]
},
{
"role": "assistant",
"content": [
{"type": "text", "text": example["answer"]}
]
}
]
text = processor.apply_chat_template(messages, tokenize=False, add_generation_prompt=False)
return {"text": text, "image": example["image"]}
formatted_dataset = dataset.map(format_data, remove_columns=dataset.column_names)
# Setup Training Arguments
training_args = TrainingArguments(
output_dir=OUTPUT_DIR,
per_device_train_batch_size=2,
gradient_accumulation_steps=4,
learning_rate=2e-4,
logging_steps=10,
max_steps=100, # Set low for quick Kaggle demonstration
save_strategy="steps",
save_steps=50,
fp16=True,
optim="paged_adamw_8bit",
remove_unused_columns=False,
report_to="none" # Disable wandb for seamless Kaggle runs
)
# Custom Data Collator for Vision-Language Models
def collate_fn(examples):
texts = [ex["text"] for ex in examples]
images = [ex["image"] for ex in examples]
batch = processor(
text=texts,
images=images,
padding=True,
return_tensors="pt"
)
# Labels are the same as input_ids for standard causal LM training
batch["labels"] = batch["input_ids"].clone()
return batch
# Train using standard Trainer (SFTTrainer had version conflicts and we already format manually)
print("Starting fine-tuning...")
trainer = Trainer(
model=model,
args=training_args,
train_dataset=formatted_dataset,
data_collator=collate_fn
)
trainer.train()
# Save the adapter locally
print(f"Saving fine-tuned adapter to {OUTPUT_DIR}")
trainer.save_model(OUTPUT_DIR)
processor.save_pretrained(OUTPUT_DIR)
# 💥 NEW: Push the final trained weights automatically to your Hugging Face Hub!
print(f"Pushing model weights to Hugging Face Hub: {HF_HUB_REPO}...")
try:
trainer.model.push_to_hub(HF_HUB_REPO)
processor.push_to_hub(HF_HUB_REPO)
print(f"✅ Success! Your model is now live at: https://huggingface.co/{HF_HUB_REPO}")
print("You can now update your Gradio App.py to pull ADAPTER_ID from this repository!")
except Exception as e:
print(f"❌ Failed to push to Hugging Face Hub. Error: {e}")
print("Make sure you set your HF_TOKEN in Kaggle Secrets with WRITE permissions.")
if __name__ == "__main__":
main()