doc_content stringlengths 1 386k | doc_id stringlengths 5 188 |
|---|---|
tf.raw_ops.MapStage Stage (key, values) in the underlying container which behaves like a hashtable. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MapStage
tf.raw_ops.MapStage(
key, indices, values, dtypes, capacity=0, memory_limit=0,
container='', shar... | tensorflow.raw_ops.mapstage |
tf.raw_ops.MapUnstage Op removes and returns the values associated with the key View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MapUnstage
tf.raw_ops.MapUnstage(
key, indices, dtypes, capacity=0, memory_limit=0, container='',
shared_name='', name=None
)
... | tensorflow.raw_ops.mapunstage |
tf.raw_ops.MapUnstageNoKey Op removes and returns a random (key, value) View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MapUnstageNoKey
tf.raw_ops.MapUnstageNoKey(
indices, dtypes, capacity=0, memory_limit=0, container='',
shared_name='', name=None
)
fr... | tensorflow.raw_ops.mapunstagenokey |
tf.raw_ops.MatchingFiles Returns the set of files matching one or more glob patterns. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatchingFiles
tf.raw_ops.MatchingFiles(
pattern, name=None
)
Note that this routine only supports wildcard characters in th... | tensorflow.raw_ops.matchingfiles |
tf.raw_ops.MatchingFilesDataset View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatchingFilesDataset
tf.raw_ops.MatchingFilesDataset(
patterns, name=None
)
Args
patterns A Tensor of type string.
name A name for the operation (optional).
... | tensorflow.raw_ops.matchingfilesdataset |
tf.raw_ops.MatMul Multiply the matrix "a" by the matrix "b". View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatMul
tf.raw_ops.MatMul(
a, b, transpose_a=False, transpose_b=False, name=None
)
The inputs must be two-dimensional matrices and the inner dimensio... | tensorflow.raw_ops.matmul |
tf.raw_ops.MatrixBandPart Copy a tensor setting everything outside a central band in each innermost matrix to zero. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixBandPart
tf.raw_ops.MatrixBandPart(
input, num_lower, num_upper, name=None
)
The band p... | tensorflow.raw_ops.matrixbandpart |
tf.raw_ops.MatrixDeterminant Computes the determinant of one or more square matrices. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixDeterminant
tf.raw_ops.MatrixDeterminant(
input, name=None
)
The input is a tensor of shape [..., M, M] whose inner-m... | tensorflow.raw_ops.matrixdeterminant |
tf.raw_ops.MatrixDiag Returns a batched diagonal tensor with a given batched diagonal values. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixDiag
tf.raw_ops.MatrixDiag(
diagonal, name=None
)
Given a diagonal, this operation returns a tensor with the ... | tensorflow.raw_ops.matrixdiag |
tf.raw_ops.MatrixDiagPart Returns the batched diagonal part of a batched tensor. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixDiagPart
tf.raw_ops.MatrixDiagPart(
input, name=None
)
This operation returns a tensor with the diagonal part of the batch... | tensorflow.raw_ops.matrixdiagpart |
tf.raw_ops.MatrixDiagPartV2 Returns the batched diagonal part of a batched tensor. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixDiagPartV2
tf.raw_ops.MatrixDiagPartV2(
input, k, padding_value, name=None
)
Returns a tensor with the k[0]-th to k[1]-t... | tensorflow.raw_ops.matrixdiagpartv2 |
tf.raw_ops.MatrixDiagPartV3 Returns the batched diagonal part of a batched tensor. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixDiagPartV3
tf.raw_ops.MatrixDiagPartV3(
input, k, padding_value, align='RIGHT_LEFT', name=None
)
Returns a tensor with t... | tensorflow.raw_ops.matrixdiagpartv3 |
tf.raw_ops.MatrixDiagV2 Returns a batched diagonal tensor with given batched diagonal values. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixDiagV2
tf.raw_ops.MatrixDiagV2(
diagonal, k, num_rows, num_cols, padding_value, name=None
)
Returns a tensor ... | tensorflow.raw_ops.matrixdiagv2 |
tf.raw_ops.MatrixDiagV3 Returns a batched diagonal tensor with given batched diagonal values. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixDiagV3
tf.raw_ops.MatrixDiagV3(
diagonal, k, num_rows, num_cols, padding_value, align='RIGHT_LEFT',
name=N... | tensorflow.raw_ops.matrixdiagv3 |
tf.raw_ops.MatrixExponential Deprecated, use python implementation tf.linalg.matrix_exponential. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixExponential
tf.raw_ops.MatrixExponential(
input, name=None
)
Args
input A Tensor. Must be one of ... | tensorflow.raw_ops.matrixexponential |
tf.raw_ops.MatrixInverse Computes the inverse of one or more square invertible matrices or their adjoints (conjugate transposes). View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixInverse
tf.raw_ops.MatrixInverse(
input, adjoint=False, name=None
)
The i... | tensorflow.raw_ops.matrixinverse |
tf.raw_ops.MatrixLogarithm Computes the matrix logarithm of one or more square matrices: View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixLogarithm
tf.raw_ops.MatrixLogarithm(
input, name=None
)
\(log(exp(A)) = A\) This op is only defined for complex... | tensorflow.raw_ops.matrixlogarithm |
tf.raw_ops.MatrixSetDiag Returns a batched matrix tensor with new batched diagonal values. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixSetDiag
tf.raw_ops.MatrixSetDiag(
input, diagonal, name=None
)
Given input and diagonal, this operation returns ... | tensorflow.raw_ops.matrixsetdiag |
tf.raw_ops.MatrixSetDiagV2 Returns a batched matrix tensor with new batched diagonal values. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixSetDiagV2
tf.raw_ops.MatrixSetDiagV2(
input, diagonal, k, name=None
)
Given input and diagonal, this operation... | tensorflow.raw_ops.matrixsetdiagv2 |
tf.raw_ops.MatrixSetDiagV3 Returns a batched matrix tensor with new batched diagonal values. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixSetDiagV3
tf.raw_ops.MatrixSetDiagV3(
input, diagonal, k, align='RIGHT_LEFT', name=None
)
Given input and diag... | tensorflow.raw_ops.matrixsetdiagv3 |
tf.raw_ops.MatrixSolve Solves systems of linear equations. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixSolve
tf.raw_ops.MatrixSolve(
matrix, rhs, adjoint=False, name=None
)
Matrix is a tensor of shape [..., M, M] whose inner-most 2 dimensions form... | tensorflow.raw_ops.matrixsolve |
tf.raw_ops.MatrixSolveLs Solves one or more linear least-squares problems. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixSolveLs
tf.raw_ops.MatrixSolveLs(
matrix, rhs, l2_regularizer, fast=True, name=None
)
matrix is a tensor of shape [..., M, N] ... | tensorflow.raw_ops.matrixsolvels |
tf.raw_ops.MatrixSquareRoot Computes the matrix square root of one or more square matrices: View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixSquareRoot
tf.raw_ops.MatrixSquareRoot(
input, name=None
)
matmul(sqrtm(A), sqrtm(A)) = A The input matrix shou... | tensorflow.raw_ops.matrixsquareroot |
tf.raw_ops.MatrixTriangularSolve Solves systems of linear equations with upper or lower triangular matrices by backsubstitution. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MatrixTriangularSolve
tf.raw_ops.MatrixTriangularSolve(
matrix, rhs, lower=True, ... | tensorflow.raw_ops.matrixtriangularsolve |
tf.raw_ops.Max Computes the maximum of elements across dimensions of a tensor. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Max
tf.raw_ops.Max(
input, axis, keep_dims=False, name=None
)
Reduces input along the dimensions given in axis. Unless keep_dims i... | tensorflow.raw_ops.max |
tf.raw_ops.Maximum Returns the max of x and y (i.e. x > y ? x : y) element-wise. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Maximum
tf.raw_ops.Maximum(
x, y, name=None
)
Example:
x = tf.constant([0., 0., 0., 0.])
y = tf.constant([-2., 0., 2., 5.])
tf.... | tensorflow.raw_ops.maximum |
tf.raw_ops.MaxIntraOpParallelismDataset Creates a dataset that overrides the maximum intra-op parallelism. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxIntraOpParallelismDataset
tf.raw_ops.MaxIntraOpParallelismDataset(
input_dataset, max_intra_op_paral... | tensorflow.raw_ops.maxintraopparallelismdataset |
tf.raw_ops.MaxPool Performs max pooling on the input. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPool
tf.raw_ops.MaxPool(
input, ksize, strides, padding, explicit_paddings=[],
data_format='NHWC', name=None
)
Args
input A Tensor. Must be... | tensorflow.raw_ops.maxpool |
tf.raw_ops.MaxPool3D Performs 3D max pooling on the input. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPool3D
tf.raw_ops.MaxPool3D(
input, ksize, strides, padding, data_format='NDHWC', name=None
)
Args
input A Tensor. Must be one of the foll... | tensorflow.raw_ops.maxpool3d |
tf.raw_ops.MaxPool3DGrad Computes gradients of 3D max pooling function. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPool3DGrad
tf.raw_ops.MaxPool3DGrad(
orig_input, orig_output, grad, ksize, strides, padding,
data_format='NDHWC', name=None
)
... | tensorflow.raw_ops.maxpool3dgrad |
tf.raw_ops.MaxPool3DGradGrad Computes second-order gradients of the maxpooling function. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPool3DGradGrad
tf.raw_ops.MaxPool3DGradGrad(
orig_input, orig_output, grad, ksize, strides, padding,
data_format='... | tensorflow.raw_ops.maxpool3dgradgrad |
tf.raw_ops.MaxPoolGrad Computes gradients of the maxpooling function. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPoolGrad
tf.raw_ops.MaxPoolGrad(
orig_input, orig_output, grad, ksize, strides, padding, explicit_paddings=[],
data_format='NHWC', na... | tensorflow.raw_ops.maxpoolgrad |
tf.raw_ops.MaxPoolGradGrad Computes second-order gradients of the maxpooling function. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPoolGradGrad
tf.raw_ops.MaxPoolGradGrad(
orig_input, orig_output, grad, ksize, strides, padding,
data_format='NHWC',... | tensorflow.raw_ops.maxpoolgradgrad |
tf.raw_ops.MaxPoolGradGradV2 Computes second-order gradients of the maxpooling function. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPoolGradGradV2
tf.raw_ops.MaxPoolGradGradV2(
orig_input, orig_output, grad, ksize, strides, padding,
data_format='... | tensorflow.raw_ops.maxpoolgradgradv2 |
tf.raw_ops.MaxPoolGradGradWithArgmax Computes second-order gradients of the maxpooling function. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPoolGradGradWithArgmax
tf.raw_ops.MaxPoolGradGradWithArgmax(
input, grad, argmax, ksize, strides, padding, inc... | tensorflow.raw_ops.maxpoolgradgradwithargmax |
tf.raw_ops.MaxPoolGradV2 Computes gradients of the maxpooling function. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPoolGradV2
tf.raw_ops.MaxPoolGradV2(
orig_input, orig_output, grad, ksize, strides, padding,
data_format='NHWC', name=None
)
... | tensorflow.raw_ops.maxpoolgradv2 |
tf.raw_ops.MaxPoolGradWithArgmax Computes gradients of the maxpooling function. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPoolGradWithArgmax
tf.raw_ops.MaxPoolGradWithArgmax(
input, grad, argmax, ksize, strides, padding, include_batch_in_index=False... | tensorflow.raw_ops.maxpoolgradwithargmax |
tf.raw_ops.MaxPoolV2 Performs max pooling on the input. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPoolV2
tf.raw_ops.MaxPoolV2(
input, ksize, strides, padding, data_format='NHWC', name=None
)
Args
input A Tensor. Must be one of the followin... | tensorflow.raw_ops.maxpoolv2 |
tf.raw_ops.MaxPoolWithArgmax Performs max pooling on the input and outputs both max values and indices. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MaxPoolWithArgmax
tf.raw_ops.MaxPoolWithArgmax(
input, ksize, strides, padding, Targmax=tf.dtypes.int64,
... | tensorflow.raw_ops.maxpoolwithargmax |
tf.raw_ops.Mean Computes the mean of elements across dimensions of a tensor. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Mean
tf.raw_ops.Mean(
input, axis, keep_dims=False, name=None
)
Reduces input along the dimensions given in axis. Unless keep_dims i... | tensorflow.raw_ops.mean |
tf.raw_ops.Merge Forwards the value of an available tensor from inputs to output. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Merge
tf.raw_ops.Merge(
inputs, name=None
)
Merge waits for at least one of the tensors in inputs to become available. It is us... | tensorflow.raw_ops.merge |
tf.raw_ops.MergeSummary Merges summaries. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MergeSummary
tf.raw_ops.MergeSummary(
inputs, name=None
)
This op creates a Summary protocol buffer that contains the union of all the values in the input summaries. W... | tensorflow.raw_ops.mergesummary |
tf.raw_ops.MergeV2Checkpoints V2 format specific: merges the metadata files of sharded checkpoints. The View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MergeV2Checkpoints
tf.raw_ops.MergeV2Checkpoints(
checkpoint_prefixes, destination_prefix, delete_old_dirs... | tensorflow.raw_ops.mergev2checkpoints |
tf.raw_ops.Mfcc Transforms a spectrogram into a form that's useful for speech recognition. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Mfcc
tf.raw_ops.Mfcc(
spectrogram, sample_rate, upper_frequency_limit=4000, lower_frequency_limit=20,
filterbank_ch... | tensorflow.raw_ops.mfcc |
tf.raw_ops.Min Computes the minimum of elements across dimensions of a tensor. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Min
tf.raw_ops.Min(
input, axis, keep_dims=False, name=None
)
Reduces input along the dimensions given in axis. Unless keep_dims i... | tensorflow.raw_ops.min |
tf.raw_ops.Minimum Returns the min of x and y (i.e. x < y ? x : y) element-wise. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Minimum
tf.raw_ops.Minimum(
x, y, name=None
)
Both inputs are number-type tensors (except complex). minimum expects that both te... | tensorflow.raw_ops.minimum |
tf.raw_ops.MirrorPad Pads a tensor with mirrored values. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MirrorPad
tf.raw_ops.MirrorPad(
input, paddings, mode, name=None
)
This operation pads a input with mirrored values according to the paddings you specif... | tensorflow.raw_ops.mirrorpad |
tf.raw_ops.MirrorPadGrad Gradient op for MirrorPad op. This op folds a mirror-padded tensor. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MirrorPadGrad
tf.raw_ops.MirrorPadGrad(
input, paddings, mode, name=None
)
This operation folds the padded areas of ... | tensorflow.raw_ops.mirrorpadgrad |
tf.raw_ops.Mod Returns element-wise remainder of division. This emulates C semantics in that View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Mod
tf.raw_ops.Mod(
x, y, name=None
)
the result here is consistent with a truncating divide. E.g. tf.truncatediv(x,... | tensorflow.raw_ops.mod |
tf.raw_ops.ModelDataset Identity transformation that models performance. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.ModelDataset
tf.raw_ops.ModelDataset(
input_dataset, output_types, output_shapes, algorithm=0, cpu_budget=0,
ram_budget=0, name=None
... | tensorflow.raw_ops.modeldataset |
tf.raw_ops.Mul Returns x * y element-wise. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Mul
tf.raw_ops.Mul(
x, y, name=None
)
Note: Multiply supports broadcasting. More about broadcasting here
Args
x A Tensor. Must be one of the following type... | tensorflow.raw_ops.mul |
tf.raw_ops.MulNoNan Returns x * y element-wise. Returns zero if y is zero, even if x if infinite or NaN. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MulNoNan
tf.raw_ops.MulNoNan(
x, y, name=None
)
Note: MulNoNan supports broadcasting. More about broadc... | tensorflow.raw_ops.mulnonan |
tf.raw_ops.MultiDeviceIterator Creates a MultiDeviceIterator resource. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MultiDeviceIterator
tf.raw_ops.MultiDeviceIterator(
devices, shared_name, container, output_types, output_shapes, name=None
)
Args
... | tensorflow.raw_ops.multideviceiterator |
tf.raw_ops.MultiDeviceIteratorFromStringHandle Generates a MultiDeviceIterator resource from its provided string handle. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MultiDeviceIteratorFromStringHandle
tf.raw_ops.MultiDeviceIteratorFromStringHandle(
strin... | tensorflow.raw_ops.multideviceiteratorfromstringhandle |
tf.raw_ops.MultiDeviceIteratorGetNextFromShard Gets next element for the provided shard number. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MultiDeviceIteratorGetNextFromShard
tf.raw_ops.MultiDeviceIteratorGetNextFromShard(
multi_device_iterator, shard_n... | tensorflow.raw_ops.multideviceiteratorgetnextfromshard |
tf.raw_ops.MultiDeviceIteratorInit Initializes the multi device iterator with the given dataset. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MultiDeviceIteratorInit
tf.raw_ops.MultiDeviceIteratorInit(
dataset, multi_device_iterator, max_buffer_size, name... | tensorflow.raw_ops.multideviceiteratorinit |
tf.raw_ops.MultiDeviceIteratorToStringHandle Produces a string handle for the given MultiDeviceIterator. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MultiDeviceIteratorToStringHandle
tf.raw_ops.MultiDeviceIteratorToStringHandle(
multi_device_iterator, na... | tensorflow.raw_ops.multideviceiteratortostringhandle |
tf.raw_ops.Multinomial Draws samples from a multinomial distribution. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Multinomial
tf.raw_ops.Multinomial(
logits, num_samples, seed=0, seed2=0, output_dtype=tf.dtypes.int64, name=None
)
Args
logits A ... | tensorflow.raw_ops.multinomial |
tf.raw_ops.MutableDenseHashTable Creates an empty hash table that uses tensors as the backing store. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MutableDenseHashTable
tf.raw_ops.MutableDenseHashTable(
empty_key, value_dtype, container='', shared_name='',... | tensorflow.raw_ops.mutabledensehashtable |
tf.raw_ops.MutableDenseHashTableV2 Creates an empty hash table that uses tensors as the backing store. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MutableDenseHashTableV2
tf.raw_ops.MutableDenseHashTableV2(
empty_key, deleted_key, value_dtype, container=... | tensorflow.raw_ops.mutabledensehashtablev2 |
tf.raw_ops.MutableHashTable Creates an empty hash table. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MutableHashTable
tf.raw_ops.MutableHashTable(
key_dtype, value_dtype, container='', shared_name='',
use_node_name_sharing=False, name=None
)
This op... | tensorflow.raw_ops.mutablehashtable |
tf.raw_ops.MutableHashTableOfTensors Creates an empty hash table. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MutableHashTableOfTensors
tf.raw_ops.MutableHashTableOfTensors(
key_dtype, value_dtype, container='', shared_name='',
use_node_name_sharing=... | tensorflow.raw_ops.mutablehashtableoftensors |
tf.raw_ops.MutableHashTableOfTensorsV2 Creates an empty hash table. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MutableHashTableOfTensorsV2
tf.raw_ops.MutableHashTableOfTensorsV2(
key_dtype, value_dtype, container='', shared_name='',
use_node_name_sh... | tensorflow.raw_ops.mutablehashtableoftensorsv2 |
tf.raw_ops.MutableHashTableV2 Creates an empty hash table. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MutableHashTableV2
tf.raw_ops.MutableHashTableV2(
key_dtype, value_dtype, container='', shared_name='',
use_node_name_sharing=False, name=None
)
T... | tensorflow.raw_ops.mutablehashtablev2 |
tf.raw_ops.MutexLock Locks a mutex resource. The output is the lock. So long as the lock tensor View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MutexLock
tf.raw_ops.MutexLock(
mutex, name=None
)
is alive, any other request to use MutexLock with this mutex w... | tensorflow.raw_ops.mutexlock |
tf.raw_ops.MutexV2 Creates a Mutex resource that can be locked by MutexLock. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.MutexV2
tf.raw_ops.MutexV2(
container='', shared_name='', name=None
)
Args
container An optional string. Defaults to "". If... | tensorflow.raw_ops.mutexv2 |
tf.raw_ops.NcclAllReduce Outputs a tensor containing the reduction across all input tensors. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NcclAllReduce
tf.raw_ops.NcclAllReduce(
input, reduction, num_devices, shared_name, name=None
)
Outputs a tensor con... | tensorflow.raw_ops.ncclallreduce |
tf.raw_ops.NcclBroadcast Sends input to all devices that are connected to the output. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NcclBroadcast
tf.raw_ops.NcclBroadcast(
input, shape, name=None
)
Sends input to all devices that are connected to the outp... | tensorflow.raw_ops.ncclbroadcast |
tf.raw_ops.NcclReduce Reduces input from num_devices using reduction to a single device. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NcclReduce
tf.raw_ops.NcclReduce(
input, reduction, name=None
)
Reduces input from num_devices using reduction to a sing... | tensorflow.raw_ops.ncclreduce |
tf.raw_ops.Ndtri View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Ndtri
tf.raw_ops.Ndtri(
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).
R... | tensorflow.raw_ops.ndtri |
tf.raw_ops.Neg Computes numerical negative value element-wise. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.Neg
tf.raw_ops.Neg(
x, name=None
)
I.e., \(y = -x\).
Args
x A Tensor. Must be one of the following types: bfloat16, half, float32, floa... | tensorflow.raw_ops.neg |
tf.raw_ops.NextAfter Returns the next representable value of x1 in the direction of x2, element-wise. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NextAfter
tf.raw_ops.NextAfter(
x1, x2, name=None
)
This operation returns the same result as the C++ std::... | tensorflow.raw_ops.nextafter |
tf.raw_ops.NextIteration Makes its input available to the next iteration. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NextIteration
tf.raw_ops.NextIteration(
data, name=None
)
Args
data A Tensor. The tensor to be made available to the next iter... | tensorflow.raw_ops.nextiteration |
tf.raw_ops.NonDeterministicInts Non-deterministically generates some integers. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NonDeterministicInts
tf.raw_ops.NonDeterministicInts(
shape, dtype=tf.dtypes.int64, name=None
)
This op may use some OS-provided s... | tensorflow.raw_ops.nondeterministicints |
tf.raw_ops.NonMaxSuppression Greedily selects a subset of bounding boxes in descending order of score, View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NonMaxSuppression
tf.raw_ops.NonMaxSuppression(
boxes, scores, max_output_size, iou_threshold=0.5, name=Non... | tensorflow.raw_ops.nonmaxsuppression |
tf.raw_ops.NonMaxSuppressionV2 Greedily selects a subset of bounding boxes in descending order of score, View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NonMaxSuppressionV2
tf.raw_ops.NonMaxSuppressionV2(
boxes, scores, max_output_size, iou_threshold, name=N... | tensorflow.raw_ops.nonmaxsuppressionv2 |
tf.raw_ops.NonMaxSuppressionV3 Greedily selects a subset of bounding boxes in descending order of score, View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NonMaxSuppressionV3
tf.raw_ops.NonMaxSuppressionV3(
boxes, scores, max_output_size, iou_threshold, score_... | tensorflow.raw_ops.nonmaxsuppressionv3 |
tf.raw_ops.NonMaxSuppressionV4 Greedily selects a subset of bounding boxes in descending order of score, View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NonMaxSuppressionV4
tf.raw_ops.NonMaxSuppressionV4(
boxes, scores, max_output_size, iou_threshold, score_... | tensorflow.raw_ops.nonmaxsuppressionv4 |
tf.raw_ops.NonMaxSuppressionV5 Greedily selects a subset of bounding boxes in descending order of score, View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NonMaxSuppressionV5
tf.raw_ops.NonMaxSuppressionV5(
boxes, scores, max_output_size, iou_threshold, score_... | tensorflow.raw_ops.nonmaxsuppressionv5 |
tf.raw_ops.NonMaxSuppressionWithOverlaps Greedily selects a subset of bounding boxes in descending order of score, View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NonMaxSuppressionWithOverlaps
tf.raw_ops.NonMaxSuppressionWithOverlaps(
overlaps, scores, max_o... | tensorflow.raw_ops.nonmaxsuppressionwithoverlaps |
tf.raw_ops.NonSerializableDataset View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NonSerializableDataset
tf.raw_ops.NonSerializableDataset(
input_dataset, output_types, output_shapes, name=None
)
Args
input_dataset A Tensor of type variant.
out... | tensorflow.raw_ops.nonserializabledataset |
tf.raw_ops.NoOp Does nothing. Only useful as a placeholder for control edges. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NoOp
tf.raw_ops.NoOp(
name=None
)
Args
name A name for the operation (optional).
Returns The created Operation. | tensorflow.raw_ops.noop |
tf.raw_ops.NotEqual Returns the truth value of (x != y) element-wise. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NotEqual
tf.raw_ops.NotEqual(
x, y, incompatible_shape_error=True, name=None
)
Note: NotEqual supports broadcasting. More about broadcasti... | tensorflow.raw_ops.notequal |
tf.raw_ops.NthElement Finds values of the n-th order statistic for the last dimension. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.NthElement
tf.raw_ops.NthElement(
input, n, reverse=False, name=None
)
If the input is a vector (rank-1), finds the entrie... | tensorflow.raw_ops.nthelement |
tf.raw_ops.OneHot Returns a one-hot tensor. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OneHot
tf.raw_ops.OneHot(
indices, depth, on_value, off_value, axis=-1, name=None
)
The locations represented by indices in indices take value on_value, while all ot... | tensorflow.raw_ops.onehot |
tf.raw_ops.OneShotIterator Makes a "one-shot" iterator that can be iterated only once. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OneShotIterator
tf.raw_ops.OneShotIterator(
dataset_factory, output_types, output_shapes, container='',
shared_name='',... | tensorflow.raw_ops.oneshotiterator |
tf.raw_ops.OnesLike Returns a tensor of ones with the same shape and type as x. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OnesLike
tf.raw_ops.OnesLike(
x, name=None
)
Args
x A Tensor. Must be one of the following types: bfloat16, half, float3... | tensorflow.raw_ops.oneslike |
tf.raw_ops.OptimizeDataset Creates a dataset by applying optimizations to input_dataset. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OptimizeDataset
tf.raw_ops.OptimizeDataset(
input_dataset, optimizations, output_types, output_shapes,
optimization_c... | tensorflow.raw_ops.optimizedataset |
tf.raw_ops.OptimizeDatasetV2 Creates a dataset by applying related optimizations to input_dataset. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OptimizeDatasetV2
tf.raw_ops.OptimizeDatasetV2(
input_dataset, optimizations_enabled, optimizations_disabled,
... | tensorflow.raw_ops.optimizedatasetv2 |
tf.raw_ops.OptionalFromValue Constructs an Optional variant from a tuple of tensors. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OptionalFromValue
tf.raw_ops.OptionalFromValue(
components, name=None
)
Args
components A list of Tensor objects. ... | tensorflow.raw_ops.optionalfromvalue |
tf.raw_ops.OptionalGetValue Returns the value stored in an Optional variant or raises an error if none exists. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OptionalGetValue
tf.raw_ops.OptionalGetValue(
optional, output_types, output_shapes, name=None
)
... | tensorflow.raw_ops.optionalgetvalue |
tf.raw_ops.OptionalHasValue Returns true if and only if the given Optional variant has a value. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OptionalHasValue
tf.raw_ops.OptionalHasValue(
optional, name=None
)
Args
optional A Tensor of type varia... | tensorflow.raw_ops.optionalhasvalue |
tf.raw_ops.OptionalNone Creates an Optional variant with no value. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OptionalNone
tf.raw_ops.OptionalNone(
name=None
)
Args
name A name for the operation (optional).
Returns A Tensor of type v... | tensorflow.raw_ops.optionalnone |
tf.raw_ops.OrderedMapClear 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.OrderedMapClear
tf.raw_ops.OrderedMapClear(
dtypes, capacity=0, memory_limit=0, container='',
shared_name='', name=None
)
... | tensorflow.raw_ops.orderedmapclear |
tf.raw_ops.OrderedMapIncompleteSize Op returns the number of incomplete elements in the underlying container. View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OrderedMapIncompleteSize
tf.raw_ops.OrderedMapIncompleteSize(
dtypes, capacity=0, memory_limit=0, co... | tensorflow.raw_ops.orderedmapincompletesize |
tf.raw_ops.OrderedMapPeek Op peeks at the values at the specified key. If the View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OrderedMapPeek
tf.raw_ops.OrderedMapPeek(
key, indices, dtypes, capacity=0, memory_limit=0, container='',
shared_name='', name=N... | tensorflow.raw_ops.orderedmappeek |
tf.raw_ops.OrderedMapSize 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.OrderedMapSize
tf.raw_ops.OrderedMapSize(
dtypes, capacity=0, memory_limit=0, container='',
shared_name='', name=None... | tensorflow.raw_ops.orderedmapsize |
tf.raw_ops.OrderedMapStage Stage (key, values) in the underlying container which behaves like a ordered View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OrderedMapStage
tf.raw_ops.OrderedMapStage(
key, indices, values, dtypes, capacity=0, memory_limit=0,
... | tensorflow.raw_ops.orderedmapstage |
tf.raw_ops.OrderedMapUnstage Op removes and returns the values associated with the key View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OrderedMapUnstage
tf.raw_ops.OrderedMapUnstage(
key, indices, dtypes, capacity=0, memory_limit=0, container='',
shared_... | tensorflow.raw_ops.orderedmapunstage |
tf.raw_ops.OrderedMapUnstageNoKey Op removes and returns the (key, value) element with the smallest View aliases Compat aliases for migration
See Migration guide for more details. tf.compat.v1.raw_ops.OrderedMapUnstageNoKey
tf.raw_ops.OrderedMapUnstageNoKey(
indices, dtypes, capacity=0, memory_limit=0, contain... | tensorflow.raw_ops.orderedmapunstagenokey |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.