Views
No views yet
an icon of trpfrog to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained(
5 'stabilityai/stable-diffusion-3.5-large',
6 torch_dtype=torch.float16
7).to('cuda')
8
9pipeline.load_lora_weights(
10 'Prgckwb/trpfrog-sd3.5-large-lora',
11 weight_name='pytorch_lora_weights.safetensors'
12)
13image = pipeline('an icon of trpfrog').images[0]
14image.save('trpfrog.png')pytorch_lora_weights.safetensors here 💾.
models/Lora folder.<lora:your_new_name:1> to your prompt. On ComfyUI just load it as a regular LoRA.