File size: 561 Bytes
4779f1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import streamlit as st
# Custom imports 
from multipage import MultiPage
from pages import text_gen, fill_mask, home_page # import your pages here

# Create an instance of the app 
app = MultiPage()


# Add all your applications (pages) here
app.add_page("Home Page", home_page.app)
app.add_page("Mask Fill", fill_mask.app)
app.add_page("Text Generation", text_gen.app)

# app.add_page("Machine Learning", machine_learning.app)
# app.add_page("Data Analysis",data_visualize.app)
# app.add_page("Y-Parameter Optimization",redundant.app)

# The main app
app.run()