multimodalart/1920-raider-waite-tarot-public-domain
Viewer • Updated • 78 • 323 • 55
How to use Diego229/comic2 with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("Diego229/comic2")
prompt = "a coca cola can \"sacred elixir\" arcana in the style of TOK a trtcrd, tarot style"
image = pipe(prompt).images[0]import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("Diego229/comic2")
prompt = "a coca cola can \"sacred elixir\" arcana in the style of TOK a trtcrd, tarot style"
image = pipe(prompt).images[0]





A tarot card LoRA trained with the public domain card set of Raider Waite 1920. Dataset
Trained with fal-ai trainer based on the open source trainer ostris AI Toolkit.
You should use in the style of TOK a trtcrd tarot style to trigger the image generation.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('multimodalart/flux-tarot-v1', weight_name='flux_tarot_v1_lora.safetensors')
image = pipeline('in the style of TOK a trtcrd tarot style').images[0]
Base model
black-forest-labs/FLUX.1-dev