TrpFrog-Diffusion
Collection
Models for generating images of TrpFrog.
•
7 items
•
Updated
These are Prgckwb/trpfrog-sdxl-lora LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0.
The weights were trained using DreamBooth.
LoRA for the text encoder was enabled: False.
Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
You should use an icon of "trpfrog" to trigger the image generation.
from diffusers import DiffusionPipeline
import torch
base_model_id = 'stabilityai/stable-diffusion-xl-base-1.0'
lora_model_id = 'Prgckwb/trpfrog-sdxl-lora'
pipe = DiffusionPipeline.from_pretrained(
base_model_id, torch_dtype=torch.float16
).to("cuda")
pipe.load_lora_weights(lora_model_id)
image = pipe(
"an icon of trpfrog",
num_inference_steps=25
).images[0]
image.save('trpfrog.png')
Base model
stabilityai/stable-diffusion-xl-base-1.0