engine
engine
¶
Core natural gradient boosting engine for ngboost-lightning.
NGBEngine
¶
NGBEngine(
dist: type[Distribution] = Normal,
n_estimators: int = 500,
learning_rate: float = 0.01,
minibatch_frac: float = 1.0,
col_sample: float = 1.0,
natural_gradient: bool = True,
tol: float = 0.0001,
random_state: int | None = None,
verbose: bool = True,
verbose_eval: int = 100,
lgbm_params: dict[str, Any] | None = None,
scoring_rule: ScoringRule | None = None,
)
Core natural gradient boosting engine.
Implements the boosting loop with K independent LightGBM boosters (one per distribution parameter), faithfully replicating NGBoost's algorithm.
This is an internal class. Users should use
:class:~ngboost_lightning.LightningBoostRegressor instead.
| PARAMETER | DESCRIPTION |
|---|---|
dist
|
Distribution class to use. Must be a subclass of Distribution.
TYPE:
|
n_estimators
|
Number of boosting iterations.
TYPE:
|
learning_rate
|
Outer learning rate applied to each boosting step.
TYPE:
|
minibatch_frac
|
Fraction of rows to subsample each iteration. 1.0 means no subsampling.
TYPE:
|
col_sample
|
Fraction of columns to subsample each iteration. 1.0 means no column subsampling. All K parameter-boosters see the same feature subset each iteration.
TYPE:
|
natural_gradient
|
Whether to use the natural gradient (True) or the ordinary gradient (False).
TYPE:
|
tol
|
Numerical tolerance for the line search. When the mean norm of the scaled residuals falls below this, the line search stops.
TYPE:
|
random_state
|
Seed for reproducibility (minibatch sampling).
TYPE:
|
verbose
|
Whether to print training progress.
TYPE:
|
verbose_eval
|
Print progress every this many iterations.
TYPE:
|
lgbm_params
|
Additional parameters passed to each LightGBM Booster.
TYPE:
|
scoring_rule
|
The scoring rule used for training. Defaults to
TYPE:
|
Initialize the engine.
See class docstring for parameter descriptions.
Source code in ngboost_lightning/engine.py
feature_importances_
property
¶
Feature importances per distribution parameter.
| RETURNS | DESCRIPTION |
|---|---|
NDArray[floating]
|
Importance array, shape |
NDArray[floating]
|
sums to 1.0 and corresponds to one distribution parameter. |
fit
¶
fit(
X: NDArray[floating],
y: NDArray[floating],
X_val: NDArray[floating] | None = None,
y_val: NDArray[floating] | None = None,
early_stopping_rounds: int | None = None,
sample_weight: NDArray[floating] | None = None,
val_sample_weight: NDArray[floating] | None = None,
train_loss_monitor: Callable[
[Distribution, NDArray[floating]], float
]
| None = None,
val_loss_monitor: Callable[
[Distribution, NDArray[floating]], float
]
| None = None,
) -> Self
Fit the boosting model.
| PARAMETER | DESCRIPTION |
|---|---|
X
|
Training features, shape
TYPE:
|
y
|
Training targets, shape
TYPE:
|
X_val
|
Validation features for early stopping.
TYPE:
|
y_val
|
Validation targets for early stopping.
TYPE:
|
early_stopping_rounds
|
Stop if validation loss hasn't improved for this many consecutive iterations.
TYPE:
|
sample_weight
|
Per-sample training weights, shape
TYPE:
|
val_sample_weight
|
Per-sample validation weights,
shape
TYPE:
|
train_loss_monitor
|
Custom callable for computing training loss.
Signature:
TYPE:
|
val_loss_monitor
|
Custom callable for computing validation loss.
Signature:
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Self
|
self |
| RAISES | DESCRIPTION |
|---|---|
ValueError
|
If |
Source code in ngboost_lightning/engine.py
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | |
predict_params
¶
Predict internal distribution parameters.
| PARAMETER | DESCRIPTION |
|---|---|
X
|
Features, shape
TYPE:
|
n_iterations
|
Number of boosting iterations to use.
If
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
NDArray[floating]
|
Parameters, shape |
Source code in ngboost_lightning/engine.py
pred_dist
¶
pred_dist(
X: NDArray[floating], n_iterations: int | None = None
) -> Distribution
Predict the full conditional distribution.
| PARAMETER | DESCRIPTION |
|---|---|
X
|
Features, shape
TYPE:
|
n_iterations
|
Number of boosting iterations to use.
If
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Distribution
|
A Distribution instance for all samples. |
Source code in ngboost_lightning/engine.py
predict
¶
Point prediction (conditional mean).
| PARAMETER | DESCRIPTION |
|---|---|
X
|
Features, shape
TYPE:
|
n_iterations
|
Number of boosting iterations to use.
If
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
NDArray[floating]
|
Predictions, shape |
Source code in ngboost_lightning/engine.py
staged_predict_params
¶
Yield distribution parameters after each boosting iteration.
| PARAMETER | DESCRIPTION |
|---|---|
X
|
Features, shape
TYPE:
|
| YIELDS | DESCRIPTION |
|---|---|
Generator[NDArray[floating]]
|
Parameters at iteration i, shape |
Source code in ngboost_lightning/engine.py
staged_pred_dist
¶
staged_pred_dist(
X: NDArray[floating],
) -> Generator[Distribution]
Yield the full conditional distribution after each iteration.
| PARAMETER | DESCRIPTION |
|---|---|
X
|
Features, shape
TYPE:
|
| YIELDS | DESCRIPTION |
|---|---|
Generator[Distribution]
|
Distribution at iteration i. |
Source code in ngboost_lightning/engine.py
staged_predict
¶
Yield point predictions (conditional mean) after each iteration.
| PARAMETER | DESCRIPTION |
|---|---|
X
|
Features, shape
TYPE:
|
| YIELDS | DESCRIPTION |
|---|---|
Generator[NDArray[floating]]
|
Predictions at iteration i, shape |
Source code in ngboost_lightning/engine.py
build_lgbm_params
¶
Merge surfaced LightGBM kwargs from an estimator with extra params.
| PARAMETER | DESCRIPTION |
|---|---|
estimator
|
An sklearn-style estimator whose attributes include the
keys in :data:
TYPE:
|
lgbm_params
|
Additional LightGBM parameters. If a key conflicts
with a surfaced key, a
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict[str, Any]
|
Merged parameter dictionary for LightGBM. |