Skip to content

Commit cd2c4ff

Browse files
linting
1 parent 744f495 commit cd2c4ff

File tree

1 file changed

+3
-3
lines changed
  • python/src/lazylearn/regression/models/randomforest/random_forest_steps

1 file changed

+3
-3
lines changed

python/src/lazylearn/regression/models/randomforest/random_forest_steps/regressor_step.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ def __init__(self):
1010
def fit(self, pipeline: RegressionPipeline):
1111
self.regressor.fit(X=pipeline.train_features_df, y=pipeline.train_targets)
1212

13-
#y_hat = self.regressor.predict(X=pipeline.holdout_features_df)
14-
#pipeline.holdout_score = mean_absolute_error(pipeline.holdout_targets, y_hat)
13+
# y_hat = self.regressor.predict(X=pipeline.holdout_features_df)
14+
# pipeline.holdout_score = mean_absolute_error(pipeline.holdout_targets, y_hat)
1515

1616
def predict(self, pipeline: RegressionPipeline):
17-
raise NotImplementedError
17+
raise NotImplementedError

0 commit comments

Comments
 (0)