EAV123 commited on
Commit
d51d681
·
verified ·
1 Parent(s): 58078e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -0
app.py CHANGED
@@ -12,6 +12,19 @@ def make_prediction(model, input_data):
12
  prediction = model.predict(input_data)
13
  return prediction
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  # Create the Streamlit app
16
  def main():
17
  # Set page title and configure layout
@@ -40,6 +53,10 @@ def main():
40
  if st.button("Predict Exam Score"):
41
  prediction = make_prediction(model, input_data)
42
  st.write(f"Predicted Exam Score: {prediction[0]:.2f}")
 
 
 
 
43
 
44
  if __name__ == '__main__':
45
  main()
 
12
  prediction = model.predict(input_data)
13
  return prediction
14
 
15
+ # Define the function to calculate GPA
16
+ def calculate_gpa(score):
17
+ if score >= 70:
18
+ return 'A (5 points)'
19
+ elif score >= 60:
20
+ return 'B (4 points)'
21
+ elif score >= 50:
22
+ return 'C (3 points)'
23
+ elif score >= 45:
24
+ return 'D (2 points)'
25
+ else:
26
+ return 'F (0 points)'
27
+
28
  # Create the Streamlit app
29
  def main():
30
  # Set page title and configure layout
 
53
  if st.button("Predict Exam Score"):
54
  prediction = make_prediction(model, input_data)
55
  st.write(f"Predicted Exam Score: {prediction[0]:.2f}")
56
+
57
+ # Calculate GPA
58
+ gpa = calculate_gpa(prediction[0])
59
+ st.write(f"Predicted GPA: {gpa}")
60
 
61
  if __name__ == '__main__':
62
  main()