Scalar Affine Bijector¤
        
distreqx.bijectors.scalar_affine.ScalarAffine            (AbstractBijector)
        
¤
    An affine bijector that acts elementwise.
The bijector is defined as follows:
- Forward: y = scale * x + shift
- Forward Jacobian determinant: log|det J(x)| = log|scale|
- Inverse: x = (y - shift) / scale
- Inverse Jacobian determinant: log|det J(y)| = -log|scale|
where scale and shift are the bijector's parameters.
__init__(self, shift: Array, scale: Optional[Array] = None, log_scale: Optional[Array] = None)
¤
    Initializes a ScalarAffine bijector.
Arguments:
- shift: the bijector's shift parameter.
- scale: the bijector's scale parameter. NOTE:- scalemust be non-zero, otherwise the bijector is not invertible. It is the user's responsibility to make sure- scaleis non-zero; the class will make no attempt to verify this.
- log_scale: the log of the scale parameter. If specified, the bijector's scale is set equal to- exp(log_scale). Unlike- scale,- log_scaleis an unconstrained parameter. NOTE: either- scaleor- log_scalecan be specified, but not both. If neither is specified, the bijector's scale will default to 1.
Raises:
- ValueError: if both- scaleand- log_scaleare not None.