Views
No views yet
Qwen/Qwen-Image-Edit-2511 to get a model that better preserves product identity (color, shape, logo) during image editing.Qwen/Qwen-Image-Edit-25111from peft import PeftModel
2from huggingface_hub import snapshot_download
3
4# Load base model (via DiffSynth-Studio)
5# See https://github.com/Matteoooo46/ReCoEdit for full inference script
6lora_path = snapshot_download("Matteoooo46/ReCoEdit-RL")
7pipe.load_lora(pipe.dit, lora_path + "/adapter_model.safetensors")1@misc{recoedit2025,
2 title={ReCoEdit: Rewriter-Guided Consistency Alignment for Product Image Editing},
3 author={},
4 year={2025},
5 howpublished={\url{https://github.com/Matteoooo46/ReCoEdit}},
6}