multimodalart HF staff commited on
Commit
247d675
1 Parent(s): d63e49c

Initial commit

Browse files
Files changed (5) hide show
  1. README.md +5 -5
  2. app.py +303 -0
  3. requirements.txt +1 -0
  4. share_btn.py +68 -0
  5. unsafe.png +0 -0
README.md CHANGED
@@ -1,13 +1,13 @@
1
  ---
2
- title: Stable Diffusion V 1 5
3
- emoji:
4
- colorFrom: yellow
5
- colorTo: green
6
  sdk: gradio
7
  sdk_version: 3.6
8
  app_file: app.py
9
  pinned: false
10
- license: creativeml-openrail-m
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
1
  ---
2
+ title: Stable Diffusion v1-5
3
+ emoji: 🛬
4
+ colorFrom: red
5
+ colorTo: red
6
  sdk: gradio
7
  sdk_version: 3.6
8
  app_file: app.py
9
  pinned: false
10
+ license: mit
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,303 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from datasets import load_dataset
3
+ from PIL import Image
4
+ import re
5
+ import os
6
+ import requests
7
+
8
+
9
+ from share_btn import community_icon_html, loading_icon_html, share_js
10
+
11
+ model_id = "runwayml/stable-diffusion-v1-5"
12
+ device = "cuda"
13
+
14
+ #When running locally, you won`t have access to this, so you can remove this part
15
+ word_list_dataset = load_dataset("stabilityai/word-list", data_files="list.txt", use_auth_token=True)
16
+ word_list = word_list_dataset["train"]['text']
17
+
18
+ is_gpu_busy = False
19
+ def infer(prompt):
20
+ global is_gpu_busy
21
+ samples = 4
22
+ steps = 50
23
+ scale = 7.5
24
+ for filter in word_list:
25
+ if re.search(rf"\b{filter}\b", prompt):
26
+ raise gr.Error("Unsafe content found. Please try again with different prompts.")
27
+
28
+ images = []
29
+ url = os.getenv('JAX_BACKEND_URL')
30
+ payload = {'prompt': prompt}
31
+ images_request = requests.post(url, json = payload)
32
+ for image in images_request.json()["images"]:
33
+ image_b64 = (f"data:image/jpeg;base64,{image}")
34
+ images.append(image_b64)
35
+
36
+ return images
37
+
38
+
39
+ css = """
40
+ .gradio-container {
41
+ font-family: 'IBM Plex Sans', sans-serif;
42
+ }
43
+ .gr-button {
44
+ color: white;
45
+ border-color: black;
46
+ background: black;
47
+ }
48
+ input[type='range'] {
49
+ accent-color: black;
50
+ }
51
+ .dark input[type='range'] {
52
+ accent-color: #dfdfdf;
53
+ }
54
+ .container {
55
+ max-width: 730px;
56
+ margin: auto;
57
+ padding-top: 1.5rem;
58
+ }
59
+ #gallery {
60
+ min-height: 22rem;
61
+ margin-bottom: 15px;
62
+ margin-left: auto;
63
+ margin-right: auto;
64
+ border-bottom-right-radius: .5rem !important;
65
+ border-bottom-left-radius: .5rem !important;
66
+ }
67
+ #gallery>div>.h-full {
68
+ min-height: 20rem;
69
+ }
70
+ .details:hover {
71
+ text-decoration: underline;
72
+ }
73
+ .gr-button {
74
+ white-space: nowrap;
75
+ }
76
+ .gr-button:focus {
77
+ border-color: rgb(147 197 253 / var(--tw-border-opacity));
78
+ outline: none;
79
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
80
+ --tw-border-opacity: 1;
81
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
82
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px var(--tw-ring-offset-width)) var(--tw-ring-color);
83
+ --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity));
84
+ --tw-ring-opacity: .5;
85
+ }
86
+ #advanced-btn {
87
+ font-size: .7rem !important;
88
+ line-height: 19px;
89
+ margin-top: 12px;
90
+ margin-bottom: 12px;
91
+ padding: 2px 8px;
92
+ border-radius: 14px !important;
93
+ }
94
+ #advanced-options {
95
+ display: none;
96
+ margin-bottom: 20px;
97
+ }
98
+ .footer {
99
+ margin-bottom: 45px;
100
+ margin-top: 35px;
101
+ text-align: center;
102
+ border-bottom: 1px solid #e5e5e5;
103
+ }
104
+ .footer>p {
105
+ font-size: .8rem;
106
+ display: inline-block;
107
+ padding: 0 10px;
108
+ transform: translateY(10px);
109
+ background: white;
110
+ }
111
+ .dark .footer {
112
+ border-color: #303030;
113
+ }
114
+ .dark .footer>p {
115
+ background: #0b0f19;
116
+ }
117
+ .acknowledgments h4{
118
+ margin: 1.25em 0 .25em 0;
119
+ font-weight: bold;
120
+ font-size: 115%;
121
+ }
122
+ #container-advanced-btns{
123
+ display: flex;
124
+ flex-wrap: wrap;
125
+ justify-content: space-between;
126
+ align-items: center;
127
+ }
128
+ .animate-spin {
129
+ animation: spin 1s linear infinite;
130
+ }
131
+ @keyframes spin {
132
+ from {
133
+ transform: rotate(0deg);
134
+ }
135
+ to {
136
+ transform: rotate(360deg);
137
+ }
138
+ }
139
+ #share-btn-container {
140
+ display: flex; padding-left: 0.5rem !important; padding-right: 0.5rem !important; background-color: #000000; justify-content: center; align-items: center; border-radius: 9999px !important; width: 13rem;
141
+ }
142
+ #share-btn {
143
+ all: initial; color: #ffffff;font-weight: 600; cursor:pointer; font-family: 'IBM Plex Sans', sans-serif; margin-left: 0.5rem !important; padding-top: 0.25rem !important; padding-bottom: 0.25rem !important;
144
+ }
145
+ #share-btn * {
146
+ all: unset;
147
+ }
148
+ .gr-form{
149
+ flex: 1 1 50%; border-top-right-radius: 0; border-bottom-right-radius: 0;
150
+ }
151
+ #prompt-container{
152
+ gap: 0;
153
+ }
154
+ """
155
+
156
+ block = gr.Blocks(css=css)
157
+
158
+ examples = [
159
+ [
160
+ 'The spirit of a tamagotchi wandering in the city of Paris',
161
+ # 4,
162
+ # 45,
163
+ # 7.5,
164
+ # 1024,
165
+ ],
166
+ [
167
+ 'A delicious ceviche cheesecake slice',
168
+ # 4,
169
+ # 45,
170
+ # 7,
171
+ # 1024,
172
+ ],
173
+ [
174
+ 'A pao de queijo foodcart in front of a japanese castle',
175
+ # 4,
176
+ # 45,
177
+ # 7,
178
+ # 1024,
179
+ ],
180
+ [
181
+ 'alone in the amusement park by Edward Hopper',
182
+ # 4,
183
+ # 45,
184
+ # 7,
185
+ # 1024,
186
+ ],
187
+ [
188
+ "A large cabin on top of a sunny mountain in the style of Dreamworks, artstation",
189
+ # 4,
190
+ # 45,
191
+ # 7,
192
+ # 1024,
193
+ ],
194
+ ]
195
+
196
+
197
+ with block:
198
+ gr.HTML(
199
+ """
200
+ <div style="text-align: center; max-width: 650px; margin: 0 auto;">
201
+ <div
202
+ style="
203
+ display: inline-flex;
204
+ align-items: center;
205
+ gap: 0.8rem;
206
+ font-size: 1.75rem;
207
+ "
208
+ >
209
+ <h1 style="font-weight: 900; margin-bottom: 7px;">
210
+ Stable Diffusion v1-5 Demo
211
+ </h1>
212
+ </div>
213
+ <p style="margin-bottom: 10px; font-size: 94%">
214
+ Stable Diffusion v1-5 is the latest version of the state of the art text-to-image model that generates
215
+ images from text
216
+ </p>
217
+ </div>
218
+ """
219
+ )
220
+ with gr.Group():
221
+ with gr.Box():
222
+ with gr.Row(elem_id="prompt-container").style(mobile_collapse=False, equal_height=True):
223
+ text = gr.Textbox(
224
+ label="Enter your prompt",
225
+ show_label=False,
226
+ max_lines=1,
227
+ placeholder="Enter your prompt",
228
+ elem_id="prompt-text-input",
229
+ ).style(
230
+ border=(True, False, True, True),
231
+ rounded=(True, False, False, True),
232
+ container=False,
233
+ )
234
+ btn = gr.Button("Generate image").style(
235
+ margin=False,
236
+ rounded=(False, True, True, False),
237
+ full_width=False,
238
+ )
239
+
240
+ gallery = gr.Gallery(
241
+ label="Generated images", show_label=False, elem_id="gallery"
242
+ ).style(grid=[2], height="auto")
243
+
244
+ with gr.Group(elem_id="container-advanced-btns"):
245
+ advanced_button = gr.Button("Advanced options", elem_id="advanced-btn")
246
+ with gr.Group(elem_id="share-btn-container"):
247
+ community_icon = gr.HTML(community_icon_html)
248
+ loading_icon = gr.HTML(loading_icon_html)
249
+ share_button = gr.Button("Share to community", elem_id="share-btn")
250
+
251
+ with gr.Row(elem_id="advanced-options"):
252
+ gr.Markdown("Advanced settings are temporarily unavailable")
253
+ samples = gr.Slider(label="Images", minimum=1, maximum=4, value=4, step=1)
254
+ steps = gr.Slider(label="Steps", minimum=1, maximum=50, value=45, step=1)
255
+ scale = gr.Slider(
256
+ label="Guidance Scale", minimum=0, maximum=50, value=7.5, step=0.1
257
+ )
258
+ seed = gr.Slider(
259
+ label="Seed",
260
+ minimum=0,
261
+ maximum=2147483647,
262
+ step=1,
263
+ randomize=True,
264
+ )
265
+
266
+ ex = gr.Examples(examples=examples, fn=infer, inputs=text, outputs=[gallery, community_icon, loading_icon, share_button], cache_examples=False)
267
+ ex.dataset.headers = [""]
268
+
269
+ text.submit(infer, inputs=text, outputs=[gallery], postprocess=False)
270
+ btn.click(infer, inputs=text, outputs=[gallery], postprocess=False)
271
+
272
+ advanced_button.click(
273
+ None,
274
+ [],
275
+ text,
276
+ _js="""
277
+ () => {
278
+ const options = document.querySelector("body > gradio-app").querySelector("#advanced-options");
279
+ options.style.display = ["none", ""].includes(options.style.display) ? "flex" : "none";
280
+ }""",
281
+ )
282
+ share_button.click(
283
+ None,
284
+ [],
285
+ [],
286
+ _js=share_js,
287
+ )
288
+ gr.HTML(
289
+ """
290
+ <div class="footer">
291
+ <p>Model by <a href="https://huggingface.co/CompVis" style="text-decoration: underline;" target="_blank">CompVis</a> supported by <a href="https://huggingface.co/stabilityai" style="text-decoration: underline;" target="_blank">Stability AI</a> and <a href="https://runwayml.com" style="text-decoration: underline;" target="_blank">runwayml</a> - backend running JAX on TPUs due to generous support of <a href="https://sites.research.google/trc/about/" style="text-decoration: underline;" target="_blank">Google TRC program</a> - Gradio Demo by 🤗 Hugging Face
292
+ </p>
293
+ </div>
294
+ <div class="acknowledgments">
295
+ <p><h4>LICENSE</h4>
296
+ The model is licensed with a <a href="https://huggingface.co/spaces/CompVis/stable-diffusion-license" style="text-decoration: underline;" target="_blank">CreativeML Open RAIL-M</a> license. The authors claim no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in this license. The license forbids you from sharing any content that violates any laws, produce any harm to a person, disseminate any personal information that would be meant for harm, spread misinformation and target vulnerable groups. For the full list of restrictions please <a href="https://huggingface.co/spaces/CompVis/stable-diffusion-license" target="_blank" style="text-decoration: underline;" target="_blank">read the license</a></p>
297
+ <p><h4>Biases and content acknowledgment</h4>
298
+ Despite how impressive being able to turn text into image is, beware to the fact that this model may output content that reinforces or exacerbates societal biases, as well as realistic faces, pornography and violence. The model was trained on the <a href="https://laion.ai/blog/laion-5b/" style="text-decoration: underline;" target="_blank">LAION-5B dataset</a>, which scraped non-curated image-text-pairs from the internet (the exception being the removal of illegal content) and is meant for research purposes. You can read more in the <a href="https://huggingface.co/CompVis/stable-diffusion-v1-4" style="text-decoration: underline;" target="_blank">model card</a></p>
299
+ </div>
300
+ """
301
+ )
302
+
303
+ block.queue(concurrency_count=40, max_size=20).launch(max_threads=150)
requirements.txt ADDED
@@ -0,0 +1 @@
 
