Text-to-Image
Diffusers
flux
lora
template:sd-lora
File size: 2,960 Bytes
d6300eb
 
 
3773668
d6300eb
 
 
 
610efb2
 
 
 
 
 
 
 
 
 
 
 
a213d6c
 
 
 
 
 
 
d6300eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d2700dd
 
 
a213d6c
 
 
 
34164fa
 
d6300eb
32c2f23
d6300eb
 
 
 
 
 
 
766e8d0
d6300eb
 
 
 
 
 
 
 
 
 
32c2f23
 
 
 
 
 
 
4fea2dd
32c2f23
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
tags:
- text-to-image
- flux
- lora
- diffusers
- template:sd-lora
widget:
- text: >-
    a coca cola can "sacred elixir" arcana in the style of TOK a trtcrd, tarot
    style
  output:
    url: >-
      images/7e180627edd846e899b6cd307339140d_5b2a09f0842c476b83b6bd2cb9143a52.png
- text: >-
    a person giving a ted talk on a TED stage with the TED logo, "the speaker"
    in the style of TOK a trtcrd, tarot style
  output:
    url: >-
      images/e04f78fe65274f8d8db2598693ab9300_4a6c854c99534da9a878b0ce7940e146.png
- text: >-
    a trtcrd of a person on a computer, on the computer you see a meme being
    made with an ancient looking trollface, "the shitposter" arcana, in the
    style of TOK a trtcrd, tarot style
  output:
    url: >-
      images/e5f2761e5d474e6ba492d20dca0fa26f_e78f1524074b42b6ac49643ffad50ac6.png
- text: a work cubicle in the style of TOK a trtcrd, tarot style
  output:
    url: >-
      images/05732ed81b2a44b5a27a3281b298fe2a_a35e6d1091924b65bb751e2156ede234.png
- text: a dog eating pasta, in the style of TOK a trtcrd, tarot style
  output:
    url: >-
      images/a1a8466576514faa9119fab78d7aa4a2_fba6e09c329a49a2b5fcf57ec29a8d56.png
- text: >-
    a man cutting meat from a kebab vertical rotisserie, it reads "Döner" in the
    style of TOK a trtcrd, tarot style
  output:
    url: >-
      images/1c3e07c46cb341caa96fe668a4bb1777_025eb7c596fe4c2da20958b4f07418ef.png
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: in the style of TOK a trtcrd tarot style
license: other
license_name: flux-1-dev-non-commercial-license
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
inference:
  parameters:
    width: 768
    height: 1024
datasets:
- multimodalart/1920-raider-waite-tarot-public-domain
---
# FLUX Tarot v1

<Gallery />

## Model description 

A tarot card LoRA trained with the public domain card set of Raider Waite 1920. [Dataset](https:&#x2F;&#x2F;huggingface.co&#x2F;datasets&#x2F;multimodalart&#x2F;1920-raider-waite-tarot-public-domain)

Trained 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).

## Trigger words

You should use `in the style of TOK a trtcrd tarot style` to trigger the image generation.

## Download model

Weights for this model are available in Safetensors format.

[Download](/multimodalart/flux-tarot-v1/tree/main) them in the Files & versions tab.

## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)

```py
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]
```