Skip to content

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomarvid committed Jul 15, 2024
1 parent 44f502e commit a7155aa
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ml_garden/implementation/tabular/autogluon/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ def __init__(self, **params):
self.model: TabularPredictor = None

def fit(self, X: pd.DataFrame, y: pd.Series, eval_set=None, verbose=True) -> None:

# Autogluon SHOULD ignore encoders and previous steps

train_data = X.copy()
train_data["label"] = y
if eval_set is not None and len(eval_set) > 0:
Expand Down

0 comments on commit a7155aa

Please sign in to comment.