It hasn’t been even a month since I got to know about this super easy way of developing Machine Learning Web apps. I have developed various ML models but have always troubled making it look presentable, more like a product or a MVP.

Streamlit is a python framework where you can easily build an interactive web application with just a few lines of code. Data scientists are now Web developers with Streamlit!

It is very easy to get started with. You just have to install the package through pip. You can run a sample streamlit app using _streamlit hello _to know how it looks like.

pip install streamlit
streamlit hello

In my main.py :

import streamlit as st
st.title(“Poly Cystic Ovarian Symdrome Prediction”)
st.sidebar.title(“PCOS Prediction”)
st.sidebar.markdown(“This is for changing the model parameters”)

#data-science #streamlit #classification

Easiest Way to build your Data Science Web app
1.50 GEEK