Views
No views yet
| Variant | Base model | Precision | Strength anchors | Status |
|---|---|---|---|---|
qwenimage_edit_2509 | Qwen/Qwen-Image-Edit-2509 | BF16 | 0.1–0.9 | Available |
1StyleController/
2├── README.md
3├── MODEL_CARD.md
4├── LICENSE
5├── NOTICE
6├── model_manifest.json
7└── qwenimage_edit_2509/
8 ├── README.md
9 ├── stylecontroller_config.json
10 ├── checksums.sha256
11 ├── styctrl_qwenimage_edit_2509.safetensors
12 └── projectors/
13 ├── s01.safetensors
14 ├── ...
15 └── s09.safetensors1pip install -U huggingface_hub
2
3hf download ReyChiaro/StyleController \
4 --include "qwenimage_edit_2509/*" \
5 --local-dir hf_weights1git clone https://github.com/ReyChiaro/StyleController.git
2cd StyleController
3uv sync0.55:1uv run python infer_styctrl.py \
2 --model qwen \
3 --pretrained-pipeline Qwen/Qwen-Image-Edit-2509 \
4 --content examples/content.jpg \
5 --style examples/style.jpg \
6 --prompt "Transfer the style of image 2 to image 1 while preserving the content structure." \
7 --strength 0.55 \
8 --output outputs/result_055.png \
9 --lora-checkpoint hf_weights/qwenimage_edit_2509/styctrl_qwenimage_edit_2509.safetensors \
10 --projector-checkpoints \
11 hf_weights/qwenimage_edit_2509/projectors/s01.safetensors \
12 hf_weights/qwenimage_edit_2509/projectors/s02.safetensors \
13 hf_weights/qwenimage_edit_2509/projectors/s03.safetensors \
14 hf_weights/qwenimage_edit_2509/projectors/s04.safetensors \
15 hf_weights/qwenimage_edit_2509/projectors/s05.safetensors \
16 hf_weights/qwenimage_edit_2509/projectors/s06.safetensors \
17 hf_weights/qwenimage_edit_2509/projectors/s07.safetensors \
18 hf_weights/qwenimage_edit_2509/projectors/s08.safetensors \
19 hf_weights/qwenimage_edit_2509/projectors/s09.safetensors \
20 --anchor-strengths 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9NOTICE.1@misc{xu2026stayingtrueorigincontinuous,
2 title={Staying True to the Origin: Continuous Image Stylization with Smooth Transitions},
3 author={Rui Xu and Hanmo Zhang and Songhua Liu},
4 year={2026},
5 eprint={2608.08125},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2608.08125},
9}