File size: 349 Bytes
7d57461
 
e35b6a7
 
c07af09
 
e35b6a7
35e3d4c
e35b6a7
 
 
 
c07af09
 
e35b6a7
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import streamlit as st

from apps import classifier, mlm
from multiapp import MultiApp


def main():
    img = st.sidebar.image("images/huggingface-marathi-roberta.png", width=230)
    app = MultiApp()
    app.add_app("Fill Mask", mlm.app)
    app.add_app("Text Classification", classifier.app)
    app.run()


if __name__ == "__main__":
    main()