YAML Metadata Warning: empty or missing yaml metadata in repo card
Check out the documentation for more information.
Qwen2-VL-7B App LoRA Adapters
This repository contains LoRA (Low-Rank Adaptation) adapters for the Qwen2-VL-7B-Instruct model, fine-tuned on different mobile application datasets.
Model Description
These LoRA adapters were trained using federated learning approaches on app-specific datasets from the FedMABench benchmark. Each app contains:
- v0: Initial training checkpoint (ๅบ็ก่ฎญ็ปๅ็ๅๅงLoRA)
- global_lora_10: Global aggregated LoRA after 10 rounds of federated learning (็ฌฌ10่ฝฎ่้ฆๅญฆไน ่ๅๅ็ๅ จๅฑLoRA)
Available Apps (14 total)
| App | v0 Checkpoint | Global LoRA (Round 10) | Training Version |
|---|---|---|---|
| adidas | โ checkpoint-108 | โ global_lora_10 | v0-20260131-111220 |
| amazon | โ checkpoint-312 | โ global_lora_10 | v0-20260130-190721 |
| calendar | โ checkpoint-129 | โ global_lora_10 | v0-20260131-131350 |
| clock | โ checkpoint-198 | โ global_lora_10 | v0-20260131-052630 |
| decathlon | โ checkpoint-63 | โ global_lora_10 | v0-20260131-122711 |
| ebay | โ checkpoint-219 | โ global_lora_10 | v0-20260130-223012 |
| etsy | โ checkpoint-60 | โ global_lora_10 | v0-20260131-202612 |
| flipkart | โ checkpoint-174 | โ global_lora_10 | v0-20260131-010305 |
| gmail | โ checkpoint-201 | โ global_lora_10 | v0-20260131-025059 |
| google_drive | โ checkpoint-63 | โ global_lora_10 | v0-20260131-103300 |
| google_maps | โ checkpoint-60 | โ global_lora_10 | v0-20260131-150323 |
| kitchen_stories | โ checkpoint-75 | โ global_lora_10 | v0-20260131-155209 |
| reminder | โ checkpoint-138 | โ global_lora_10 | v0-20260131-073315 |
| youtube | โ checkpoint-78 | โ global_lora_10 | v0-20260131-093519 |
Directory Structure
qwen2vl-7b-lora-apps/
โโโ adidas/
โ โโโ v0/ # Initial checkpoint LoRA
โ โโโ global_lora_10/ # Round 10 federated LoRA
โโโ amazon/
โ โโโ v0/
โ โโโ global_lora_10/
โโโ calendar/
โ โโโ v0/
โ โโโ global_lora_10/
... (14 apps total)
Usage
Loading with PEFT
from peft import PeftModel
from transformers import Qwen2VLForConditionalGeneration
# Load base model
base_model = Qwen2VLForConditionalGeneration.from_pretrained(
"Qwen/Qwen2-VL-7B-Instruct",
torch_dtype="auto",
device_map="auto"
)
# Load a specific app LoRA (e.g., amazon global_lora_10)
model = PeftModel.from_pretrained(
base_model,
"bmh201708/qwen2vl-7b-lora-apps",
subfolder="amazon/global_lora_10"
)
Loading with Hugging Face Hub
from huggingface_hub import snapshot_download
# Download specific app LoRA
local_path = snapshot_download(
repo_id="bmh201708/qwen2vl-7b-lora-apps",
allow_patterns=["amazon/global_lora_10/*"]
)
Base Model
- Model: Qwen/Qwen2-VL-7B-Instruct
- LoRA Library: PEFT 0.17.1
Training Details
These LoRAs were trained as part of the FedMABench (Federated Mobile Agent Benchmark) project for mobile GUI agent tasks. Each app represents a specific mobile application domain.
Related Repositories
- Category LoRAs: bmh201708/qwen2vl-7b-lora-categories - LoRAs organized by category (Entertainment, Lives, Office, Shopping, Traveling)
License
Please refer to the Qwen2-VL license for usage terms.
Citation
If you use these LoRA adapters, please cite the FedMABench project.
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support