Garrett Goon commited on
Commit
d2df002
·
1 Parent(s): 55b5748
Files changed (1) hide show
  1. app.py +88 -24
app.py CHANGED
@@ -79,15 +79,52 @@ def inference(prompt: str, guidance_scale: int, num_inference_steps: int, seed:
79
 
80
  css = """
81
  .gradio-container {
82
- font-family: 'IBM Plex Sans', sans-serif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  }
84
  .gr-button {
85
- color: white;
 
 
 
 
 
 
 
 
 
 
86
  border-color: black;
87
- background: black;
88
  }
89
  input[type='range'] {
90
- accent-color: black;
91
  }
92
  .dark input[type='range'] {
93
  accent-color: #dfdfdf;
@@ -96,6 +133,7 @@ css = """
96
  max-width: 730px;
97
  margin: auto;
98
  padding-top: 1.5rem;
 
99
  }
100
  #gallery {
101
  min-height: 22rem;
@@ -124,30 +162,38 @@ css = """
124
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity));
125
  --tw-ring-opacity: .5;
126
  }
127
- #advanced-btn {
128
  font-size: .7rem !important;
129
  line-height: 19px;
130
  margin-top: 12px;
131
  margin-bottom: 12px;
132
  padding: 2px 8px;
133
  border-radius: 14px !important;
 
 
134
  }
135
  #advanced-options {
136
  display: none;
137
  margin-bottom: 20px;
138
  }
 
 
 
 
139
  .footer {
140
  margin-bottom: 45px;
141
  margin-top: 35px;
142
  text-align: center;
143
  border-bottom: 1px solid #e5e5e5;
 
 
144
  }
145
  .footer>p {
146
  font-size: .8rem;
147
  display: inline-block;
148
  padding: 0 10px;
149
  transform: translateY(10px);
150
- background: white;
151
  }
152
  .dark .footer {
153
  border-color: #303030;
@@ -166,6 +212,12 @@ css = """
166
  justify-content: space-between;
167
  align-items: center;
168
  }
 
 
 
 
 
 
169
  .animate-spin {
170
  animation: spin 1s linear infinite;
171
  }
@@ -177,15 +229,6 @@ css = """
177
  transform: rotate(360deg);
178
  }
179
  }
180
- #share-btn-container {
181
- 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;
182
- }
183
- #share-btn {
184
- 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;
185
- }
186
- #share-btn * {
187
- all: unset;
188
- }
189
  .gr-form{
190
  flex: 1 1 50%; border-top-right-radius: 0; border-bottom-right-radius: 0;
191
  }
@@ -323,21 +366,42 @@ with block:
323
  options.style.display = ["none", ""].includes(options.style.display) ? "flex" : "none";
324
  }""",
325
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
326
  gr.HTML(
327
  """
328
- <div class="footer">
329
  <p>Underlying model by <a href="https://huggingface.co/CompVis" style="text-decoration: underline;" target="_blank">CompVis</a> and <a href="https://huggingface.co/stabilityai" style="text-decoration: underline;" target="_blank">Stability AI</a> - Gradio code based on the <a href="https://huggingface.co/spaces/stabilityai/stable-diffusion" style="text-decoration: underline;" target="_blank">Stability AI Demo</a>
330
  </p>
331
  </div>
332
- <div class="acknowledgments">
333
- <p><h4>LICENSE</h4>
334
- 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>
335
- <p><h4>Model Changes</h4>
336
- The model used in this Space alters the underlying <a href="https://huggingface.co/CompVis/stable-diffusion-v1-4" style="text-decoration: underline;" target="_blank">stable-diffusion-v1-4</a> model through the addition of new embedding vectors in order to capture the likeness of the <a href="https://www.determined.ai" style="text-decoration: underline;" target="_blank">Determined AI</a> logo.</p>
337
- <p><h4>Biases and content acknowledgment</h4>
338
- 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>
339
- </div>
340
  """
341
  )
342
 
 
343
  block.queue(max_size=10).launch(show_error=True)
 
79
 
