(self)
| 27 | |
| 28 | @property |
| 29 | def is_terminal(self): |
| 30 | return not bool(self.left_child and self.right_child) |
| 31 | |
| 32 | def _find_splits(self, X): |
| 33 | """Find all possible split values.""" |
nothing calls this directly
no outgoing calls
no test coverage detected