Spaces:
Running
Running
File size: 350 Bytes
add62f2 04366d1 add62f2 5a9c9b2 |
1 2 3 4 5 6 7 8 9 10 11 |
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) |