File size: 305 Bytes
6554f2c
 
ce82499
6554f2c
 
 
 
 
 
 
 
 
ce82499
6554f2c
ce82499
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st
from multiapp import MultiApp
from apps import about, credits, inference


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


if __name__ == "__main__":
    main()