Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import pickle as pk
|
| 2 |
+
import gradio as gr
|
| 3 |
+
import numpy as np
|
| 4 |
+
import pandas as pd
|
| 5 |
+
from sklearn.linear_model import LinearRegression
|
| 6 |
+
loaded_model = pk.load(open("score_predict.pkl", "rb"), encoding="bytes")
|
| 7 |
+
|
| 8 |
+
def predict_my_score(hours_of_study):
|
| 9 |
+
input_arr = [[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 =
|
| 15 |
+
"number")
|
| 16 |
+
interface.launch(share = True)
|