Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -10,6 +10,5 @@ def predict_my_score(hours_of_study):
|
|
10 |
y_predict_new = loaded_model.predict(input_arr)
|
11 |
return int(y_predict_new[0][0])
|
12 |
|
13 |
-
interface = gr.Interface(predict_my_score, title = "Predict My Score ",
|
14 |
-
description = "Enter the hours you study per day and know your score.", inputs = "number", outputs = "number")
|
15 |
interface.launch(share = True)
|
|
|
10 |
y_predict_new = loaded_model.predict(input_arr)
|
11 |
return int(y_predict_new[0][0])
|
12 |
|
13 |
+
interface = gr.Interface(predict_my_score, title = "Predict My Score ", description = "Enter the hours you study per day and know your score.", inputs = "number", outputs = "number")
|
|
|
14 |
interface.launch(share = True)
|