aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.distributions.bijector.Affine.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.distributions.bijector.Affine.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.distributions.bijector.Affine.md35
1 files changed, 18 insertions, 17 deletions
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.distributions.bijector.Affine.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.distributions.bijector.Affine.md
index 29a6a5662c..09cbf17110 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.distributions.bijector.Affine.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.distributions.bijector.Affine.md
@@ -83,34 +83,34 @@ specified then `scale += IdentityMatrix`. Otherwise specifying a
##### Args:
-* <b>`shift`</b>: Numeric `Tensor`. If this is set to `None`, no shift is applied.
+* <b>`shift`</b>: Floating-point `Tensor`. If this is set to `None`, no shift is
+ applied.
* <b>`scale_identity_multiplier`</b>: floating point rank 0 `Tensor` representing a
scaling done to the identity matrix.
When `scale_identity_multiplier = scale_diag = scale_tril = None` then
`scale += IdentityMatrix`. Otherwise no scaled-identity-matrix is added
to `scale`.
-* <b>`scale_diag`</b>: Numeric `Tensor` representing the diagonal matrix.
- `scale_diag` has shape [N1, N2, ... k], which represents a k x k
+* <b>`scale_diag`</b>: Floating-point `Tensor` representing the diagonal matrix.
+ `scale_diag` has shape [N1, N2, ... k], which represents a k x k
diagonal matrix.
When `None` no diagonal term is added to `scale`.
-* <b>`scale_tril`</b>: Numeric `Tensor` representing the diagonal matrix.
- `scale_diag` has shape [N1, N2, ... k, k], which represents a k x k
+* <b>`scale_tril`</b>: Floating-point `Tensor` representing the diagonal matrix.
+ `scale_diag` has shape [N1, N2, ... k, k], which represents a k x k
lower triangular matrix.
When `None` no `scale_tril` term is added to `scale`.
The upper triangular elements above the diagonal are ignored.
-* <b>`scale_perturb_factor`</b>: Numeric `Tensor` representing factor matrix with
- last two dimensions of shape `(k, r)`.
- When `None`, no rank-r update is added to `scale`.
-* <b>`scale_perturb_diag`</b>: Numeric `Tensor` representing the diagonal matrix.
- `scale_perturb_diag` has shape [N1, N2, ... r], which represents an
- r x r Diagonal matrix.
- When `None` low rank updates will take the form `scale_perturb_factor *
- scale_perturb_factor.T`.
+* <b>`scale_perturb_factor`</b>: Floating-point `Tensor` representing factor matrix
+ with last two dimensions of shape `(k, r)`. When `None`, no rank-r
+ update is added to `scale`.
+* <b>`scale_perturb_diag`</b>: Floating-point `Tensor` representing the diagonal
+ matrix. `scale_perturb_diag` has shape [N1, N2, ... r], which
+ represents an `r x r` diagonal matrix. When `None` low rank updates will
+ take the form `scale_perturb_factor * scale_perturb_factor.T`.
* <b>`event_ndims`</b>: Scalar `int32` `Tensor` indicating the number of dimensions
associated with a particular draw from the distribution. Must be 0 or 1.
-* <b>`validate_args`</b>: `Boolean` indicating whether arguments should be checked
- for correctness.
-* <b>`name`</b>: `String` name given to ops managed by this object.
+* <b>`validate_args`</b>: Python `bool` indicating whether arguments should be
+ checked for correctness.
+* <b>`name`</b>: Python `str` name given to ops managed by this object.
##### Raises:
@@ -365,7 +365,8 @@ Note: Jacobian is either constant for both forward and inverse or neither.
##### Returns:
- `Boolean`.
+
+* <b>`is_constant_jacobian`</b>: Python `bool`.
- - -