Views
No views yet
| Model | TPS | Server Score |
|---|---|---|
| OptimAI (ours) | 30.48 | 0.827 |
Qwen/Qwen2-VL-2B-Instruct for AI-generated-image detection on the LPCVC 2026 Track 3 benchmark. After merging this adapter into the base model, the result is quantized via Qualcomm AIMET to W4A16 and exported as a QNN binary for Snapdragon 8 Gen 5.| Parameter | Value |
|---|---|
| LoRA r | 64 |
| LoRA alpha | 128 |
| Learning rate | 3e-4 |
| Batch size | 4 per GPU × 3 |
| Gradient accumulation | 2 |
| Epochs | 5 |
| Label smoothing | 0.05 |
| Attention | sdpa |
| Sequence length | 2048 |
| Image resolution | 342 × 512 |
gnzrg25/LPCVC2026-Track3-Finetune-64k1from peft import PeftModel
2from transformers import Qwen2VLForConditionalGeneration, AutoProcessor
3
4base = Qwen2VLForConditionalGeneration.from_pretrained("Qwen/Qwen2-VL-2B-Instruct")
5model = PeftModel.from_pretrained(base, "gnzrg25/Qwen2VL-2B-AIGID-LoRA")
6processor = AutoProcessor.from_pretrained("gnzrg25/Qwen2VL-2B-AIGID-LoRA")python train/merge_lora.py --lora_path <local-path> --output_dir mergedQwen/Qwen2-VL-2B-Instruct is governed by its own Apache 2.0 license.1@inproceedings{optimai2026lpcvc,
2 title = {OptimAI: 1st Place Solution for LPCVC 2026 Track 3},
3 author = {{OptimAI Team}},
4 booktitle = {ECV Workshop @ CVPR},
5 year = {2026}
6}