Squashed Normal Distribution
lerax.distribution.SquashedNormal
Bases: AbstractTransformedDistribution[Float[Array, ' dims']]
Normal distribution with squashing bijector for bounded outputs.
Attributes:
| Name | Type | Description |
|---|---|---|
distribution |
distributions.Transformed
|
The underlying distreqx Transformed distribution. |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
loc
|
Float[ArrayLike, '']
|
The mean of the normal distribution. |
required |
scale
|
Float[ArrayLike, '']
|
The standard deviation of the normal distribution. |
required |
high
|
Float[ArrayLike, '']
|
The upper bound for bounded squashing. |
jnp.array(1.0)
|
low
|
Float[ArrayLike, '']
|
The lower bound for bounded squashing. |
jnp.array(-1.0)
|