Image-to-Image
Diffusers
Safetensors
style-transfer
image-editing
controllable-generation
lora
stylecontroller
Instructions to use ReyChiaro/StyleController with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ReyChiaro/StyleController with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Qwen/Qwen-Image-Edit-2509", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("ReyChiaro/StyleController") prompt = "Turn this cat into a dog" input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png") image = pipe(image=input_image, prompt=prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
| StyleController model weights | |
| Copyright 2026 Rui Xu and contributors | |
| This product includes adapter weights intended for use with Qwen-Image-Edit-2509. | |
| Qwen-Image-Edit-2509 is developed by the Qwen team and is distributed under | |
| the Apache License, Version 2.0. The base-model files are not redistributed in | |
| this repository. | |
| Base model: | |
| https://huggingface.co/Qwen/Qwen-Image-Edit-2509 | |
| StyleController source code is distributed separately under the MIT License: | |
| https://github.com/ReyChiaro/StyleController | |
| Training-data documentation is maintained separately: | |
| https://huggingface.co/datasets/ReyChiaro/SmoothStyle | |
| The license for these model weights does not replace or expand the licenses, | |
| terms, provenance requirements, or third-party rights that apply to the base | |
| model, training data, input images, or generated outputs. | |