Type Exp
Namespace tensorflow.contrib.distributions.bijectors
Parent PowerTransform
Interfaces IExp
Compute `Y = g(X) = exp(X)`. Example Use:
Note: the exp(.) is applied element-wise but the Jacobian is a reduction
over the event space.
Show Example
# Create the Y=g(X)=exp(X) transform which works only on Tensors with 1 # batch ndim 2. exp = Exp() x = [[[1., 2], [3, 4]], [[5, 6], [7, 8]]] exp(x) == exp.forward(x) log(x) == exp.inverse(x)