1
+ python-dotenv
share_btn.py ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ community_icon_html = """<svg id="share-btn-share-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32">
2
+ <path d="M20.6081 3C21.7684 3 22.8053 3.49196 23.5284 4.38415C23.9756 4.93678 24.4428 5.82749 24.4808 7.16133C24.9674 7.01707 25.4353 6.93643 25.8725 6.93643C26.9833 6.93643 27.9865 7.37587 28.696 8.17411C29.6075 9.19872 30.0124 10.4579 29.8361 11.7177C29.7523 12.3177 29.5581 12.8555 29.2678 13.3534C29.8798 13.8646 30.3306 14.5763 30.5485 15.4322C30.719 16.1032 30.8939 17.5006 29.9808 18.9403C30.0389 19.0342 30.0934 19.1319 30.1442 19.2318C30.6932 20.3074 30.7283 21.5229 30.2439 22.6548C29.5093 24.3704 27.6841 25.7219 24.1397 27.1727C21.9347 28.0753 19.9174 28.6523 19.8994 28.6575C16.9842 29.4379 14.3477 29.8345 12.0653 29.8345C7.87017 29.8345 4.8668 28.508 3.13831 25.8921C0.356375 21.6797 0.754104 17.8269 4.35369 14.1131C6.34591 12.058 7.67023 9.02782 7.94613 8.36275C8.50224 6.39343 9.97271 4.20438 12.4172 4.20438H12.4179C12.6236 4.20438 12.8314 4.2214 13.0364 4.25468C14.107 4.42854 15.0428 5.06476 15.7115 6.02205C16.4331 5.09583 17.134 4.359 17.7682 3.94323C18.7242 3.31737 19.6794 3 20.6081 3ZM20.6081 5.95917C20.2427 5.95917 19.7963 6.1197 19.3039 6.44225C17.7754 7.44319 14.8258 12.6772 13.7458 14.7131C13.3839 15.3952 12.7655 15.6837 12.2086 15.6837C11.1036 15.6837 10.2408 14.5497 12.1076 13.1085C14.9146 10.9402 13.9299 7.39584 12.5898 7.1776C12.5311 7.16799 12.4731 7.16355 12.4172 7.16355C11.1989 7.16355 10.6615 9.33114 10.6615 9.33114C10.6615 9.33114 9.0863 13.4148 6.38031 16.206C3.67434 18.998 3.5346 21.2388 5.50675 24.2246C6.85185 26.2606 9.42666 26.8753 12.0653 26.8753C14.8021 26.8753 17.6077 26.2139 19.1799 25.793C19.2574 25.7723 28.8193 22.984 27.6081 20.6107C27.4046 20.212 27.0693 20.0522 26.6471 20.0522C24.9416 20.0522 21.8393 22.6726 20.5057 22.6726C20.2076 22.6726 19.9976 22.5416 19.9116 22.222C19.3433 20.1173 28.552 19.2325 27.7758 16.1839C27.639 15.6445 27.2677 15.4256 26.746 15.4263C24.4923 15.4263 19.4358 19.5181 18.3759 19.5181C18.2949 19.5181 18.2368 19.4937 18.2053 19.4419C17.6743 18.557 17.9653 17.9394 21.7082 15.6009C25.4511 13.2617 28.0783 11.8545 26.5841 10.1752C26.4121 9.98141 26.1684 9.8956 25.8725 9.8956C23.6001 9.89634 18.2311 14.9403 18.2311 14.9403C18.2311 14.9403 16.7821 16.496 15.9057 16.496C15.7043 16.496 15.533 16.4139 15.4169 16.2112C14.7956 15.1296 21.1879 10.1286 21.5484 8.06535C21.7928 6.66715 21.3771 5.95917 20.6081 5.95917Z" fill="#FF9D00"></path>
3
+ <path d="M5.50686 24.2246C3.53472 21.2387 3.67446 18.9979 6.38043 16.206C9.08641 13.4147 10.6615 9.33111 10.6615 9.33111C10.6615 9.33111 11.2499 6.95933 12.59 7.17757C13.93 7.39581 14.9139 10.9401 12.1069 13.1084C9.29997 15.276 12.6659 16.7489 13.7459 14.713C14.8258 12.6772 17.7747 7.44316 19.304 6.44221C20.8326 5.44128 21.9089 6.00204 21.5484 8.06532C21.188 10.1286 14.795 15.1295 15.4171 16.2118C16.0391 17.2934 18.2312 14.9402 18.2312 14.9402C18.2312 14.9402 25.0907 8.49588 26.5842 10.1752C28.0776 11.8545 25.4512 13.2616 21.7082 15.6008C17.9646 17.9393 17.6744 18.557 18.2054 19.4418C18.7372 20.3266 26.9998 13.1351 27.7759 16.1838C28.5513 19.2324 19.3434 20.1173 19.9117 22.2219C20.48 24.3274 26.3979 18.2382 27.6082 20.6107C28.8193 22.9839 19.2574 25.7722 19.18 25.7929C16.0914 26.62 8.24723 28.3726 5.50686 24.2246Z" fill="#FFD21E"></path>
4
+ </svg>"""
5
+
6
+ loading_icon_html = """<svg id="share-btn-loading-icon" style="display:none;" class="animate-spin"
7
+ style="color: #ffffff;
8
+ "
9
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" fill="none" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><circle style="opacity: 0.25;" cx="12" cy="12" r="10" stroke="white" stroke-width="4"></circle><path style="opacity: 0.75;" fill="white" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path></svg>"""
10
+
11
+ share_js = """async () => {
12
+ async function uploadFile(file){
13
+ const UPLOAD_URL = 'https://huggingface.co/uploads';
14
+ const response = await fetch(UPLOAD_URL, {
15
+ method: 'POST',
16
+ headers: {
17
+ 'Content-Type': file.type,
18
+ 'X-Requested-With': 'XMLHttpRequest',
19
+ },
20
+ body: file, /// <- File inherits from Blob
21
+ });
22
+ const url = await response.text();
23
+ return url;
24
+ }
25
+
26
+ const gradioEl = document.querySelector('body > gradio-app');
27
+ const imgEls = gradioEl.querySelectorAll('#gallery img');
28
+ const promptTxt = gradioEl.querySelector('#prompt-text-input input').value;
29
+ const shareBtnEl = gradioEl.querySelector('#share-btn');
30
+ const shareIconEl = gradioEl.querySelector('#share-btn-share-icon');
31
+ const loadingIconEl = gradioEl.querySelector('#share-btn-loading-icon');
32
+
33
+ if(!imgEls.length){
34
+ return;
35
+ };
36
+
37
+ shareBtnEl.style.pointerEvents = 'none';
38
+ shareIconEl.style.display = 'none';
39
+ loadingIconEl.style.removeProperty('display');
40
+
41
+ const files = await Promise.all(
42
+ [...imgEls].map(async (imgEl) => {
43
+ const res = await fetch(imgEl.src);
44
+ const blob = await res.blob();
45
+ const imgId = Date.now() % 200;
46
+ const fileName = `diffuse-the-rest-${{imgId}}.jpg`;
47
+ return new File([blob], fileName, { type: 'image/jpeg' });
48
+ })
49
+ );
50
+
51
+ const urls = await Promise.all(files.map((f) => uploadFile(f)));
52
+ const htmlImgs = urls.map(url => `<img src='${url}' width='400' height='400'>`);
53
+ const descriptionMd = `<div style='display: flex; flex-wrap: wrap; column-gap: 0.75rem;'>
54
+ ${htmlImgs.join(`\n`)}
55
+ </div>`;
56
+
57
+ const params = new URLSearchParams({
58
+ title: promptTxt,
59
+ description: descriptionMd,
60
+ });
61
+
62
+ const paramsStr = params.toString();
63
+ window.open(`https://huggingface.co/spaces/stabilityai/stable-diffusion/discussions/new?${paramsStr}`, '_blank');
64
+
65
+ shareBtnEl.style.removeProperty('pointer-events');
66
+ shareIconEl.style.removeProperty('display');
67
+ loadingIconEl.style.display = 'none';
68
+ }"""
unsafe.png ADDED