├── .gitignore ├── README.md ├── base_app.py └── resources ├── Logistic_regression.pkl ├── imgs ├── EDSA_logo.png ├── fork-repo.png ├── streamlit-base-splash-screen.png ├── streamlit-logo.png ├── streamlit.png └── what-is-streamlit.png ├── info.md ├── tfidfvect.pkl └── train.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/README.md -------------------------------------------------------------------------------- /base_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/base_app.py -------------------------------------------------------------------------------- /resources/Logistic_regression.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/resources/Logistic_regression.pkl -------------------------------------------------------------------------------- /resources/imgs/EDSA_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/resources/imgs/EDSA_logo.png -------------------------------------------------------------------------------- /resources/imgs/fork-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/resources/imgs/fork-repo.png -------------------------------------------------------------------------------- /resources/imgs/streamlit-base-splash-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/resources/imgs/streamlit-base-splash-screen.png -------------------------------------------------------------------------------- /resources/imgs/streamlit-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/resources/imgs/streamlit-logo.png -------------------------------------------------------------------------------- /resources/imgs/streamlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/resources/imgs/streamlit.png -------------------------------------------------------------------------------- /resources/imgs/what-is-streamlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/resources/imgs/what-is-streamlit.png -------------------------------------------------------------------------------- /resources/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/resources/info.md -------------------------------------------------------------------------------- /resources/tfidfvect.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/resources/tfidfvect.pkl -------------------------------------------------------------------------------- /resources/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Explore-AI/classification-predict-streamlit-template/HEAD/resources/train.csv --------------------------------------------------------------------------------