We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 744f495 commit cd2c4ffCopy full SHA for cd2c4ff
python/src/lazylearn/regression/models/randomforest/random_forest_steps/regressor_step.py
@@ -10,8 +10,8 @@ def __init__(self):
10
def fit(self, pipeline: RegressionPipeline):
11
self.regressor.fit(X=pipeline.train_features_df, y=pipeline.train_targets)
12
13
- #y_hat = self.regressor.predict(X=pipeline.holdout_features_df)
14
- #pipeline.holdout_score = mean_absolute_error(pipeline.holdout_targets, y_hat)
+ # y_hat = self.regressor.predict(X=pipeline.holdout_features_df)
+ # pipeline.holdout_score = mean_absolute_error(pipeline.holdout_targets, y_hat)
15
16
def predict(self, pipeline: RegressionPipeline):
17
- raise NotImplementedError
+ raise NotImplementedError
0 commit comments