Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -227,15 +227,15 @@ def generate(starting_text):
|
|
227 |
return response_end
|
228 |
|
229 |
|
230 |
-
txt = grad.Textbox(lines=1, label="Initial Text", placeholder="English Text here")
|
231 |
-
out = grad.Textbox(lines=4, label="Generated Prompts")
|
232 |
|
233 |
examples = []
|
234 |
for x in range(8):
|
235 |
examples.append(line[random.randrange(0, len(line))].replace("\n", "").lower().capitalize())
|
236 |
|
237 |
-
title = "Stable Diffusion Prompt Generator"
|
238 |
-
description = 'This is a demo of the model series: "MagicPrompt", in this case, aimed at: "Stable Diffusion". To use it, simply submit your text or click on one of the examples. To learn more about the model, [click here](https://huggingface.co/Gustavosta/MagicPrompt-Stable-Diffusion).<br>'
|
239 |
|
240 |
text_gen = grad.Interface(fn=generate,
|
241 |
inputs=txt,
|
|
|
227 |
return response_end
|
228 |
|
229 |
|
230 |
+
# txt = grad.Textbox(lines=1, label="Initial Text", placeholder="English Text here")
|
231 |
+
# out = grad.Textbox(lines=4, label="Generated Prompts")
|
232 |
|
233 |
examples = []
|
234 |
for x in range(8):
|
235 |
examples.append(line[random.randrange(0, len(line))].replace("\n", "").lower().capitalize())
|
236 |
|
237 |
+
# title = "Stable Diffusion Prompt Generator"
|
238 |
+
# description = 'This is a demo of the model series: "MagicPrompt", in this case, aimed at: "Stable Diffusion". To use it, simply submit your text or click on one of the examples. To learn more about the model, [click here](https://huggingface.co/Gustavosta/MagicPrompt-Stable-Diffusion).<br>'
|
239 |
|
240 |
text_gen = grad.Interface(fn=generate,
|
241 |
inputs=txt,
|