Text-to-Image
PEFT
Safetensors
stable-diffusion
stable-diffusion-3.5
lora
flow-grpo
solace
reinforcement-learning
Instructions to use wookiekim/SD3.5L-SOLACE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use wookiekim/SD3.5L-SOLACE with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
Configuration Parsing Warning:In adapter_config.json: "peft.base_model_name_or_path" must be a string
Configuration Parsing Warning:In adapter_config.json: "peft.task_type" must be a string
SD3.5L-SOLACE
LoRA adapter from SOLACE (Self-cOnfidence reward for aLigning text-to-imAge models via ConfidencE optimization), CVPR 2026.
SOLACE applied to Stable Diffusion 3.5 Large, using the model's own denoising confidence as an intrinsic reward (no external reward model at training time).
- Base model:
stabilityai/stable-diffusion-3.5-large - Method: SOLACE intrinsic self-confidence reward (built on Flow-GRPO)
- Code: https://github.com/wookiekim/SOLACE
- Adapter type: PEFT LoRA (rank 32, applied to the SD3 transformer attention projections)
Usage
import torch
from diffusers import StableDiffusion3Pipeline
from peft import PeftModel
model_id = "stabilityai/stable-diffusion-3.5-large"
lora_ckpt_path = "wookiekim/SD3.5L-SOLACE"
device = "cuda"
# Load base model and apply the SOLACE LoRA adapter
pipe = StableDiffusion3Pipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe.transformer = PeftModel.from_pretrained(pipe.transformer, lora_ckpt_path)
pipe.transformer = pipe.transformer.merge_and_unload()
pipe = pipe.to(device)
prompt = "a photo of a cat wearing a small red hat"
image = pipe(
prompt,
height=1024,
width=1024,
num_inference_steps=40,
guidance_scale=4.5,
negative_prompt="",
).images[0]
image.save("solace.png")
Citation
@inproceedings{kim2026solace,
title={Improving Text-to-Image Generation with Intrinsic Self-Confidence Rewards},
author={Kim, Wookyoung and others},
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
year={2026}
}
Acknowledgments
This work builds upon Flow-GRPO by Jie Liu et al.
- Downloads last month
- 17
Model tree for wookiekim/SD3.5L-SOLACE
Base model
stabilityai/stable-diffusion-3.5-large