AlekseyCalvin commited on
Commit
908f06f
·
verified ·
1 Parent(s): 55dbe69

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -3
README.md CHANGED
@@ -1,3 +1,35 @@
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: >-
15
+ bulbart style sculpture installation photo
16
+ ---
17
+
18
+ ## Albany Bulb Sculptures & Arts Flux LoRA
19
+ ## ||| By SilverAgePoets.com |||
20
+
21
+ <Gallery />
22
+
23
+ ## Trigger words
24
+ You should use `bulbart style sculpture` or/and `bulbart style sculptures` or/and `bulbart style art installation` or `photo of a bulbart style autonomous zone scenery with statues of_____` to diffuse forth the liberated and undisposably sublime, if also very mildly radioactive, phantom of a once-liberated enclave. <br>
25
+
26
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
27
+
28
+ ```py
29
+ from diffusers import AutoPipelineForText2Image
30
+ import torch
31
+
32
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
33
+ pipeline.load_lora_weights('AlekseyCalvin/ArtAtTheBulb_LoRA_bySilverAgePoets')
34
+ image = pipeline('your prompt').images[0]
35
+ ```