Skip to content

Commit

Permalink
initial commit, implemented (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmetCanSolak authored Mar 21, 2022
1 parent c19595f commit 8ec016a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aydin/regression/lgbm.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def __init__(self, model, gpu_prediction, loss_history):
def _save_internals(self, path: str):
if self.model is not None:
lgbm_model_file = join(path, 'lgbm_model.txt')
self.model.save(lgbm_model_file)
self.model.save_model(lgbm_model_file)

def _load_internals(self, path: str):
lgbm_model_file = join(path, 'lgbm_model.txt')
Expand Down

0 comments on commit 8ec016a

Please sign in to comment.