Crystals [FLUX+SDXL+PONY+1.5]
Model description
Trigger word (PONY): ral-crystalz
Trigger word (FLUX+SDXL+1.5): crystalz
☕ Buy me a coffee: https://ko-fi.com/ralfingerai
🍺 Join my discord: https://discord.gg/g5Pb8qNUuP
Trigger words
You should use crystalz
to trigger the image generation.
Download model
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
from diffusers import AutoPipelineForText2Image
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
pipeline.load_lora_weights('Keltezaa/crystals-flux-sdxl-pony-1-5', weight_name='ral-crystalz_flux.safetensors')
image = pipeline('a crystalz fantasy forest, mythical forest, purple orange and black ').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers