(self, output)
| 69 | return expits * (1 - expits) |
| 70 | |
| 71 | def transform(self, output): |
| 72 | # Apply logistic (sigmoid) function to the output |
| 73 | return expit(output) |
| 74 | |
| 75 | |
| 76 | class GradientBoosting(BaseEstimator): |
nothing calls this directly
no outgoing calls
no test coverage detected