AlekseyCalvin commited on
Commit
ef5a5f3
·
verified ·
1 Parent(s): 385ff8a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -3
README.md CHANGED
@@ -1,3 +1,37 @@
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
+ photo of a soonr style sculpture, Modern Sculpture
16
+ ---
17
+
18
+ ## (Meta-)Modern Sculpture Flux LoRA
19
+ ## ||| By SilverAgePoets.com |||
20
+
21
+ Fine-tuned on an eclectic mix of sculptures, monuments, & installations – most of them crafted in the 21st century – via photos taken at a range of European museums and galleries. <br>
22
+
23
+ <Gallery />
24
+
25
+ ## Trigger words
26
+ You should use `photo of a soonr style sculpture`, and/or (optionally) `Modern Sculpture`, or ` Meta-Modern Monument`, to create your own simulacral memory of meaning via dimensioned form. <br>
27
+
28
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
29
+
30
+ ```py
31
+ from diffusers import AutoPipelineForText2Image
32
+ import torch
33
+
34
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
35
+ pipeline.load_lora_weights('AlekseyCalvin/Modern_Sculpture_FLUXlora_BySilverAgePoets')
36
+ image = pipeline('your prompt').images[0]
37
+ ```