Type Invert
Namespace tensorflow.contrib.distributions.bijectors
Parent Bijector
Interfaces IInvert
Bijector which inverts another Bijector. Example Use: [ExpGammaDistribution (see Background & Context)](
https://reference.wolfram.com/language/ref/ExpGammaDistribution.html)
models `Y=log(X)` where `X ~ Gamma`.
Show Example
exp_gamma_distribution = TransformedDistribution( distribution=Gamma(concentration=1., rate=2.), bijector=bijector.Invert(bijector.Exp())