Skip to content

class  Implicit


Description

Calculation of the gradient of the ul model variables with Implicit Gradient Based Methods.

Implements the ul optimization procedure of implicit gradient based method (IGBM), linear system based method (LS) [1] .

A wrapper of ll model which has been optimized in the ll optimization will be used in this procedure.


Parameters

  • ul_objective: callable
    The main optimization problem in a hierarchical optimization problem.

    Callable with signature callable(state). Defined based on modeling of the specific problem that need to be solved. Computing the loss of ul problem. The state object contains the following:

    • "data"(Tensor) - Data used in the ul optimization phase.
    • "target"(Tensor) - Target used in the ul optimization phase.
    • "ul_model"(Module) - ul model of the bi-level model structure.
    • "ll_model"(Module) - ll model of the bi-level model structure.
  • ul_model: Module
    ul model in a hierarchical model structure whose parameters will be updated with ul objective and trained ll model.

  • ll_objective: callable
    An optimization problem which is considered as the constraint of ul problem.

    Callable with signature callable(state). Defined based on modeling of the specific problem that need to be solved. Computing the loss of ul problem. The state object contains the following:

    • "data"(Tensor) - Data used in the ul optimization phase.
    • "target"(Tensor) - Target used in the ul optimization phase.
    • "ul_model"(Module) - ul model of the bi-level model structure.
    • "ll_model"(Module) - ll model of the bi-level model structure.
  • ll_model: Module
    ll model in a hierarchical model structure whose parameters will be updated with ll objective during ll optimization.

  • lower_learning_rate: float
    Step size for ll optimization.

  • k: int
    The maximum number of conjugate gradient iterations.

  • tolerance: float, default=1e-10
    End the method earlier when the norm of the residual is less than tolerance.


Methods


References

[1] Fabian Pedregosa. Hyperparameter optimization with approximate gradient, in ICML, 2016.