Add model card and metadata for UniEditBench distilled evaluator

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +59 -3
README.md CHANGED
@@ -1,3 +1,59 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: peft
4
+ pipeline_tag: image-text-to-text
5
+ base_model: Qwen/Qwen3-VL-4B-Instruct
6
+ tags:
7
+ - image-editing
8
+ - video-editing
9
+ - reward-model
10
+ - evaluation
11
+ ---
12
+
13
+ # UniEditBench Distilled Evaluator (4B LoRA)
14
+
15
+ This repository contains the distilled 4B MLLM judge (LoRA adapter) introduced in the paper [UniEditBench: A Unified and Cost-Effective Benchmark for Image and Video Editing via Distilled MLLMs](https://huggingface.co/papers/2604.15871).
16
+
17
+ UniEditBench is a unified benchmark for image and video editing that standardizes evaluation across different paradigms and modalities. To enable scalable and cost-effective evaluation, the authors distilled high-capacity MLLM judges (such as Qwen3-VL-235B) into lightweight 4B and 8B evaluators. These reward models provide multi-dimensional scoring across structural fidelity, text alignment, background consistency, naturalness, and (for videos) temporal-spatial consistency.
18
+
19
+ - **Paper:** [UniEditBench: A Unified and Cost-Effective Benchmark for Image and Video Editing via Distilled MLLMs](https://huggingface.co/papers/2604.15871)
20
+ - **GitHub Repository:** [wesar1/UniEditBench](https://github.com/wesar1/UniEditBench)
21
+ - **Dataset:** [UniEditBench Dataset](https://huggingface.co/datasets/wesar1/UniEditBench)
22
+
23
+ ## Usage
24
+
25
+ ### Deployment
26
+
27
+ The reward model can be deployed using the [swift](https://github.com/modelscope/swift) framework. Below is an example command to deploy the 4B image-based evaluator:
28
+
29
+ ```bash
30
+ CUDA_VISIBLE_DEVICES=0 swift deploy \
31
+ --model Qwen/Qwen3-VL-4B-Instruct \
32
+ --adapters /path/to/sft_image_lora_4b \
33
+ --device_map balanced \
34
+ --vllm_tensor_parallel_size 1 \
35
+ --attn_impl eager \
36
+ --infer_backend vllm \
37
+ --port 8003 \
38
+ --vllm_max_lora_rank 32 \
39
+ --max_new_tokens 2048 \
40
+ --served_model_name Qwen3-VL-4B-SFT-Image
41
+ ```
42
+
43
+ For video evaluation or 8B model scripts, please refer to the `scripts/deploy_qwen3vl.sh` file in the official GitHub repository.
44
+
45
+ ## Citation
46
+
47
+ If you find UniEditBench helpful, please cite the following work:
48
+
49
+ ```bibtex
50
+ @misc{jiang2026unieditbenchunifiedcosteffectivebenchmark,
51
+ title={UniEditBench: A Unified and Cost-Effective Benchmark for Image and Video Editing via Distilled MLLMs},
52
+ author={Lifan Jiang and Tianrun Wu and Yuhang Pei and Chenyang Wang and Boxi Wu and Deng Cai},
53
+ year={2026},
54
+ eprint={2604.15871},
55
+ archivePrefix={arXiv},
56
+ primaryClass={cs.CV},
57
+ url={https://arxiv.org/abs/2604.15871},
58
+ }
59
+ ```