Spaces:
Runtime error
Runtime error
File size: 721 Bytes
6dceec4 c6cb0fb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
from utils_app import keras_stable_diffusion_app
import gradio as gr
app = gr.Blocks()
with app:
gr.HTML(
"""
<h1 style='text-align: center'>
Keras Diffusion WebUI
</h1>
"""
)
gr.Markdown(
"""
<h4 style='text-align: center'>
Follow me for more!
<a href='https://twitter.com/kadirnar_ai' target='_blank'>Twitter</a> | <a href='https://github.com/kadirnar' target='_blank'>Github</a> | <a href='https://www.linkedin.com/in/kadir-nar/' target='_blank'>Linkedin</a>
</h4>
"""
)
with gr.Row():
with gr.Column():
keras_diffusion_app = keras_stable_diffusion_app()
app.queue().launch(debug=True) |