(self, *, estimator_idx, n_estimators, processing_msg)
| 660 | self.verbose = verbose |
| 661 | |
| 662 | def _log_message(self, *, estimator_idx, n_estimators, processing_msg): |
| 663 | if not self.verbose: |
| 664 | return None |
| 665 | return f"({estimator_idx} of {n_estimators}) {processing_msg}" |
| 666 | |
| 667 | def _get_predictions(self, X, *, output_method): |
| 668 | """Get predictions for each model in the chain.""" |