Skip to content

Commit

Permalink
fix for change in branch
Browse files Browse the repository at this point in the history
  • Loading branch information
egillax committed Nov 21, 2024
1 parent bfaa6c5 commit 2b414b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/python/Estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def __init__(self, model, model_parameters, estimator_settings):
self.best_score = None
self.best_epoch = None
self.learn_rate_schedule = None
if parameters["estimator_settings"]["compile"]:
if estimator_settings["compile"]:
self.model = torch.compile(self.model, dynamic=False)

def fit(self, dataset, test_dataset):
Expand Down

0 comments on commit 2b414b8

Please sign in to comment.