Yasaman commited on
Commit
b6d3dd7
·
1 Parent(s): 571cd8f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -13,18 +13,18 @@ from functions import *
13
 
14
  project = hopsworks.login()
15
 
16
- models=["gradient_boost_paris_model","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.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=2)
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="gradient_boost_paris_model")]
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)