DataMine commited on
Commit
288f291
·
verified ·
1 Parent(s): 6445e74

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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"