Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -13,18 +13,18 @@ from functions import *
|
|
13 |
|
14 |
project = hopsworks.login()
|
15 |
|
16 |
-
models=["
|
17 |
def air_quality(city,model_name):
|
18 |
start_date = datetime.now() - timedelta(days=1)
|
19 |
start_time = int(start_date.timestamp()) * 1000
|
20 |
-
X = pd.read_csv('
|
21 |
|
22 |
#X = X.drop(columns=["date"]).fillna(0)
|
23 |
|
24 |
X = X.drop(X.columns[0],axis=1)
|
25 |
|
26 |
mr = project.get_model_registry()
|
27 |
-
model = mr.get_model(model_name, version=
|
28 |
model_dir = model.download()
|
29 |
model = joblib.load(model_dir + "/model.pkl")
|
30 |
|
@@ -42,7 +42,7 @@ def air_quality(city,model_name):
|
|
42 |
with gr.Blocks() as demo:
|
43 |
gr.Label("Predict air quality in Paris")
|
44 |
with gr.Row():
|
45 |
-
inp=[gr.Textbox(label='Enter city'),gr.Radio(models, value="
|
46 |
out = gr.Textbox()
|
47 |
btn = gr.Button("Show prediction")
|
48 |
btn.click(fn=air_quality, inputs=inp, outputs=out)
|
|
|
13 |
|
14 |
project = hopsworks.login()
|
15 |
|
16 |
+
models=["Gradient_Boost","Random_Forest","Lasso"]## Add others models names as in hopsworks
|
17 |
def air_quality(city,model_name):
|
18 |
start_date = datetime.now() - timedelta(days=1)
|
19 |
start_time = int(start_date.timestamp()) * 1000
|
20 |
+
X = pd.read_csv('X_train.csv')
|
21 |
|
22 |
#X = X.drop(columns=["date"]).fillna(0)
|
23 |
|
24 |
X = X.drop(X.columns[0],axis=1)
|
25 |
|
26 |
mr = project.get_model_registry()
|
27 |
+
model = mr.get_model(model_name, version=3)
|
28 |
model_dir = model.download()
|
29 |
model = joblib.load(model_dir + "/model.pkl")
|
30 |
|
|
|
42 |
with gr.Blocks() as demo:
|
43 |
gr.Label("Predict air quality in Paris")
|
44 |
with gr.Row():
|
45 |
+
inp=[gr.Textbox(label='Enter city'),gr.Radio(models, value="Gradient_Boost")]
|
46 |
out = gr.Textbox()
|
47 |
btn = gr.Button("Show prediction")
|
48 |
btn.click(fn=air_quality, inputs=inp, outputs=out)
|