structboost.AllboostHistory¶
- class structboost.AllboostHistory(selection, beta_path)[source]¶
Bases:
objectTrace information returned by allboost(…, return_history=True).
- Parameters:
- selection¶
Selected feature index at each step, shape (n_targets, stepno).
- Type:
numpy.ndarray[tuple[Any, …], numpy.dtype[numpy.int64]]
- beta_path¶
Coefficient path after each step, shape (n_targets, stepno, n_features). This can be memory-intensive; only enabled when explicitly requested.
- Type:
numpy.ndarray[tuple[Any, …], numpy.dtype[numpy.float64]]
Methods
__init__(selection, beta_path)Attributes