tf.contrib.distributions.Categorical.mean()

tf.contrib.distributions.Categorical.mean(name='mean') Mean.

tf.SparseTensor.values

tf.SparseTensor.values The non-zero values in the represented dense tensor. Returns: A 1-D Tensor of any data type.

tf.contrib.distributions.BernoulliWithSigmoidP.name

tf.contrib.distributions.BernoulliWithSigmoidP.name Name prepended to all ops created by this Distribution.

tf.contrib.bayesflow.stochastic_tensor.MultivariateNormalFullTensor.value_type

tf.contrib.bayesflow.stochastic_tensor.MultivariateNormalFullTensor.value_type

tf.contrib.distributions.GammaWithSoftplusAlphaBeta.allow_nan_stats

tf.contrib.distributions.GammaWithSoftplusAlphaBeta.allow_nan_stats Python boolean describing behavior when a stat is undefined. Stats return +/- infinity when it makes sense. E.g., the variance of a Cauchy distribution is infinity. However, sometimes the statistic is undefined, e.g., if a distribution's pdf does not achieve a maximum within the support of the distribution, the mode is undefined. If the mean is undefined, then by definition the variance is undefined. E.g. the mean for Student'

tensorflow::EnvWrapper::GetSymbolFromLibrary()

Status tensorflow::EnvWrapper::GetSymbolFromLibrary(void *handle, const char *symbol_name, void **symbol) override

tf.fft3d()

tf.fft3d(input, name=None) Compute the 3-dimensional discrete Fourier Transform over the inner-most 3 dimensions of input. Args: input: A Tensor of type complex64. A complex64 tensor. name: A name for the operation (optional). Returns: A Tensor of type complex64. A complex64 tensor of the same shape as input. The inner-most 3 dimensions of input are replaced with their 3D Fourier Transform.

tf.digamma()

tf.digamma(x, name=None) Computes Psi, the derivative of Lgamma (the log of the absolute value of Gamma(x)), element-wise. Args: x: A Tensor. Must be one of the following types: half, float32, float64. name: A name for the operation (optional). Returns: A Tensor. Has the same type as x.

tf.nn.rnn_cell.LSTMStateTuple.__getnewargs__()

tf.nn.rnn_cell.LSTMStateTuple.__getnewargs__() Return self as a plain tuple. Used by copy and pickle.

tf.div()

tf.div(x, y, name=None) Returns x / y element-wise. NOTE: Div supports broadcasting. More about broadcasting here Args: x: A Tensor. Must be one of the following types: half, float32, float64, uint8, int8, uint16, int16, int32, int64, complex64, complex128. y: A Tensor. Must have the same type as x. name: A name for the operation (optional). Returns: A Tensor. Has the same type as x.