├── .streamlit └── config.toml ├── LICENSE ├── README.md ├── dashboard_utils ├── .DS_Store ├── __pycache__ │ ├── gui.cpython-310.pyc │ └── gui.cpython-37.pyc └── gui.py ├── images ├── HFlogo.png ├── SF_logo_icon.png └── logo.png ├── requirements.txt └── streamlit_app.py /.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [theme] 2 | base="light" 3 | primaryColor="#29B4E8" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-zero-shot-text-classifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-zero-shot-text-classifier/HEAD/README.md -------------------------------------------------------------------------------- /dashboard_utils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-zero-shot-text-classifier/HEAD/dashboard_utils/.DS_Store -------------------------------------------------------------------------------- /dashboard_utils/__pycache__/gui.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-zero-shot-text-classifier/HEAD/dashboard_utils/__pycache__/gui.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard_utils/__pycache__/gui.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-zero-shot-text-classifier/HEAD/dashboard_utils/__pycache__/gui.cpython-37.pyc -------------------------------------------------------------------------------- /dashboard_utils/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-zero-shot-text-classifier/HEAD/dashboard_utils/gui.py -------------------------------------------------------------------------------- /images/HFlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-zero-shot-text-classifier/HEAD/images/HFlogo.png -------------------------------------------------------------------------------- /images/SF_logo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-zero-shot-text-classifier/HEAD/images/SF_logo_icon.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-zero-shot-text-classifier/HEAD/images/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-zero-shot-text-classifier/HEAD/requirements.txt -------------------------------------------------------------------------------- /streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-zero-shot-text-classifier/HEAD/streamlit_app.py --------------------------------------------------------------------------------