BioMike/ClassicalPortraitsVAE
0
1import gradio as gr2from vae import vae3from morphing import morphing4 5demo = gr.TabbedInterface([vae, morphing],6 ["Image to Portrait", "Image to Image (Morphing)"],7 title="CLassical Portraits VAE",8 theme=gr.themes.Base())9 10demo.queue()11demo.launch(debug=True, share=True)