Hemg commited on
Commit
8759a08
·
verified ·
1 Parent(s): 0575917

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -4,7 +4,11 @@ import numpy as np
4
  import pandas as pd
5
  from huggingface_hub import hf_hub_download
6
  from sklearn.preprocessing import StandardScaler, LabelEncoder
7
-
 
 
 
 
8
  REPO_ID = "Hemg/modelxxx"
9
  MoDEL_FILENAME = "studentpredict.joblib"
10
  SCALER_FILENAME = "studentscaler.joblib"
@@ -113,7 +117,7 @@ iface = gr.Interface(
113
 
114
 
115
  outputs=gr.HTML(), # Changed to HTML output
116
- title="Student Admission Prediction",
117
  description="Predict the probability of student admission",
118
  css="body { font-family: Arial, sans-serif; }"
119
  )
 
4
  import pandas as pd
5
  from huggingface_hub import hf_hub_download
6
  from sklearn.preprocessing import StandardScaler, LabelEncoder
7
+ st.write("""
8
+ # Student Admission Prediction
9
+ This app predicts the **student Prediction**!
10
+ """)
11
+ st.write('---')
12
  REPO_ID = "Hemg/modelxxx"
13
  MoDEL_FILENAME = "studentpredict.joblib"
14
  SCALER_FILENAME = "studentscaler.joblib"
 
117
 
118
 
119
  outputs=gr.HTML(), # Changed to HTML output
120
+ #title="Student Admission Prediction",
121
  description="Predict the probability of student admission",
122
  css="body { font-family: Arial, sans-serif; }"
123
  )