mxnet.gluon.probability.transformationΒΆ
Transformation classes.
Classes
|
|
|
Perform pointwise affine transform: y = loc + scale * x. |
|
Composes multiple transforms in a chain. |
|
Perform the exponential transform: y = exp{x}. |
|
Perform pointwise power transform: y = pow(x, exponent). |
|
Perform pointwise sigmoid transform: y = 1 / (1 + exp(-x)). |
|
|
|
Transform with learnable parameters should inherit from this class rather than Transformation. |
|
Abstract class for implementing invertible transformation with computable log det jacobians |