Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
flax-community
/
roberta-hindi
like
5
Runtime error
App
Files
Files
Community
45ed867
roberta-hindi
/
app.py
hassiahk
Added models info
76d5628
over 3 years ago
raw
Copy download link
history
blame
Safe
221 Bytes
from
apps
import
about, mlm
from
multiapp
import
MultiApp
def
main
():
app = MultiApp()
app.add_app(
"Fill Mask"
, mlm.app)
app.add_app(
"About"
, about.app)
app.run()
if
__name__ ==
"__main__"
:
main()