nielsr HF Staff commited on
Commit
1f09ad0
·
verified ·
1 Parent(s): 1b1b2bc

Add paper link, project page, repository, and usage instructions

Browse files

This PR updates the model card for the `qwen2vl_32b` prompt-enrichment checkpoint from PIPBench. It links the checkpoint to the official paper, project page, and GitHub repository, specifies the MIT license in the metadata, and adds usage instructions directly from the official repository.

Files changed (1) hide show
  1. README.md +27 -7
README.md CHANGED
@@ -1,15 +1,35 @@
1
  ---
 
2
  library_name: transformers
3
  pipeline_tag: image-text-to-text
4
- base_model: Qwen/Qwen2.5-VL-32B-Instruct
5
  ---
6
 
7
  # qwen2vl_32b
8
 
9
- This is a PE-finetuned Qwen2.5-VL prompt-enrichment checkpoint for PIPBench.
10
- It takes PIPBench reference images plus the original text prompt and outputs an
11
- enriched prompt. Generate final images by running Qwen-Image with the enriched
12
- prompt.
 
 
 
 
 
 
 
 
 
 
 
13
 
14
- These weights come from the PIPBench codex/ablations/PE experiments and are
15
- not QIP checkpoints.
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model: Qwen/Qwen2.5-VL-32B-Instruct
3
  library_name: transformers
4
  pipeline_tag: image-text-to-text
5
+ license: mit
6
  ---
7
 
8
  # qwen2vl_32b
9
 
10
+ This is a PE-finetuned Qwen2.5-VL prompt-enrichment checkpoint for PIPBench, presented in the paper [PIPBench: A Profile-Inclusive Framework for Personalized Image Generation Evaluation](https://huggingface.co/papers/2607.06440).
11
+
12
+ It takes PIPBench reference images plus the original text prompt and outputs an enriched prompt. Generate final images by running Qwen-Image with the enriched prompt.
13
+
14
+ These weights come from the PIPBench codex/ablations/PE experiments and are not QIP checkpoints.
15
+
16
+ ## Resources
17
+
18
+ - **Paper:** [PIPBench: A Profile-Inclusive Framework for Personalized Image Generation Evaluation](https://huggingface.co/papers/2607.06440)
19
+ - **Project Page:** [https://wuyuhang05.github.io/PIPBench/](https://wuyuhang05.github.io/PIPBench/)
20
+ - **Repository:** [https://github.com/wuyuhang05/PIPBench](https://github.com/wuyuhang05/PIPBench)
21
+
22
+ ## Usage
23
+
24
+ To generate enriched prompts using this 32B PE module, clone the [official repository](https://github.com/wuyuhang05/PIPBench) and run:
25
 
26
+ ```bash
27
+ bash scripts/enrich_prompts_qwen2vl.sh \
28
+ --model-id AirRain03/qwen2vl_32b \
29
+ --metadata data/pipbench/metadata.json \
30
+ --data-root data/pipbench \
31
+ --out outputs/prompts/qwen2vl_32b.jsonl \
32
+ --device-map auto \
33
+ --dtype bfloat16 \
34
+ --resume
35
+ ```