Praneeth2606's picture
Rename app.py to Introduction.py
5fd37bd verified
raw
history blame
1.23 kB
import streamlit as st
# Page Title
st.title("🧠 Student Depression Classification")
# Subheader
st.subheader("Welcome to my Machine Learning Project!")
# Introduction
st.markdown("""
πŸ“Œ **Project Introduction:**
This application predicts whether a student is likely to experience depression based on academic, psychological, and lifestyle factors.
The model is trained using a **K-Nearest Neighbors (KNN)** Classifier and deployed through an interactive **Streamlit web interface**.
This project demonstrates the real-world application of machine learning for mental health prediction and awareness.
""")
# Overview
st.markdown("""
πŸ“š **Project Overview:**
- Built using **Python**, **Pandas**, **Scikit-learn**, and **Streamlit**
- Machine Learning Algorithm: **K-Nearest Neighbors (KNN) Classifier**
- Trained on a cleaned and preprocessed student mental health dataset
- Includes data cleaning, encoding, scaling, and model evaluation
""")
# Author
st.markdown("""
πŸ‘¨β€πŸ’» **Project by:**
**Sai Praneeth Marripelli**
Postgraduate MCA Student
**Nizam College, Osmania University**
""")
if st.button("Next"):
st.switch_page("pages/1 Problem Statement.py")