Bases: StrEnum
Supported pushforward types for pushing forward weight space uncertainty.
Source code in laplax/enums.py
| class Pushforward(StrEnum):
"""Supported pushforward types for pushing forward weight space uncertainty."""
LINEAR = "linear"
NONLINEAR = "nonlinear"
|