File size: 256 Bytes
666b7aa
2434dff
cfc91bf
666b7aa
d58e1c6
 
2434dff
 
 
 
666b7aa
d58e1c6
 
666b7aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import streamlit as st
from multiapp import MultiApp
from apps import about, inference


def main():
    app = MultiApp()
    app.add_app("Inference", inference.app)
    app.add_app("About", about.app)
    app.run()


if __name__ == "__main__":
    main()