Spaces:
Runtime error
Runtime error
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) |