Norod78 commited on
Commit
18928a8
·
verified ·
1 Parent(s): 9ad9165

Upload folder using huggingface_hub

Browse files
51613168.jpeg ADDED
51613171.jpeg ADDED
Pill_and_Candy_Mosaic_Style_FLUX.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9931eeb01cb0bdaf8fbe38647f97d58087805de48c01ca61ced6b7f1ea7bba4
3
+ size 19259296
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: bespoke-lora-trained-license
4
+ license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=False
5
+ tags:
6
+ - text-to-image
7
+ - stable-diffusion
8
+ - lora
9
+ - diffusers
10
+ - template:sd-lora
11
+ - migrated
12
+ - style
13
+ - mosaic
14
+ - candy
15
+ - pill
16
+ - pills
17
+ - candies
18
+
19
+ base_model: black-forest-labs/FLUX.1-dev
20
+ instance_prompt: Pill and Candy Mosaic
21
+ widget:
22
+ - text: 'Pill and Candy Mosaic. cute dog'
23
+
24
+ output:
25
+ url: >-
26
+ 51613168.jpeg
27
+ - text: 'Pill and Candy Mosaic. Two cyclists in the foreground and one in the background'
28
+
29
+ output:
30
+ url: >-
31
+ 51613171.jpeg
32
+
33
+ ---
34
+
35
+ # Pill and Candy Mosaic Style [FLUX]
36
+
37
+ <Gallery />
38
+
39
+
40
+
41
+ ([CivitAI](https://civitai.com/models/))
42
+
43
+ ## Model description
44
+
45
+ <p>Have <em>Pill and Candy Mosaic </em>in your prompts </p>
46
+
47
+ ## Trigger words
48
+ You should use `Pill and Candy Mosaic` to trigger the image generation.
49
+
50
+
51
+ ## Download model
52
+
53
+ Weights for this model are available in Safetensors format.
54
+
55
+ [Download](/Norod78/pill-and-candy-mosaic-style-flux/tree/main) them in the Files & versions tab.
56
+
57
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
58
+
59
+ ```py
60
+ from diffusers import AutoPipelineForText2Image
61
+ import torch
62
+
63
+ device = "cuda" if torch.cuda.is_available() else "cpu"
64
+
65
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
66
+ pipeline.load_lora_weights('Norod78/pill-and-candy-mosaic-style-flux', weight_name='Pill_and_Candy_Mosaic_Style_FLUX.safetensors')
67
+ image = pipeline('Pill and Candy Mosaic. Two cyclists in the foreground and one in the background').images[0]
68
+ ```
69
+
70
+ 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)
71
+