CoolFace
Modelpublic

AlekseyCalvin/Vaporwave_Tarot_SDXL_lora_2023_SilverAgePoets

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
1likes39downloads
Model Card

VAPORWAVE STYLE TAROT LowRankAdaptor (LoRA) for StableDiffusion SDXL Models

(a Tarot card style LoRA we made back around mid 2023)

<Gallery />

Trigger words

You should use VTR vaporwave style tarot card

Use it with the 🧨 diffusers library

py
from diffusers import AutoPipelineForText2Image
import torch

pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('AlekseyCalvin/Vaporwave_Tarot_SDXL_lora_2023_SilverAgePoets')
image = pipeline('your prompt').images[0]

For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers