Testys commited on
Commit
8b5ad7e
1 Parent(s): 7709e78

Update model.py

Browse files
Files changed (1) hide show
  1. model.py +1 -1
model.py CHANGED
@@ -55,6 +55,6 @@ f1 = f1_score(pred, y_test)
55
  print(f"F1 Score for LightGBM: {f1}.")
56
 
57
  # Using pickle to save model
58
- lightgbm = open("../deployment/lightgbm.pickle", "wb")
59
  pkl.dump(lgbm, lightgbm)
60
  lightgbm.close()
 
55
  print(f"F1 Score for LightGBM: {f1}.")
56
 
57
  # Using pickle to save model
58
+ lightgbm = open("./lightgbm.pickle", "wb")
59
  pkl.dump(lgbm, lightgbm)
60
  lightgbm.close()