CoolFace
Apppublic

BioMike/ClassicalPortraitsVAE

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
app.py11 linesDownload Raw Back to root
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)