Thank you to Alejandro AO for the walkthrough!
This repository consists of four parts:
model
folder that contains Python script for training a logistic regression model on breast cancer dataapp
folder that contains Streamlit web app for predicting breast cancer diagnosis based on user inputassets
folder that contains a CSS script to customize the Streamlit web appdata
folder that contains the Breast Cancer Wisconsin (Diagnostic) Data Set
The script begins by importing necessary libraries, including Pandas for data manipulation, scikit-learn for machine learning operations, and Pickle for model serialization.
The Streamlit web app is designed to predict breast cancer diagnosis based on user input through sliders. It uses the trained logistic regression model and scaler from the saved files.
This integrated solution allows users to interact with a web app, input relevant data through sliders, and receive predictions about breast cancer diagnosis using a logistic regression model trained on historical data.