Diego229/Minecraft
010
1---2tags:3- text-to-image4- flux5- lora6- diffusers7- template:sd-lora8widget:9- text: >-10 a coca cola can "sacred elixir" arcana in the style of TOK a trtcrd, tarot11 style12 output:13 url: >-14 images/7e180627edd846e899b6cd307339140d_5b2a09f0842c476b83b6bd2cb9143a52.png15- text: >-16 a person giving a ted talk on a TED stage with the TED logo, "the speaker"17 in the style of TOK a trtcrd, tarot style18 output:19 url: >-20 images/e04f78fe65274f8d8db2598693ab9300_4a6c854c99534da9a878b0ce7940e146.png21- text: >-22 a trtcrd of a person on a computer, on the computer you see a meme being23 made with an ancient looking trollface, "the shitposter" arcana, in the24 style of TOK a trtcrd, tarot style25 output:26 url: >-27 images/e5f2761e5d474e6ba492d20dca0fa26f_e78f1524074b42b6ac49643ffad50ac6.png28- text: a work cubicle in the style of TOK a trtcrd, tarot style29 output:30 url: >-31 images/05732ed81b2a44b5a27a3281b298fe2a_a35e6d1091924b65bb751e2156ede234.png32- text: a dog eating pasta, in the style of TOK a trtcrd, tarot style33 output:34 url: >-35 images/a1a8466576514faa9119fab78d7aa4a2_fba6e09c329a49a2b5fcf57ec29a8d56.png36- text: >-37 a man cutting meat from a kebab vertical rotisserie, it reads "Döner" in the38 style of TOK a trtcrd, tarot style39 output:40 url: >-41 images/1c3e07c46cb341caa96fe668a4bb1777_025eb7c596fe4c2da20958b4f07418ef.png42base_model: black-forest-labs/FLUX.1-dev43instance_prompt: in the style of TOK a trtcrd tarot style44license: other45license_name: flux-1-dev-non-commercial-license46license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md47inference:48 parameters:49 width: 76850 height: 102451datasets:52- multimodalart/1920-raider-waite-tarot-public-domain53---54# FLUX Tarot v155 56<Gallery />57 58## Model description 59 60A tarot card LoRA trained with the public domain card set of Raider Waite 1920. [Dataset](https://huggingface.co/datasets/multimodalart/1920-raider-waite-tarot-public-domain)61 62Trained with [fal-ai trainer](https://fal.ai/models/fal-ai/flux-lora-general-training?a=1) based on the open source trainer [ostris AI Toolkit](https://github.com/ostris/ai-toolkit).63 64## Trigger words65 66You should use `in the style of TOK a trtcrd tarot style` to trigger the image generation.67 68## Download model69 70Weights for this model are available in Safetensors format.71 72[Download](/multimodalart/flux-tarot-v1/tree/main) them in the Files & versions tab.73 74## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)75 76```py77from diffusers import AutoPipelineForText2Image78import torch79 80pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')81pipeline.load_lora_weights('multimodalart/flux-tarot-v1', weight_name='flux_tarot_v1_lora.safetensors')82image = pipeline('in the style of TOK a trtcrd tarot style').images[0]83```