Norod78 commited on
Commit
c7757e9
1 Parent(s): 0e60644

Upload folder using huggingface_hub

Browse files
45639564.jpeg ADDED
45639565.jpeg ADDED
45639566.jpeg ADDED
45639567.jpeg ADDED
45639568.jpeg ADDED
45639569.jpeg ADDED
45639570.jpeg ADDED
45639571.jpeg ADDED
45639572.jpeg ADDED
45639573.jpeg ADDED
45639574.jpeg ADDED
45639575.jpeg ADDED
45639577.jpeg ADDED
45639578.jpeg ADDED
README.md ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - emoji
13
+ - style
14
+ - fluentui
15
+
16
+ base_model: black-forest-labs/FLUX.1-dev
17
+ instance_prompt: emoji
18
+ widget:
19
+ - text: 'The girl with a pearl earring emoji '
20
+
21
+ output:
22
+ url: >-
23
+ 45639568.jpeg
24
+ - text: 'Marge Simpson emoji '
25
+
26
+ output:
27
+ url: >-
28
+ 45639566.jpeg
29
+ - text: 'The Starry Night by Vincent van Gogh emoji '
30
+
31
+ output:
32
+ url: >-
33
+ 45639567.jpeg
34
+ - text: 'emoji woman playing the guitar, on stage, singing a song, laser lights, punk rocker '
35
+
36
+ output:
37
+ url: >-
38
+ 45639565.jpeg
39
+ - text: 'emoji woman with red hair, playing chess at the park, bomb going off in the background '
40
+
41
+ output:
42
+ url: >-
43
+ 45639569.jpeg
44
+ - text: 'emoji horse is a DJ at a night club, fish eye lens, smoke machine, lazer lights, holding a martini '
45
+
46
+ output:
47
+ url: >-
48
+ 45639571.jpeg
49
+ - text: 'A cute dog emoji '
50
+
51
+ output:
52
+ url: >-
53
+ 45639564.jpeg
54
+ - text: 'Snoop Dogg emoji '
55
+
56
+ output:
57
+ url: >-
58
+ 45639572.jpeg
59
+ - text: 'Wonderwoman emoji '
60
+
61
+ output:
62
+ url: >-
63
+ 45639574.jpeg
64
+ - text: 'American gothic by Grant Wood emoji '
65
+
66
+ output:
67
+ url: >-
68
+ 45639570.jpeg
69
+ - text: 'Elsa from frozen emoji '
70
+
71
+ output:
72
+ url: >-
73
+ 45639573.jpeg
74
+ - text: 'emoji bear building a log cabin in the snow covered mountains '
75
+
76
+ output:
77
+ url: >-
78
+ 45639575.jpeg
79
+ - text: 'emoji man showing off his cool new t shirt at the beach, a shark is jumping out of the water in the background '
80
+
81
+ output:
82
+ url: >-
83
+ 45639577.jpeg
84
+ - text: 'Rick Sanchez emoji '
85
+
86
+ output:
87
+ url: >-
88
+ 45639578.jpeg
89
+
90
+ ---
91
+
92
+ # ms fluentui style Emoji [FLUX]
93
+
94
+ <Gallery />
95
+
96
+
97
+
98
+ ([CivitAI](https://civitai.com/models/))
99
+
100
+ ## Model description
101
+
102
+ <p>Trained upon <a rel="ugc" href="https://github.com/microsoft/fluentui-emoji/tree/main">Microsoft's FluentUI</a>'s 3D Emoji asset collection. Trained with captions where each caption was the original file name with 'emoji' appended to it. So <strong>use <em>emoji </em>in your prompts</strong> to trigger the style. I'm aware that Flux is already very good with generating. emoji but I wanted to see how it will adapt to MS's FluentUI's style:</p><p><img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e053dc92-42ee-4cdc-9740-94c5a8afd0ff/width=525/e053dc92-42ee-4cdc-9740-94c5a8afd0ff.jpeg" />For reasons I could not figure (or solve), it will generate a very blurry result on occasion. I was not able to find any solution to this other than simply trying again with a different seed. Sorry for that</p>
103
+
104
+ ## Trigger words
105
+ You should use `emoji` to trigger the image generation.
106
+
107
+
108
+ ## Download model
109
+
110
+ Weights for this model are available in Safetensors format.
111
+
112
+ [Download](/Norod78/ms-fluentui-style-emoji-flux/tree/main) them in the Files & versions tab.
113
+
114
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
115
+
116
+ ```py
117
+ from diffusers import AutoPipelineForText2Image
118
+ import torch
119
+
120
+ device = "cuda" if torch.cuda.is_available() else "cpu"
121
+
122
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
123
+ pipeline.load_lora_weights('Norod78/ms-fluentui-style-emoji-flux', weight_name='ms-fluentui_emoji_flux_lora_000001750.safetensors')
124
+ image = pipeline('Rick Sanchez emoji ').images[0]
125
+ ```
126
+
127
+ 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)
128
+
ms-fluentui_emoji_flux_lora_000001750.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a66924f8432103cc0d0fa121b09b734e5de229a3bc1d7a5bbfd67f342822058
3
+ size 171969614