Spaces:
Runtime error
Runtime error
beresandras
commited on
Commit
•
b57dc0e
1
Parent(s):
c4d15f8
Update app.py
Browse files
app.py
CHANGED
@@ -65,7 +65,8 @@ inputs = [
|
|
65 |
]
|
66 |
output = gr.outputs.Image(label="Generated images")
|
67 |
examples = [[3, 0.0, 0.02, 0.95], [10, 0.0, 0.02, 0.95], [20, 1.0, 0.02, 0.95]]
|
68 |
-
title = "Denoising Diffusion Implicit Models"
|
|
|
69 |
article = "<div style='text-align: center;'>Keras code example and demo by <a href='https://www.linkedin.com/in/andras-beres-789190210' target='_blank'>András Béres</a></div>"
|
70 |
gr.Interface(
|
71 |
generate_images,
|
@@ -73,5 +74,6 @@ gr.Interface(
|
|
73 |
outputs=output,
|
74 |
examples=examples,
|
75 |
title=title,
|
|
|
76 |
article=article,
|
77 |
).launch()
|
|
|
65 |
]
|
66 |
output = gr.outputs.Image(label="Generated images")
|
67 |
examples = [[3, 0.0, 0.02, 0.95], [10, 0.0, 0.02, 0.95], [20, 1.0, 0.02, 0.95]]
|
68 |
+
title = "Denoising Diffusion Implicit Models 🌹💨"
|
69 |
+
description = "Generating images with a denoising diffusion implicit model, trained on the Oxford Flowers dataset."
|
70 |
article = "<div style='text-align: center;'>Keras code example and demo by <a href='https://www.linkedin.com/in/andras-beres-789190210' target='_blank'>András Béres</a></div>"
|
71 |
gr.Interface(
|
72 |
generate_images,
|
|
|
74 |
outputs=output,
|
75 |
examples=examples,
|
76 |
title=title,
|
77 |
+
description=description,
|
78 |
article=article,
|
79 |
).launch()
|