AlekseyCalvin commited on
Commit
27fefcd
โ€ข
1 Parent(s): 8b07fef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -3
README.md CHANGED
@@ -1,3 +1,33 @@
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: PILLZAR style commercial marketing promo image featuring a "PILLZAR" brand stackable medication dispenser with built-in magnet.
15
+ ---
16
+
17
+ ## PILLZAR Content Generator Flux LoRA Var. II
18
+ ## ___||||||| By SilverAgePoets.com |||||||___
19
+
20
+ <Gallery />
21
+
22
+ ## Trigger words
23
+ You should use `PILLZAR style commercial marketing promo image featuring a "PILLZAR" brand medication organizer system with stackable dispenser containers & a time-alarm component` or/and `PILLZAR style marketing brochure by "PILLZAR"`.<br>
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/Pillzar_Style_FluxLoRA_var2_BySilverAgePoets')
33
+ image = pipeline('your prompt').images[0]