doc_content
stringlengths
1
386k
doc_id
stringlengths
5
188
tf.raw_ops.SparseReduceMaxSparse Computes the max of elements across dimensions of a SparseTensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseReduceMaxSparse tf.raw_ops.SparseReduceMaxSparse( input_indices, input_values, input_shape, reduction_axe...
tensorflow.raw_ops.sparsereducemaxsparse
tf.raw_ops.SparseReduceSum Computes the sum of elements across dimensions of a SparseTensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseReduceSum tf.raw_ops.SparseReduceSum( input_indices, input_values, input_shape, reduction_axes, keep_dims=False...
tensorflow.raw_ops.sparsereducesum
tf.raw_ops.SparseReduceSumSparse Computes the sum of elements across dimensions of a SparseTensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseReduceSumSparse tf.raw_ops.SparseReduceSumSparse( input_indices, input_values, input_shape, reduction_axe...
tensorflow.raw_ops.sparsereducesumsparse
tf.raw_ops.SparseReorder Reorders a SparseTensor into the canonical, row-major ordering. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseReorder tf.raw_ops.SparseReorder( input_indices, input_values, input_shape, name=None ) Note that by convention, a...
tensorflow.raw_ops.sparsereorder
tf.raw_ops.SparseReshape Reshapes a SparseTensor to represent values in a new dense shape. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseReshape tf.raw_ops.SparseReshape( input_indices, input_shape, new_shape, name=None ) This operation has the same...
tensorflow.raw_ops.sparsereshape
tf.raw_ops.SparseSegmentMean Computes the mean along sparse segments of a tensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSegmentMean tf.raw_ops.SparseSegmentMean( data, indices, segment_ids, name=None ) See tf.sparse.segment_sum for usage exa...
tensorflow.raw_ops.sparsesegmentmean
tf.raw_ops.SparseSegmentMeanGrad Computes gradients for SparseSegmentMean. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSegmentMeanGrad tf.raw_ops.SparseSegmentMeanGrad( grad, indices, segment_ids, output_dim0, name=None ) Returns tensor "output" w...
tensorflow.raw_ops.sparsesegmentmeangrad
tf.raw_ops.SparseSegmentMeanWithNumSegments Computes the mean along sparse segments of a tensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSegmentMeanWithNumSegments tf.raw_ops.SparseSegmentMeanWithNumSegments( data, indices, segment_ids, num_seg...
tensorflow.raw_ops.sparsesegmentmeanwithnumsegments
tf.raw_ops.SparseSegmentSqrtN Computes the sum along sparse segments of a tensor divided by the sqrt of N. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSegmentSqrtN tf.raw_ops.SparseSegmentSqrtN( data, indices, segment_ids, name=None ) N is the siz...
tensorflow.raw_ops.sparsesegmentsqrtn
tf.raw_ops.SparseSegmentSqrtNGrad Computes gradients for SparseSegmentSqrtN. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSegmentSqrtNGrad tf.raw_ops.SparseSegmentSqrtNGrad( grad, indices, segment_ids, output_dim0, name=None ) Returns tensor "outpu...
tensorflow.raw_ops.sparsesegmentsqrtngrad
tf.raw_ops.SparseSegmentSqrtNWithNumSegments Computes the sum along sparse segments of a tensor divided by the sqrt of N. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSegmentSqrtNWithNumSegments tf.raw_ops.SparseSegmentSqrtNWithNumSegments( data, in...
tensorflow.raw_ops.sparsesegmentsqrtnwithnumsegments
tf.raw_ops.SparseSegmentSum Computes the sum along sparse segments of a tensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSegmentSum tf.raw_ops.SparseSegmentSum( data, indices, segment_ids, name=None ) Read the section on segmentation for an exp...
tensorflow.raw_ops.sparsesegmentsum
tf.raw_ops.SparseSegmentSumWithNumSegments Computes the sum along sparse segments of a tensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSegmentSumWithNumSegments tf.raw_ops.SparseSegmentSumWithNumSegments( data, indices, segment_ids, num_segment...
tensorflow.raw_ops.sparsesegmentsumwithnumsegments
tf.raw_ops.SparseSlice Slice a SparseTensor based on the start and size. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSlice tf.raw_ops.SparseSlice( indices, values, shape, start, size, name=None ) For example, if the input is input_tensor = shape =...
tensorflow.raw_ops.sparseslice
tf.raw_ops.SparseSliceGrad The gradient operator for the SparseSlice op. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSliceGrad tf.raw_ops.SparseSliceGrad( backprop_val_grad, input_indices, input_start, output_indices, name=None ) This op takes in ...
tensorflow.raw_ops.sparseslicegrad
tf.raw_ops.SparseSoftmax Applies softmax to a batched N-D SparseTensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSoftmax tf.raw_ops.SparseSoftmax( sp_indices, sp_values, sp_shape, name=None ) The inputs represent an N-D SparseTensor with logica...
tensorflow.raw_ops.sparsesoftmax
tf.raw_ops.SparseSoftmaxCrossEntropyWithLogits Computes softmax cross entropy cost and gradients to backpropagate. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSoftmaxCrossEntropyWithLogits tf.raw_ops.SparseSoftmaxCrossEntropyWithLogits( features, l...
tensorflow.raw_ops.sparsesoftmaxcrossentropywithlogits
tf.raw_ops.SparseSparseMaximum Returns the element-wise max of two SparseTensors. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSparseMaximum tf.raw_ops.SparseSparseMaximum( a_indices, a_values, a_shape, b_indices, b_values, b_shape, name=None ) Ass...
tensorflow.raw_ops.sparsesparsemaximum
tf.raw_ops.SparseSparseMinimum Returns the element-wise min of two SparseTensors. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSparseMinimum tf.raw_ops.SparseSparseMinimum( a_indices, a_values, a_shape, b_indices, b_values, b_shape, name=None ) Ass...
tensorflow.raw_ops.sparsesparseminimum
tf.raw_ops.SparseSplit Split a SparseTensor into num_split tensors along one dimension. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseSplit tf.raw_ops.SparseSplit( split_dim, indices, values, shape, num_split, name=None ) If the shape[split_dim] is ...
tensorflow.raw_ops.sparsesplit
tf.raw_ops.SparseTensorDenseAdd Adds up a SparseTensor and a dense Tensor, producing a dense Tensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseTensorDenseAdd tf.raw_ops.SparseTensorDenseAdd( a_indices, a_values, a_shape, b, name=None ) This Op d...
tensorflow.raw_ops.sparsetensordenseadd
tf.raw_ops.SparseTensorDenseMatMul Multiply SparseTensor (of rank 2) "A" by dense matrix "B". View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseTensorDenseMatMul tf.raw_ops.SparseTensorDenseMatMul( a_indices, a_values, a_shape, b, adjoint_a=False, adjoin...
tensorflow.raw_ops.sparsetensordensematmul
tf.raw_ops.SparseTensorSliceDataset Creates a dataset that splits a SparseTensor into elements row-wise. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseTensorSliceDataset tf.raw_ops.SparseTensorSliceDataset( indices, values, dense_shape, name=None ) ...
tensorflow.raw_ops.sparsetensorslicedataset
tf.raw_ops.SparseTensorToCSRSparseMatrix Converts a SparseTensor to a (possibly batched) CSRSparseMatrix. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseTensorToCSRSparseMatrix tf.raw_ops.SparseTensorToCSRSparseMatrix( indices, values, dense_shape, na...
tensorflow.raw_ops.sparsetensortocsrsparsematrix
tf.raw_ops.SparseToDense Converts a sparse representation into a dense tensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseToDense tf.raw_ops.SparseToDense( sparse_indices, output_shape, sparse_values, default_value, validate_indices=True, name...
tensorflow.raw_ops.sparsetodense
tf.raw_ops.SparseToSparseSetOperation Applies set operation along last dimension of 2 SparseTensor inputs. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SparseToSparseSetOperation tf.raw_ops.SparseToSparseSetOperation( set1_indices, set1_values, set1_shape...
tensorflow.raw_ops.sparsetosparsesetoperation
tf.raw_ops.Spence View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.Spence tf.raw_ops.Spence( x, name=None ) Args x A Tensor. Must be one of the following types: bfloat16, half, float32, float64. name A name for the operation (optional). ...
tensorflow.raw_ops.spence
tf.raw_ops.Split Splits a tensor into num_split tensors along one dimension. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.Split tf.raw_ops.Split( axis, value, num_split, name=None ) Args axis A Tensor of type int32. 0-D. The dimension along whic...
tensorflow.raw_ops.split
tf.raw_ops.SplitV Splits a tensor into num_split tensors along one dimension. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SplitV tf.raw_ops.SplitV( value, size_splits, axis, num_split, name=None ) Args value A Tensor. The tensor to split. s...
tensorflow.raw_ops.splitv
tf.raw_ops.SqlDataset Creates a dataset that executes a SQL query and emits rows of the result set. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SqlDataset tf.raw_ops.SqlDataset( driver_name, data_source_name, query, output_types, output_shapes, name=None...
tensorflow.raw_ops.sqldataset
tf.raw_ops.Sqrt Computes square root of x element-wise. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.Sqrt tf.raw_ops.Sqrt( x, name=None ) I.e., \(y = \sqrt{x} = x^{1/2}\). Args x A Tensor. Must be one of the following types: bfloat16, half, fl...
tensorflow.raw_ops.sqrt
tf.raw_ops.SqrtGrad Computes the gradient for the sqrt of x wrt its input. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SqrtGrad tf.raw_ops.SqrtGrad( y, dy, name=None ) Specifically, grad = dy * 0.5 / y, where y = sqrt(x), and dy is the corresponding inp...
tensorflow.raw_ops.sqrtgrad
tf.raw_ops.Square Computes square of x element-wise. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.Square tf.raw_ops.Square( x, name=None ) I.e., \(y = x * x = x^2\). tf.math.square([-2., 0., 3.]) <tf.Tensor: shape=(3,), dtype=float32, numpy=array([4.,...
tensorflow.raw_ops.square
tf.raw_ops.SquaredDifference Returns conj(x - y)(x - y) element-wise. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.SquaredDifference tf.raw_ops.SquaredDifference( x, y, name=None ) Note: math.squared_difference supports broadcasting. More about broadcas...
tensorflow.raw_ops.squareddifference
tf.raw_ops.Squeeze Removes dimensions of size 1 from the shape of a tensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.Squeeze tf.raw_ops.Squeeze( input, axis=[], name=None ) Given a tensor input, this operation returns a tensor of the same type with a...
tensorflow.raw_ops.squeeze
tf.raw_ops.Stack Deprecated, use StackV2. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.Stack tf.raw_ops.Stack( elem_type, stack_name='', name=None ) Args elem_type A tf.DType. stack_name An optional string. Defaults to "". name A nam...
tensorflow.raw_ops.stack
tf.raw_ops.StackClose Deprecated, use StackCloseV2. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StackClose tf.raw_ops.StackClose( handle, name=None ) Args handle A Tensor of type mutable string. name A name for the operation (optional). ...
tensorflow.raw_ops.stackclose
tf.raw_ops.StackCloseV2 Delete the stack from its resource container. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StackCloseV2 tf.raw_ops.StackCloseV2( handle, name=None ) Args handle A Tensor of type resource. The handle to a stack. name ...
tensorflow.raw_ops.stackclosev2
tf.raw_ops.StackPop Deprecated, use StackPopV2. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StackPop tf.raw_ops.StackPop( handle, elem_type, name=None ) Args handle A Tensor of type mutable string. elem_type A tf.DType. name A name ...
tensorflow.raw_ops.stackpop
tf.raw_ops.StackPopV2 Pop the element at the top of the stack. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StackPopV2 tf.raw_ops.StackPopV2( handle, elem_type, name=None ) Args handle A Tensor of type resource. The handle to a stack. elem_t...
tensorflow.raw_ops.stackpopv2
tf.raw_ops.StackPush Deprecated, use StackPushV2. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StackPush tf.raw_ops.StackPush( handle, elem, swap_memory=False, name=None ) Args handle A Tensor of type mutable string. elem A Tensor. swa...
tensorflow.raw_ops.stackpush
tf.raw_ops.StackPushV2 Push an element onto the stack. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StackPushV2 tf.raw_ops.StackPushV2( handle, elem, swap_memory=False, name=None ) Args handle A Tensor of type resource. The handle to a stack. ...
tensorflow.raw_ops.stackpushv2
tf.raw_ops.StackV2 A stack that produces elements in first-in last-out order. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StackV2 tf.raw_ops.StackV2( max_size, elem_type, stack_name='', name=None ) Args max_size A Tensor of type int32. The maxi...
tensorflow.raw_ops.stackv2
tf.raw_ops.Stage Stage values similar to a lightweight Enqueue. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.Stage tf.raw_ops.Stage( values, capacity=0, memory_limit=0, container='', shared_name='', name=None ) The basic functionality of this Op is s...
tensorflow.raw_ops.stage
tf.raw_ops.StageClear Op removes all elements in the underlying container. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StageClear tf.raw_ops.StageClear( dtypes, capacity=0, memory_limit=0, container='', shared_name='', name=None ) Args dtypes...
tensorflow.raw_ops.stageclear
tf.raw_ops.StagePeek Op peeks at the values at the specified index. If the View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StagePeek tf.raw_ops.StagePeek( index, dtypes, capacity=0, memory_limit=0, container='', shared_name='', name=None ) underlying co...
tensorflow.raw_ops.stagepeek
tf.raw_ops.StageSize Op returns the number of elements in the underlying container. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StageSize tf.raw_ops.StageSize( dtypes, capacity=0, memory_limit=0, container='', shared_name='', name=None ) Args ...
tensorflow.raw_ops.stagesize
tf.raw_ops.StatefulPartitionedCall returns f(inputs), where f's body is placed and partitioned. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatefulPartitionedCall tf.raw_ops.StatefulPartitionedCall( args, Tout, f, config='', config_proto='', executo...
tensorflow.raw_ops.statefulpartitionedcall
tf.raw_ops.StatefulRandomBinomial View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatefulRandomBinomial tf.raw_ops.StatefulRandomBinomial( resource, algorithm, shape, counts, probs, dtype=tf.dtypes.int64, name=None ) Args resource A Tensor of type...
tensorflow.raw_ops.statefulrandombinomial
tf.raw_ops.StatefulStandardNormal Outputs random values from a normal distribution. This op is deprecated in favor of op 'StatefulStandardNormalV2' View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatefulStandardNormal tf.raw_ops.StatefulStandardNormal( reso...
tensorflow.raw_ops.statefulstandardnormal
tf.raw_ops.StatefulStandardNormalV2 Outputs random values from a normal distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatefulStandardNormalV2 tf.raw_ops.StatefulStandardNormalV2( resource, algorithm, shape, dtype=tf.dtypes.float32, name=None...
tensorflow.raw_ops.statefulstandardnormalv2
tf.raw_ops.StatefulTruncatedNormal Outputs random values from a truncated normal distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatefulTruncatedNormal tf.raw_ops.StatefulTruncatedNormal( resource, algorithm, shape, dtype=tf.dtypes.float32, na...
tensorflow.raw_ops.statefultruncatednormal
tf.raw_ops.StatefulUniform Outputs random values from a uniform distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatefulUniform tf.raw_ops.StatefulUniform( resource, algorithm, shape, dtype=tf.dtypes.float32, name=None ) The generated values f...
tensorflow.raw_ops.statefuluniform
tf.raw_ops.StatefulUniformFullInt Outputs random integers from a uniform distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatefulUniformFullInt tf.raw_ops.StatefulUniformFullInt( resource, algorithm, shape, dtype=tf.dtypes.uint64, name=None ) ...
tensorflow.raw_ops.statefuluniformfullint
tf.raw_ops.StatefulUniformInt Outputs random integers from a uniform distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatefulUniformInt tf.raw_ops.StatefulUniformInt( resource, algorithm, shape, minval, maxval, name=None ) The generated values...
tensorflow.raw_ops.statefuluniformint
tf.raw_ops.StatelessCase An n-way switch statement which calls a single branch function. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessCase tf.raw_ops.StatelessCase( branch_index, input, Tout, branches, output_shapes=[], name=None ) An n-way swit...
tensorflow.raw_ops.statelesscase
tf.raw_ops.StatelessIf output = cond ? then_branch(input) : else_branch(input) View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessIf tf.raw_ops.StatelessIf( cond, input, Tout, then_branch, else_branch, output_shapes=[], name=None ) Args cond ...
tensorflow.raw_ops.statelessif
tf.raw_ops.StatelessMultinomial Draws samples from a multinomial distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessMultinomial tf.raw_ops.StatelessMultinomial( logits, num_samples, seed, output_dtype=tf.dtypes.int64, name=None ) Ar...
tensorflow.raw_ops.statelessmultinomial
tf.raw_ops.StatelessParameterizedTruncatedNormal View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessParameterizedTruncatedNormal tf.raw_ops.StatelessParameterizedTruncatedNormal( shape, seed, means, stddevs, minvals, maxvals, name=None ) Args s...
tensorflow.raw_ops.statelessparameterizedtruncatednormal
tf.raw_ops.StatelessRandomBinomial Outputs deterministic pseudorandom random numbers from a binomial distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomBinomial tf.raw_ops.StatelessRandomBinomial( shape, seed, counts, probs, dtype=t...
tensorflow.raw_ops.statelessrandombinomial
tf.raw_ops.StatelessRandomGammaV2 Outputs deterministic pseudorandom random numbers from a gamma distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomGammaV2 tf.raw_ops.StatelessRandomGammaV2( shape, seed, alpha, name=None ) Outputs ...
tensorflow.raw_ops.statelessrandomgammav2
tf.raw_ops.StatelessRandomGetKeyCounterAlg Picks the best algorithm based on device, and scrambles seed into key and counter. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomGetKeyCounterAlg tf.raw_ops.StatelessRandomGetKeyCounterAlg( seed, na...
tensorflow.raw_ops.statelessrandomgetkeycounteralg
tf.raw_ops.StatelessRandomNormal Outputs deterministic pseudorandom values from a normal distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomNormal tf.raw_ops.StatelessRandomNormal( shape, seed, dtype=tf.dtypes.float32, name=None ) ...
tensorflow.raw_ops.statelessrandomnormal
tf.raw_ops.StatelessRandomNormalV2 Outputs deterministic pseudorandom values from a normal distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomNormalV2 tf.raw_ops.StatelessRandomNormalV2( shape, key, counter, alg, dtype=tf.dtypes.flo...
tensorflow.raw_ops.statelessrandomnormalv2
tf.raw_ops.StatelessRandomPoisson Outputs deterministic pseudorandom random numbers from a Poisson distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomPoisson tf.raw_ops.StatelessRandomPoisson( shape, seed, lam, dtype, name=None ) O...
tensorflow.raw_ops.statelessrandompoisson
tf.raw_ops.StatelessRandomUniform Outputs deterministic pseudorandom random values from a uniform distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomUniform tf.raw_ops.StatelessRandomUniform( shape, seed, dtype=tf.dtypes.float32, na...
tensorflow.raw_ops.statelessrandomuniform
tf.raw_ops.StatelessRandomUniformFullInt Outputs deterministic pseudorandom random integers from a uniform distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomUniformFullInt tf.raw_ops.StatelessRandomUniformFullInt( shape, seed, dtyp...
tensorflow.raw_ops.statelessrandomuniformfullint
tf.raw_ops.StatelessRandomUniformFullIntV2 Outputs deterministic pseudorandom random integers from a uniform distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomUniformFullIntV2 tf.raw_ops.StatelessRandomUniformFullIntV2( shape, key,...
tensorflow.raw_ops.statelessrandomuniformfullintv2
tf.raw_ops.StatelessRandomUniformInt Outputs deterministic pseudorandom random integers from a uniform distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomUniformInt tf.raw_ops.StatelessRandomUniformInt( shape, seed, minval, maxval, ...
tensorflow.raw_ops.statelessrandomuniformint
tf.raw_ops.StatelessRandomUniformIntV2 Outputs deterministic pseudorandom random integers from a uniform distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomUniformIntV2 tf.raw_ops.StatelessRandomUniformIntV2( shape, key, counter, al...
tensorflow.raw_ops.statelessrandomuniformintv2
tf.raw_ops.StatelessRandomUniformV2 Outputs deterministic pseudorandom random values from a uniform distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessRandomUniformV2 tf.raw_ops.StatelessRandomUniformV2( shape, key, counter, alg, dtype=tf...
tensorflow.raw_ops.statelessrandomuniformv2
tf.raw_ops.StatelessSampleDistortedBoundingBox Generate a randomly distorted bounding box for an image deterministically. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessSampleDistortedBoundingBox tf.raw_ops.StatelessSampleDistortedBoundingBox( imag...
tensorflow.raw_ops.statelesssampledistortedboundingbox
tf.raw_ops.StatelessTruncatedNormal Outputs deterministic pseudorandom values from a truncated normal distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessTruncatedNormal tf.raw_ops.StatelessTruncatedNormal( shape, seed, dtype=tf.dtypes.flo...
tensorflow.raw_ops.statelesstruncatednormal
tf.raw_ops.StatelessTruncatedNormalV2 Outputs deterministic pseudorandom values from a truncated normal distribution. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessTruncatedNormalV2 tf.raw_ops.StatelessTruncatedNormalV2( shape, key, counter, alg, ...
tensorflow.raw_ops.statelesstruncatednormalv2
tf.raw_ops.StatelessWhile output = input; While (Cond(output)) { output = Body(output) } View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatelessWhile tf.raw_ops.StatelessWhile( input, cond, body, output_shapes=[], parallel_iterations=10, name=None ) ...
tensorflow.raw_ops.statelesswhile
tf.raw_ops.StaticRegexFullMatch Check if the input matches the regex pattern. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StaticRegexFullMatch tf.raw_ops.StaticRegexFullMatch( input, pattern, name=None ) The input is a string tensor of any shape. The pa...
tensorflow.raw_ops.staticregexfullmatch
tf.raw_ops.StaticRegexReplace Replaces the match of pattern in input with rewrite. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StaticRegexReplace tf.raw_ops.StaticRegexReplace( input, pattern, rewrite, replace_global=True, name=None ) It follows the re2...
tensorflow.raw_ops.staticregexreplace
tf.raw_ops.StatsAggregatorHandle Creates a statistics manager resource. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatsAggregatorHandle tf.raw_ops.StatsAggregatorHandle( container='', shared_name='', name=None ) Args container An optional str...
tensorflow.raw_ops.statsaggregatorhandle
tf.raw_ops.StatsAggregatorHandleV2 View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatsAggregatorHandleV2 tf.raw_ops.StatsAggregatorHandleV2( container='', shared_name='', name=None ) Args container An optional string. Defaults to "". shared_n...
tensorflow.raw_ops.statsaggregatorhandlev2
tf.raw_ops.StatsAggregatorSetSummaryWriter Set a summary_writer_interface to record statistics using given stats_aggregator. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatsAggregatorSetSummaryWriter tf.raw_ops.StatsAggregatorSetSummaryWriter( stats_agg...
tensorflow.raw_ops.statsaggregatorsetsummarywriter
tf.raw_ops.StatsAggregatorSummary Produces a summary of any statistics recorded by the given statistics manager. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StatsAggregatorSummary tf.raw_ops.StatsAggregatorSummary( iterator, name=None ) Args iter...
tensorflow.raw_ops.statsaggregatorsummary
tf.raw_ops.StopGradient Stops gradient computation. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StopGradient tf.raw_ops.StopGradient( input, name=None ) When executed in a graph, this op outputs its input tensor as-is. When building ops to compute gradi...
tensorflow.raw_ops.stopgradient
tf.raw_ops.StridedSlice Return a strided slice from input. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StridedSlice tf.raw_ops.StridedSlice( input, begin, end, strides, begin_mask=0, end_mask=0, ellipsis_mask=0, new_axis_mask=0, shrink_axis_mask=0, n...
tensorflow.raw_ops.stridedslice
tf.raw_ops.StridedSliceAssign Assign value to the sliced l-value reference of ref. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StridedSliceAssign tf.raw_ops.StridedSliceAssign( ref, begin, end, strides, value, begin_mask=0, end_mask=0, ellipsis_mask=0, ...
tensorflow.raw_ops.stridedsliceassign
tf.raw_ops.StridedSliceGrad Returns the gradient of StridedSlice. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StridedSliceGrad tf.raw_ops.StridedSliceGrad( shape, begin, end, strides, dy, begin_mask=0, end_mask=0, ellipsis_mask=0, new_axis_mask=0, sh...
tensorflow.raw_ops.stridedslicegrad
tf.raw_ops.StringFormat Formats a string template using a list of tensors. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringFormat tf.raw_ops.StringFormat( inputs, template='%s', placeholder='%s', summarize=3, name=None ) Formats a string template ...
tensorflow.raw_ops.stringformat
tf.raw_ops.StringJoin Joins the strings in the given list of string tensors into one tensor; View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringJoin tf.raw_ops.StringJoin( inputs, separator='', name=None ) with the given separator (default is an empty se...
tensorflow.raw_ops.stringjoin
tf.raw_ops.StringLength String lengths of input. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringLength tf.raw_ops.StringLength( input, unit='BYTE', name=None ) Computes the length of each string given in the input tensor. strings = tf.constant(['Hel...
tensorflow.raw_ops.stringlength
tf.raw_ops.StringLower Converts all uppercase characters into their respective lowercase replacements. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringLower tf.raw_ops.StringLower( input, encoding='', name=None ) Example: tf.strings.lower("CamelCase ...
tensorflow.raw_ops.stringlower
tf.raw_ops.StringNGrams Creates ngrams from ragged string data. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringNGrams tf.raw_ops.StringNGrams( data, data_splits, separator, ngram_widths, left_pad, right_pad, pad_width, preserve_short_sequences, na...
tensorflow.raw_ops.stringngrams
tf.raw_ops.StringSplit Split elements of input based on delimiter into a SparseTensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringSplit tf.raw_ops.StringSplit( input, delimiter, skip_empty=True, name=None ) Let N be the size of source (typically ...
tensorflow.raw_ops.stringsplit
tf.raw_ops.StringSplitV2 Split elements of source based on sep into a SparseTensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringSplitV2 tf.raw_ops.StringSplitV2( input, sep, maxsplit=-1, name=None ) Let N be the size of source (typically N will be...
tensorflow.raw_ops.stringsplitv2
tf.raw_ops.StringStrip Strip leading and trailing whitespaces from the Tensor. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringStrip tf.raw_ops.StringStrip( input, name=None ) Args input A Tensor of type string. A string Tensor of any shape. ...
tensorflow.raw_ops.stringstrip
tf.raw_ops.StringToHashBucket Converts each string in the input Tensor to its hash mod by a number of buckets. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringToHashBucket tf.raw_ops.StringToHashBucket( string_tensor, num_buckets, name=None ) The hash...
tensorflow.raw_ops.stringtohashbucket
tf.raw_ops.StringToHashBucketFast Converts each string in the input Tensor to its hash mod by a number of buckets. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringToHashBucketFast tf.raw_ops.StringToHashBucketFast( input, num_buckets, name=None ) The ...
tensorflow.raw_ops.stringtohashbucketfast
tf.raw_ops.StringToHashBucketStrong Converts each string in the input Tensor to its hash mod by a number of buckets. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringToHashBucketStrong tf.raw_ops.StringToHashBucketStrong( input, num_buckets, key, name=N...
tensorflow.raw_ops.stringtohashbucketstrong
tf.raw_ops.StringToNumber Converts each string in the input Tensor to the specified numeric type. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringToNumber tf.raw_ops.StringToNumber( string_tensor, out_type=tf.dtypes.float32, name=None ) (Note that int...
tensorflow.raw_ops.stringtonumber
tf.raw_ops.StringUpper Converts all lowercase characters into their respective uppercase replacements. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.StringUpper tf.raw_ops.StringUpper( input, encoding='', name=None ) Example: tf.strings.upper("CamelCase ...
tensorflow.raw_ops.stringupper
tf.raw_ops.Sub Returns x - y element-wise. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.Sub tf.raw_ops.Sub( x, y, name=None ) Note: Subtract supports broadcasting. More about broadcasting here Args x A Tensor. Must be one of the following type...
tensorflow.raw_ops.sub
tf.raw_ops.Substr Return substrings from Tensor of strings. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.raw_ops.Substr tf.raw_ops.Substr( input, pos, len, unit='BYTE', name=None ) For each string in the input Tensor, creates a substring starting at index pos wi...
tensorflow.raw_ops.substr