nemos.solvers._solver_adapter.SolverAdapter#
- class nemos.solvers._solver_adapter.SolverAdapter(unregularized_loss, regularizer, regularizer_strength, has_aux, init_params=None, **solver_init_kwargs)[source]#
Bases:
AbstractSolver,ABCBase class for adapters wrapping existing solvers.
Needs to define the class attribute _solver_cls and set the wrapped solver in the _solver attribute.
- Parameters:
unregularized_loss (Callable)
regularizer (Regularizer)
regularizer_strength (float | None)
has_aux (bool)
init_params (Params | None)
- abstractmethod __init__(unregularized_loss, regularizer, regularizer_strength, has_aux, init_params=None, **solver_init_kwargs)#
Create the solver.
- Parameters:
unregularized_loss (
Callable) – Unregularized loss function. Currently BaseRegressor.compute_loss.regularizer (
Regularizer) – Regularizer object used to create the penalized loss or get the proximal operator from.has_aux (
bool) – Whether unregularized_loss returns auxiliary variables. If False, the loss function is expected to return a single scalar. If True, the loss is expected to return a tuple of length 2 with a scalar and auxiliary variables.init_params (
Any|None) – Initial model parameters. Passed to the regularizer’s get_proximal_operator or penalized_loss.**solver_init_kwargs – Keyword arguments modifying the solver’s behavior.
Methods
__init__(unregularized_loss, regularizer, ...)Create the solver.
Set of accepted argument names, extended with the wrapped solver's arguments.
init_state(init_params, *args)Initialize the solver state.
run(init_params, *args)Run a full optimization process until a stopping criterion is reached.
update(params, state, *args)Perform a single step/update of the optimization process.
- __getattr__(name)[source]#
Try getting undefined attributes from the underlying solver.
- Parameters:
name (str)
- classmethod __init_subclass__(**kw)[source]#
Generate the docstring including accepted arguments and the wrapped solver’s documentation.
- classmethod get_accepted_arguments()[source]#
Set of accepted argument names, extended with the wrapped solver’s arguments.
- abstractmethod init_state(init_params, *args)#
Initialize the solver state.
Used by BaseRegressor.initialize_state
- abstractmethod run(init_params, *args)#
Run a full optimization process until a stopping criterion is reached.
Used by BaseRegressor.fit.