80
  css = """
81
  .gradio-container {
82
+ font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important;
83
+ }
84
+ .flex-grow {
85
+ font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important;
86
+ }
87
+ .gr-padded {
88
+ font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important; color: black !important;
89
+ }
90
+ .bg-gray-700 {
91
+ font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important; color: white !important;
92
+ }
93
+ .gr-box {
94
+ font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important; color: black !important;
95
+ }
96
+ .h-6 {
97
+ font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important;
98
+ }
99
+ .gr-samples-gallery {
100
+ font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important; color: black !important;
101
+ }
102
+ .gr-sample-textbox:hover {
103
+ font-family: 'Roboto', sans-serif; background-color: white !important; font-color: black !important; color: black !important;
104
+ }
105
+ h1 {
106
+ font-family: 'Roboto', sans-serif; color: black !important;
107
+ }
108
+ .text-gray-500 {
109
+ font-family: 'Roboto', sans-serif; color: black !important;
110
  }
111
  .gr-button {
112
+ color: white !important;
113
+ border-color: black;
114
+ background: white !important;
115
+ }
116
+ .flex-wrap {
117
+ color: white !important;
118
+ border-color: white !important;
119
+ background: white !important;
120
+ }
121
+ .grow-0 {
122
+ color: black !important;
123
  border-color: black;
124
+ background: white !important;
125
  }
126
  input[type='range'] {
127
+ accent-color: white;
128
  }
129
  .dark input[type='range'] {
130
  accent-color: #dfdfdf;
 
133
  max-width: 730px;
134
  margin: auto;
135
  padding-top: 1.5rem;
136
+ background: white;
137
  }
138
  #gallery {
139
  min-height: 22rem;
 
162
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity));
163
  --tw-ring-opacity: .5;
164
  }
165
+ #advanced-btn, #license-btn {
166
  font-size: .7rem !important;
167
  line-height: 19px;
168
  margin-top: 12px;
169
  margin-bottom: 12px;
170
  padding: 2px 8px;
171
  border-radius: 14px !important;
172
+ background: white !important;
173
+ color: black !important;
174
  }
175
  #advanced-options {
176
  display: none;
177
  margin-bottom: 20px;
178
  }
179
+ #license-options {
180
+ display: none;
181
+ margin-bottom: 20px;
182
+ }
183
  .footer {
184
  margin-bottom: 45px;
185
  margin-top: 35px;
186
  text-align: center;
187
  border-bottom: 1px solid #e5e5e5;
188
+ background: white !important;
189
+ color: black !important;
190
  }
191
  .footer>p {
192
  font-size: .8rem;
193
  display: inline-block;
194
  padding: 0 10px;
195
  transform: translateY(10px);
196
+ background: white !important;
197
  }
198
  .dark .footer {
199
  border-color: #303030;
 
212
  justify-content: space-between;
213
  align-items: center;
214
  }
215
+ #container-license-btns{
216
+ display: flex;
217
+ flex-wrap: wrap;
218
+ justify-content: space-between;
219
+ align-items: center;
220
+ }
221
  .animate-spin {
222
  animation: spin 1s linear infinite;
223
  }
 
229
  transform: rotate(360deg);
230
  }
231
  }
 
 
 
 
 
 
 
 
 
232
  .gr-form{
233
  flex: 1 1 50%; border-top-right-radius: 0; border-bottom-right-radius: 0;
234
  }
 
366
  options.style.display = ["none", ""].includes(options.style.display) ? "flex" : "none";
367
  }""",
368
  )
369
+ with gr.Group(elem_id="container-license-btns"):
370
+ license_button = gr.Button("License, model changes, and acknowledgments",
371
+ elem_id="license-btn")
372
+ license_button.click(
373
+ None,
374
+ [],
375
+ prompt,
376
+ _js="""
377
+ () => {
378
+ var appDom = document.querySelector("body > gradio-app");
379
+ var options = appDom.querySelector("#license-options")
380
+ if (options == null) {options = appDom.shadowRoot.querySelector("#license-options")}
381
+ options.style.display = ["none", ""].includes(options.style.display) ? "flex" : "none";
382
+ }""",
383
+ )
384
+ with gr.Row(elem_id="license-options"):
385
+ gr.HTML(
386
+ """
387
+ <div class="acknowledgments">
388
+ <p><h4>LICENSE</h4>
389
+ 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>
390
+ <p><h4>Model Changes</h4>
391
+ The model used in this Space alters the underlying <a href="https://huggingface.co/CompVis/stable-diffusion-v1-4" style="text-decoration: underline;" target="_blank">stable-diffusion-v1-4</a> model through the addition of new embedding vectors in order to capture the likeness of the <a href="https://www.determined.ai" style="text-decoration: underline;" target="_blank">Determined AI</a> logo.</p>
392
+ <p><h4>Biases and content acknowledgment</h4>
393
+ 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>
394
+ </div>
395
+ """
396
+ )
397
  gr.HTML(
398
  """
399
+ <div class="footer">
400
  <p>Underlying model by <a href="https://huggingface.co/CompVis" style="text-decoration: underline;" target="_blank">CompVis</a> and <a href="https://huggingface.co/stabilityai" style="text-decoration: underline;" target="_blank">Stability AI</a> - Gradio code based on the <a href="https://huggingface.co/spaces/stabilityai/stable-diffusion" style="text-decoration: underline;" target="_blank">Stability AI Demo</a>
401
  </p>
402
  </div>
 
 
 
 
 
 
 
 
403
  """
404
  )
405
 
406
+
407
  block.queue(max_size=10).launch(show_error=True)