Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -8,7 +8,7 @@ import streamlit as st
|
|
| 8 |
|
| 9 |
|
| 10 |
# Load the trained model
|
| 11 |
-
model = student_performance_model.h5
|
| 12 |
|
| 13 |
def predict_marks(Hours_studied,Previous_Score,Extracurriculum_Activivities,Sleep_Hours,Sample_Question):
|
| 14 |
"predict the student marks based on the input data"
|
|
|
|
| 8 |
|
| 9 |
|
| 10 |
# Load the trained model
|
| 11 |
+
model = joblib.load("student_performance_model.h5")
|
| 12 |
|
| 13 |
def predict_marks(Hours_studied,Previous_Score,Extracurriculum_Activivities,Sleep_Hours,Sample_Question):
|
| 14 |
"predict the student marks based on the input data"
|