Text-to-Image
Diffusers
flux
lora
template:sd-lora
multimodalart HF staff commited on
Commit
4fea2dd
1 Parent(s): 32c2f23

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -73,7 +73,7 @@ Weights for this model are available in Safetensors format.
73
  from diffusers import AutoPipelineForText2Image
74
  import torch
75
 
76
- pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
77
  pipeline.load_lora_weights('multimodalart/flux-tarot-v1', weight_name='flux_tarot_v1_lora.safetensors')
78
  image = pipeline('in the style of TOK a trtcrd tarot style').images[0]
79
  ```
 
73
  from diffusers import AutoPipelineForText2Image
74
  import torch
75
 
76
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
77
  pipeline.load_lora_weights('multimodalart/flux-tarot-v1', weight_name='flux_tarot_v1_lora.safetensors')
78
  image = pipeline('in the style of TOK a trtcrd tarot style').images[0]
79
  ```