(self, x, y, sample_weights=None)
| 14 | self.model = BC(base_estimator=model1, n_estimators=n_estimators, max_features=1., verbose=verbose) |
| 15 | |
| 16 | def train_model(self, x, y, sample_weights=None): |
| 17 | self.model.fit(x, y, sample_weight=sample_weights) |
| 18 | |
| 19 | def test_model(self, x, y, sample_weights=None): |
| 20 | # model_acc = self.model.score(x, y, sample_weight=sample_weights) |
nothing calls this directly
no outgoing calls
no test coverage detected