File size: 287 Bytes
4dd21cf
a3c2e09
2ae56c2
4dd21cf
 
2ae56c2
76d1dd7
2ae56c2
4dd21cf
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st
from app import docs
from multiapp import MultiApp
def main():
    img = st.sidebar.image("images/huggingface-marathi-roberta.png", width=230)
    app = MultiApp()
    app.add_app("Text Classification", docs.app)
    app.run()
if __name__ == "__main__":
    main()