Add a booster to _CVBooster.
(self, booster)
| 281 | self.best_iteration = -1 |
| 282 | |
| 283 | def append(self, booster): |
| 284 | """Add a booster to _CVBooster.""" |
| 285 | self.boosters.append(booster) |
| 286 | |
| 287 | def __getattr__(self, name): |
| 288 | """Redirect methods call of _CVBooster.""" |
no outgoing calls