YAML Metadata Warning: empty or missing yaml metadata in repo card

Check out the documentation for more information.

Qwen2-VL-7B Category LoRA Adapters

This repository contains LoRA (Low-Rank Adaptation) adapters for the Qwen2-VL-7B-Instruct model, fine-tuned on different task categories.

Model Description

These LoRA adapters were trained using federated learning approaches on category-specific datasets from the FedMABench benchmark. Each category contains:

  • v0: Initial training checkpoint (ๅŸบ็ก€่ฎญ็ปƒๅŽ็š„ๅˆๅง‹LoRA)
  • global_lora_10: Global aggregated LoRA after 10 rounds of federated learning (็ฌฌ10่ฝฎ่”้‚ฆๅญฆไน ่šๅˆๅŽ็š„ๅ…จๅฑ€LoRA)

Available Categories

Category v0 Checkpoint Global LoRA (Round 10) Training Version
Entertainment โœ… checkpoint-387 โœ… global_lora_10 v0-20260131-213955
Lives โœ… checkpoint-500 โœ… global_lora_10 v0-20260201-080741
Office โœ… checkpoint-1000 โœ… global_lora_10 v0-20260131-211441
Shopping โœ… checkpoint-1000 โœ… global_lora_10 v0-20260201-062221
Traveling โœ… checkpoint-500 โœ… global_lora_10 v0-20260131-211143

Directory Structure

qwen2vl-7b-lora-categories/
โ”œโ”€โ”€ Entertainment/
โ”‚   โ”œโ”€โ”€ v0/                 # Initial checkpoint LoRA
โ”‚   โ””โ”€โ”€ global_lora_10/     # Round 10 federated LoRA
โ”œโ”€โ”€ Lives/
โ”‚   โ”œโ”€โ”€ v0/
โ”‚   โ””โ”€โ”€ global_lora_10/
โ”œโ”€โ”€ Office/
โ”‚   โ”œโ”€โ”€ v0/
โ”‚   โ””โ”€โ”€ global_lora_10/
โ”œโ”€โ”€ Shopping/
โ”‚   โ”œโ”€โ”€ v0/
โ”‚   โ””โ”€โ”€ global_lora_10/
โ””โ”€โ”€ Traveling/
    โ”œโ”€โ”€ v0/
    โ””โ”€โ”€ global_lora_10/

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 category LoRA (e.g., Entertainment global_lora_10)
model = PeftModel.from_pretrained(
    base_model,
    "bmh201708/qwen2vl-7b-lora-categories",
    subfolder="Entertainment/global_lora_10"
)

Loading with Hugging Face Hub

from huggingface_hub import snapshot_download

# Download specific category LoRA
local_path = snapshot_download(
    repo_id="bmh201708/qwen2vl-7b-lora-categories",
    allow_patterns=["Entertainment/global_lora_10/*"]
)

Base Model

Training Details

These LoRAs were trained as part of the FedMABench (Federated Mobile Agent Benchmark) project for mobile GUI agent tasks. Each category represents different application domains:

  • Entertainment: Games, media, entertainment apps
  • Lives: Daily life, utility apps
  • Office: Productivity, document, work-related apps
  • Shopping: E-commerce, shopping apps
  • Traveling: Travel, navigation, tourism apps

License

Please refer to the Qwen2-VL license for usage terms.

Citation

If you use these LoRA adapters, please cite the FedMABench project.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support