Update src/streamlit_app.py
Browse files- src/streamlit_app.py +44 -36
src/streamlit_app.py
CHANGED
|
@@ -1,40 +1,48 @@
|
|
| 1 |
-
import altair as alt
|
| 2 |
-
import numpy as np
|
| 3 |
-
import pandas as pd
|
| 4 |
import streamlit as st
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
-
|
| 7 |
-
# Welcome to Streamlit!
|
| 8 |
-
|
| 9 |
-
Edit `/streamlit_app.py` to customize this app to your heart's desire :heart:.
|
| 10 |
-
If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
|
| 11 |
-
forums](https://discuss.streamlit.io).
|
| 12 |
-
|
| 13 |
-
In the meantime, below is an example of what you can do with just a few lines of code:
|
| 14 |
-
"""
|
| 15 |
-
|
| 16 |
-
num_points = st.slider("Number of points in spiral", 1, 10000, 1100)
|
| 17 |
-
num_turns = st.slider("Number of turns in spiral", 1, 300, 31)
|
| 18 |
-
|
| 19 |
-
indices = np.linspace(0, 1, num_points)
|
| 20 |
-
theta = 2 * np.pi * num_turns * indices
|
| 21 |
-
radius = indices
|
| 22 |
-
|
| 23 |
-
x = radius * np.cos(theta)
|
| 24 |
-
y = radius * np.sin(theta)
|
| 25 |
|
| 26 |
-
|
| 27 |
-
"x": x,
|
| 28 |
-
"y": y,
|
| 29 |
-
"idx": indices,
|
| 30 |
-
"rand": np.random.randn(num_points),
|
| 31 |
-
})
|
| 32 |
|
| 33 |
-
st.
|
| 34 |
-
.
|
| 35 |
-
.
|
| 36 |
-
|
| 37 |
-
y=alt.Y("y", axis=None),
|
| 38 |
-
color=alt.Color("idx", legend=None, scale=alt.Scale()),
|
| 39 |
-
size=alt.Size("rand", legend=None, scale=alt.Scale(range=[1, 150])),
|
| 40 |
-
))
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
import pandas as pd
|
| 3 |
+
import joblib
|
| 4 |
+
|
| 5 |
+
st.title("Student Performance Prediction")
|
| 6 |
+
|
| 7 |
+
st.write("This app predicts a student's math score using regression model.")
|
| 8 |
+
|
| 9 |
+
model = joblib.load("src/student_performance_model.pkl")
|
| 10 |
+
feature_columns = joblib.load("src/feature_columns.pkl")
|
| 11 |
+
|
| 12 |
+
gender = st.selectbox("Gender", ["female", "male"])
|
| 13 |
+
race = st.selectbox("Race/Ethnicity", ["group A", "group B", "group C", "group D", "group E"])
|
| 14 |
+
parent_education = st.selectbox(
|
| 15 |
+
"Parental Level of Education",
|
| 16 |
+
[
|
| 17 |
+
"some high school",
|
| 18 |
+
"high school",
|
| 19 |
+
"some college",
|
| 20 |
+
"associate's degree",
|
| 21 |
+
"bachelor's degree",
|
| 22 |
+
"master's degree"
|
| 23 |
+
]
|
| 24 |
+
)
|
| 25 |
+
lunch = st.selectbox("Lunch", ["standard", "free/reduced"])
|
| 26 |
+
test_prep = st.selectbox("Test Preparation Course", ["none", "completed"])
|
| 27 |
+
|
| 28 |
+
reading_score = st.number_input("Reading Score", min_value=0, max_value=100, value=70)
|
| 29 |
+
writing_score = st.number_input("Writing Score", min_value=0, max_value=100, value=70)
|
| 30 |
+
|
| 31 |
+
input_data = pd.DataFrame({
|
| 32 |
+
"gender": [gender],
|
| 33 |
+
"race/ethnicity": [race],
|
| 34 |
+
"parental level of education": [parent_education],
|
| 35 |
+
"lunch": [lunch],
|
| 36 |
+
"test preparation course": [test_prep],
|
| 37 |
+
"reading score": [reading_score],
|
| 38 |
+
"writing score": [writing_score]
|
| 39 |
+
})
|
| 40 |
|
| 41 |
+
input_data = pd.get_dummies(input_data, drop_first=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
+
input_data = input_data.reindex(columns=feature_columns, fill_value=0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
|
| 45 |
+
if st.button("Predict Math Score"):
|
| 46 |
+
prediction = model.predict(input_data)
|
| 47 |
+
st.subheader("Predicted Math Score")
|
| 48 |
+
st.write(round(prediction[0], 2))
|
|
|
|
|
|
|
|
|
|
|
|