Spaces:
Runtime error
Runtime error
File size: 930 Bytes
31f45e8 95e4531 5784791 2897826 5784791 65dd47d 5784791 65dd47d 5784791 65dd47d 5784791 65dd47d 5784791 31f45e8 5784791 31f45e8 5784791 65dd47d |
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 26 27 28 29 30 |
from inpaint_zoom.app.zoom_out_app import stable_diffusion_zoom_out_app
from inpaint_zoom.app.zoom_in_app import stable_diffusion_zoom_in_app
import gradio as gr
app = gr.Blocks()
with app:
gr.HTML(
"""
<h1 style='text-align: center'>
Stable Diffusion Infinite Zoom Out and Zoom In
</h1>
"""
)
gr.HTML(
"""
<h3 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>
</h3>
"""
)
with gr.Row():
with gr.Column():
with gr.Tab('Zoom Out'):
stable_diffusion_zoom_out_app()
with gr.Tab('Zoom In'):
stable_diffusion_zoom_in_app()
app.launch(debug=True) |