Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -29,6 +29,7 @@ gr.Interface(fn=infer, inputs=[gr.Image(source="upload", type="filepath", label=
|
|
29 |
gr.Slider(1, 20, value = 5, step = 1, label = 'Number of Iterations'),
|
30 |
gr.Slider(label = "Seed", minimum = 0, maximum = 987654321987654321, step = 1, randomize = True),
|
31 |
gr.Slider(label='Strength', minimum = .1, maximum = 2, step = .05, value = .5)],
|
32 |
-
outputs='image',
|
|
|
33 |
description = "MUST Be .PNG and 512x512 or 768x768</b>) enter a Prompt, or let it just do its Thing, then click submit. 10 Iterations takes about ~900-1200 seconds currently. For more informationon about Stable Diffusion or Suggestions for prompts, keywords, artists or styles see https://github.com/Maks-s/sd-akashic",
|
34 |
article = "Code Monkey: <a href=\"https://huggingface.co/Manjushri\">Manjushri</a>").queue(max_size=5).launch(debug=True)
|
|
|
29 |
gr.Slider(1, 20, value = 5, step = 1, label = 'Number of Iterations'),
|
30 |
gr.Slider(label = "Seed", minimum = 0, maximum = 987654321987654321, step = 1, randomize = True),
|
31 |
gr.Slider(label='Strength', minimum = .1, maximum = 2, step = .05, value = .5)],
|
32 |
+
outputs = 'image',
|
33 |
+
title = "Instructions Picture to Picture",
|
34 |
description = "MUST Be .PNG and 512x512 or 768x768</b>) enter a Prompt, or let it just do its Thing, then click submit. 10 Iterations takes about ~900-1200 seconds currently. For more informationon about Stable Diffusion or Suggestions for prompts, keywords, artists or styles see https://github.com/Maks-s/sd-akashic",
|
35 |
article = "Code Monkey: <a href=\"https://huggingface.co/Manjushri\">Manjushri</a>").queue(max_size=5).launch(debug=True)
|