AlekseyCalvin commited on
Commit
0b0bf8e
·
verified ·
1 Parent(s): 6da1712

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -3
README.md CHANGED
@@ -1,3 +1,34 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ base_model:
6
+ - black-forest-labs/FLUX.1-dev
7
+ tags:
8
+ - lora
9
+ - flux
10
+ - diffusers
11
+ - image-generation
12
+ pipeline_tag: text-to-image
13
+ library_name: diffusers
14
+ instance_prompt: Gerda Wegener style painting, artwork
15
+ ---
16
+ ## Gerda Wegener Style FLUX LoRA
17
+ ## ||| By SilverAgePoets.com |||
18
+
19
+ ## Trigger words
20
+ You should use `Gerda Wegener style painting` to bring in the style of this most universal of portraitists.
21
+
22
+ <Gallery />
23
+
24
+
25
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
26
+
27
+ ```py
28
+ from diffusers import AutoPipelineForText2Image
29
+ import torch
30
+
31
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
32
+ pipeline.load_lora_weights('AlekseyCalvin/GerdaWegener_Style_FluxLoRA_bySilverAgePoets')
33
+ image = pipeline('your prompt').images[0]
34
+ ```