(self)
| 106 | return self.n_learners |
| 107 | |
| 108 | def __iter__(self): |
| 109 | for x in range(self.n_learners): |
| 110 | yield x |
| 111 | |
| 112 | def _calculate_disagreement(self, *args, **kwargs): |
| 113 | return self.calculate_disagreement_return |
nothing calls this directly
no outgoing calls
no test coverage detected