(self, train_pool, test_pool, params, allow_clear_pool, init_model)
| 1821 | setattr(self, '_n_features_in', self._object._get_n_features_in()) |
| 1822 | |
| 1823 | def _train(self, train_pool, test_pool, params, allow_clear_pool, init_model): |
| 1824 | self._object._train(train_pool, test_pool, params, allow_clear_pool, init_model._object if init_model else None) |
| 1825 | self._set_trained_model_attributes() |
| 1826 | |
| 1827 | def _set_test_evals(self, test_evals): |
| 1828 | self._object._set_test_evals(test_evals) |
no test coverage detected