tf.errors.AbortedError

class tf.errors.AbortedError The operation was aborted, typically due to a concurrent action. For example, running a queue.enqueue() operation may raise AbortedError if a queue.close() operation previously ran.

tf.nn.rnn_cell.DropoutWrapper.__init__()

tf.nn.rnn_cell.DropoutWrapper.__init__(cell, input_keep_prob=1.0, output_keep_prob=1.0, seed=None) Create a cell with added input and/or output dropout. Dropout is never used on the state. Args: cell: an RNNCell, a projection to output_size is added to it. input_keep_prob: unit Tensor or float between 0 and 1, input keep probability; if it is float and 1, no input dropout will be added. output_keep_prob: unit Tensor or float between 0 and 1, output keep probability; if it is float and 1, no

tf.nn.rnn_cell.OutputProjectionWrapper.zero_state()

tf.nn.rnn_cell.OutputProjectionWrapper.zero_state(batch_size, dtype) Return zero-filled state tensor(s). Args: batch_size: int, float, or unit Tensor representing the batch size. dtype: the data type to use for the state. Returns: If state_size is an int or TensorShape, then the return value is a N-D tensor of shape [batch_size x state_size] filled with zeros. If state_size is a nested list or tuple, then the return value is a nested list or tuple (of the same structure) of 2-D tensors wit

tf.ones()

tf.ones(shape, dtype=tf.float32, name=None) Creates a tensor with all elements set to 1. This operation returns a tensor of type dtype with shape shape and all elements set to 1. For example: tf.ones([2, 3], int32) ==> [[1, 1, 1], [1, 1, 1]] Args: shape: Either a list of integers, or a 1-D Tensor of type int32. dtype: The type of an element in the resulting Tensor. name: A name for the operation (optional). Returns: A Tensor with all elements set to 1.

tf.contrib.framework.assert_scalar_int()

tf.contrib.framework.assert_scalar_int(tensor) Assert tensor is 0-D, of type tf.int32 or tf.int64. Args: tensor: Tensor to test. Returns: tensor, for chaining. Raises: ValueError: if tensor is not 0-D, of type tf.int32 or tf.int64.

tf.contrib.bayesflow.stochastic_tensor.InverseGammaWithSoftplusAlphaBetaTensor.graph

tf.contrib.bayesflow.stochastic_tensor.InverseGammaWithSoftplusAlphaBetaTensor.graph

tf.contrib.distributions.MultivariateNormalFull.get_batch_shape()

tf.contrib.distributions.MultivariateNormalFull.get_batch_shape() Shape of a single sample from a single event index as a TensorShape. Same meaning as batch_shape. May be only partially defined. Returns: batch_shape: TensorShape, possibly unknown.

tf.contrib.bayesflow.stochastic_tensor.BernoulliWithSigmoidPTensor

class tf.contrib.bayesflow.stochastic_tensor.BernoulliWithSigmoidPTensor BernoulliWithSigmoidPTensor is a StochasticTensor backed by the distribution BernoulliWithSigmoidP.

tf.contrib.bayesflow.stochastic_tensor.ExponentialWithSoftplusLamTensor.entropy()

tf.contrib.bayesflow.stochastic_tensor.ExponentialWithSoftplusLamTensor.entropy(name='entropy')

tf.contrib.distributions.Chi2WithAbsDf.get_event_shape()

tf.contrib.distributions.Chi2WithAbsDf.get_event_shape() Shape of a single sample from a single batch as a TensorShape. Same meaning as event_shape. May be only partially defined. Returns: event_shape: TensorShape, possibly unknown.