File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1+ """
2+ This package enable Jacobian descent, through the `backward` and `mtl_backward` functions, which
3+ are meant to replace the call to `torch.backward` or `loss.backward` in gradient descent. To combine
4+ the information of the Jacobian, an aggregator from the `aggregation` package has to be used.
5+ """
6+
17from ._autojac import backward , mtl_backward
Original file line number Diff line number Diff line change 1+ """
2+ This package provides implementations of several popular aggregation strategies from the literature.
3+ The role of these aggregators is to combine a matrix (e.g. the Jacobian matrix) into a single
4+ vector, generally to be used like a gradient.
5+ """
6+
17from ._aggregator_bases import Aggregator
28from ._aligned_mtl import AlignedMTL
39from ._config import ConFIG
You can’t perform that action at this time.
0 commit comments