randomml.ensemble.RVFLBoostingRegressor#
- class randomml.ensemble.RVFLBoostingRegressor(in_dim, rvfl_kwargs=None, n_estimators=50, learning_rate=1.0, random_state=None)[source]#
Boosting-based ensemble of RVFLRegressor using sklearn’s AdaBoostRegressor.
- __init__(in_dim, rvfl_kwargs=None, n_estimators=50, learning_rate=1.0, random_state=None)[source]#
Initializes the Boosting-based RVFLRegressor.
- Args:
in_dim (int): Input feature dimension. rvfl_kwargs (dict, optional): Keyword arguments for RVFLRegressor. n_estimators (int): Number of boosting iterations. learning_rate (float): Learning rate for boosting. random_state (int, optional): Random seed for reproducibility.
Methods