AlekseyCalvin commited on
Commit
0b34b9c
·
verified ·
1 Parent(s): 717643a

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
+ MGT style tourist magnet collaging landmarks and symbols of , clipart, vector art cartoon, cityscape collage
16
+ ---
17
+ ## MGT Style City Fridge Magnet Flux LoRA
18
+ ## ||||||| By SilverAgePoets.com |||||||
19
+ For generating landscape/horizontal-aspect ratio images collaging the iconic landmarks of a specified cities, and reminiscent of tourist-oriented commercial art found on fridge magnets at souvenir shops. <br>
20
+
21
+ <Gallery />
22
+
23
+ ## Trigger words
24
+ You should use `MGT style tourist magnet collaging landmarks and symbols of ` + ____ (insert city after), + (optionally) `clipart, vector art cartoon, cityscape collage, with overall composition which is bright, colorful, crisp, balanced, and lively, showcasing the city's various attractions and symbols, professional quality commercial art`.
25
+
26
+
27
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
28
+
29
+ ```py
30
+ from diffusers import AutoPipelineForText2Image
31
+ import torch
32
+
33
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
34
+ pipeline.load_lora_weights('AlekseyCalvin/Olga_Rozanova_Style_LoRA_Var2_BySilverAgePoets')
35
+ image = pipeline('your prompt').images[0]
36
+ ```
37
+