penscola commited on
Commit
dabe296
1 Parent(s): 3493d9e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ from sklearn.model_selection import GridSearchCV
9
  from sklearn.ensemble import RandomForestRegressor
10
 
11
  # Load the saved full pipeline from the file
12
- model_file = '/media/penscola/Penscola@Tech/Projects/Gold-Prediction/model/Random-Forest-Regressor.pkl'
13
 
14
  with open(model_file, 'rb') as f_in:
15
  scaler, model = pickle.load(f_in)
 
9
  from sklearn.ensemble import RandomForestRegressor
10
 
11
  # Load the saved full pipeline from the file
12
+ model_file = 'Random-Forest-Regressor.pkl'
13
 
14
  with open(model_file, 'rb') as f_in:
15
  scaler, model = pickle.load(f_in)