import streamlit as st from multiapp import MultiApp from apps import home, cyclone_app,dataset # import your app modules here app = MultiApp() st.title("CycloNet") st.markdown(f''' ''',unsafe_allow_html=True) st.markdown('''
This is a Cyclone Intensity Estimation app using Deep Learning with just one click. This app is developed by Sparsh Jain . This app is created on Streamlit.
''',unsafe_allow_html=True) # Add all your application here app.add_app("Introduction to app", home.app) app.add_app("Dataset", dataset.app) app.add_app("Cyclone Intensity Estimation using Deep Learning", cyclone_app.app) # The main app app.run()