rikhoffbauer2 commited on
Commit
fa1dc96
·
verified ·
1 Parent(s): 18463ef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -3
README.md CHANGED
@@ -1,3 +1,45 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: black-forest-labs/FLUX.1-schnell
3
+ license: apache-2.0
4
+ tags:
5
+ - spacerunner
6
+ - text-to-image
7
+ - flux
8
+ - lora
9
+ - diffusers
10
+ - template:sd-lora
11
+ widget:
12
+ - text: An abstract painting of seaweed painted using green acrylic paint on a black
13
+ background in the style of a seaweed painting
14
+ output:
15
+ url: samples/1726005165490__000001000_0.jpg
16
+ instance_prompt: in the style of a seaweed painting
17
+ ---
18
+
19
+ # naomi-makkelie-seaweed-painting
20
+ Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit)
21
+ <Gallery />
22
+
23
+ ## Trigger words
24
+
25
+ You should use `in the style of a seaweed painting` to trigger the image generation.
26
+
27
+ ## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
28
+
29
+ Weights for this model are available in Safetensors format.
30
+
31
+ [Download](/rikhoffbauer2/naomi-makkelie-seaweed-painting/tree/main) them in the Files & versions tab.
32
+
33
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
34
+
35
+ ```py
36
+ from diffusers import AutoPipelineForText2Image
37
+ import torch
38
+
39
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-schnell', torch_dtype=torch.bfloat16).to('cuda')
40
+ pipeline.load_lora_weights('rikhoffbauer2/naomi-makkelie-seaweed-painting', weight_name='naomi-makkelie-seaweed-painting')
41
+ image = pipeline('An abstract painting of seaweed painted using green acrylic paint on a black background in the style of a seaweed painting').images[0]
42
+ image.save("my_image.png")
43
+ ```
44
+
45
+ For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)