yongxianwei's picture
Upload Geometry Understanding LoRA adapter
f7bedde verified
metadata
license: apache-2.0
base_model: Qwen/Qwen2.5-VL-32B
tags:
  - qwen2.5-vl
  - lora
  - vision-language
  - geometry understanding
library_name: transformers

Qwen2.5-VL-32B-Geometry

This is a LoRA adapter for Qwen2.5-VL-32B fine-tuned on Geometry Understanding tasks.

Model Details

  • Base Model: Qwen/Qwen2.5-VL-32B
  • Task: Geometry Understanding
  • Training Method: LoRA (Low-Rank Adaptation)
  • Framework: Transformers

Usage

from transformers import AutoModelForVision2Seq, AutoProcessor
from peft import PeftModel

# Load base model
base_model = AutoModelForVision2Seq.from_pretrained(
    "Qwen/Qwen2.5-VL-32B",
    trust_remote_code=True
)

# Load LoRA adapter
model = PeftModel.from_pretrained(base_model, "yongxianwei/Qwen2.5-VL-32B-Geometry")
processor = AutoProcessor.from_pretrained("Qwen/Qwen2.5-VL-32B", trust_remote_code=True)

# Inference
# ... your inference code ...

Training Details

Fine-tuned using LoRA on specific Geometry Understanding datasets.

Citation

@misc{qwen2.5-vl-geometry understanding,
  author = {Yongxian Wei},
  title = {Qwen2.5-VL LoRA for Geometry Understanding},
  year = {2024},
  publisher = {Hugging Face},
  url = {https://huggingface.co/yongxianwei/Qwen2.5-VL-32B-Geometry}
}