BioMike's picture
Update app.py
538c136 verified
raw
history blame
No virus
350 Bytes
import gradio as gr
from vae import vae
from morphing import morphing
demo = gr.TabbedInterface([vae, morphing],
["Image to Portrait", "Image to Image (Morphing)"],
title="CLassical Portraits VAE",
theme=gr.themes.Base())
demo.queue()
demo.launch(debug=True, share=True)