From a7155aad4a27ec05e4095fa0b9a80544e8989ff9 Mon Sep 17 00:00:00 2001 From: Diego Marvid Date: Mon, 15 Jul 2024 12:31:41 -0300 Subject: [PATCH] remove comment --- ml_garden/implementation/tabular/autogluon/model.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ml_garden/implementation/tabular/autogluon/model.py b/ml_garden/implementation/tabular/autogluon/model.py index c072fb2..bb58450 100644 --- a/ml_garden/implementation/tabular/autogluon/model.py +++ b/ml_garden/implementation/tabular/autogluon/model.py @@ -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: