Spaces:
Build error
Build error
File size: 278 Bytes
557ef1f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import streamlit as st
from multiapp import MultiApp
import demo
app = MultiApp()
st.set_page_config(page_title="AttnGAN", initial_sidebar_state="auto")
st.sidebar.title("Navigation")
# Add all application here
app.add_app("Demo", demo.demo_gan)
# The main app
app.run()
|