Image Generation
Collection
All of my image generator paraphernalia in one place! • 14 items • Updated • 3
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("glides/illustriousxl", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("nroggendorff/fries-style")
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0]These are LoRA adaption weights for glides/illustriousxl. The weights were fine-tuned on the nroggendorff/fries dataset. You can find some example images in the following.
LoRA for the text encoder was enabled: False.
Special VAE used for training: None.
# TODO: add an example code snippet for running this diffusion pipeline
[TODO: provide examples of latent issues and potential remediations]
[TODO: describe the data used to train the model]
Base model
glides/illustriousxl