Zero-Shot-Forecasting / src /st_deploy.py
azrai99's picture
Upload 4 files
20076a8 verified
raw
history blame
396 Bytes
import os
import sys
from streamlit.web import cli
if __name__ == "__main__":
sys.argv = [
"streamlit",
"run",
f"{os.path.dirname(os.path.realpath(__file__))}/st_app.py",
"--server.port=8501",
"--server.address=0.0.0.0",
"--server.baseUrlPath=transfer-learning",
"--logger.level=debug",
]
sys.exit(cli.main())