- How easy is it to create a Web App using Streamlit
- Integrating multiple #machinelearning technologies in the same app
- Code reusability
- Streamlit functions & feature usage
of-course Dockerize!
- Checkout the code
git checkout
- Build the docker image
docker build --tag streamlit-healthcare:1.0 .
- Run the docker image
docker run -it -p 8501:8501 streamlit-healthcare:1.0
- Browse the url
- Load Healthcare data from Kaggle https://www.kaggle.com/sulianova/cardiovascular-disease-dataset
- Use scikit-learn ML lib to run classification.
- Provide Tuning param options in the UI
- Provide Switch to enable PySpark
- Provide Pyspark MLlib options over the same data, technically one can compare the result between 2 seperate libraries
- Plotting using Seaborn chart
Streamlit is essentially a very straightforward easy library to create python based Webapp. I am Convinced 👏👏👏