Skip to content

Commit a7155aa

Browse files
committed
remove comment
1 parent 44f502e commit a7155aa

File tree

1 file changed

+0
-3
lines changed
  • ml_garden/implementation/tabular/autogluon

1 file changed

+0
-3
lines changed

ml_garden/implementation/tabular/autogluon/model.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ def __init__(self, **params):
1616
self.model: TabularPredictor = None
1717

1818
def fit(self, X: pd.DataFrame, y: pd.Series, eval_set=None, verbose=True) -> None:
19-
20-
# Autogluon SHOULD ignore encoders and previous steps
21-
2219
train_data = X.copy()
2320
train_data["label"] = y
2421
if eval_set is not None and len(eval_set) > 0:

0 commit comments

Comments
 (0)