Note: Functions taking Tensor arguments can also take anything accepted by
tf.convert_to_tensor.
[TOC]
String hashing ops take a string input tensor and map each element to an integer.
Converts each string in the input Tensor to its hash mod by a number of buckets.
The hash function is deterministic on the content of the string within the
process and will never change. However, it is not suitable for cryptography.
This function may be used when CPU time is scarce and inputs are trusted or
unimportant. There is a risk of adversaries constructing inputs that all hash
to the same bucket. To prevent this problem, use a strong hash function with
tf.string_to_hash_bucket_strong.
input: ATensorof typestring. The strings to assign a hash bucket.num_buckets: Anintthat is>= 1. The number of buckets.name: A name for the operation (optional).
A Tensor of type int64.
A Tensor of the same shape as the input string_tensor.
Converts each string in the input Tensor to its hash mod by a number of buckets.
The hash function is deterministic on the content of the string within the
process. The hash function is a keyed hash function, where attribute key
defines the key of the hash function. key is an array of 2 elements.
A strong hash is important when inputs may be malicious, e.g. URLs with additional components. Adversaries could try to make their inputs hash to the same bucket for a denial-of-service attack or to skew the results. A strong hash prevents this by making it dificult, if not infeasible, to compute inputs that hash to the same bucket. This comes at a cost of roughly 4x higher compute time than tf.string_to_hash_bucket_fast.
input: ATensorof typestring. The strings to assign a hash bucket.num_buckets: Anintthat is>= 1. The number of buckets.key: A list ofints. The key for the keyed hash function passed as a list of two uint64 elements.name: A name for the operation (optional).
A Tensor of type int64.
A Tensor of the same shape as the input string_tensor.
Converts each string in the input Tensor to its hash mod by a number of buckets.
The hash function is deterministic on the content of the string within the process.
Note that the hash function may change from time to time.
string_tensor: ATensorof typestring.num_buckets: Anintthat is>= 1. The number of buckets.name: A name for the operation (optional).
A Tensor of type int64.
A Tensor of the same shape as the input string_tensor.
String joining ops concatenate elements of input string tensors to produce a new string tensor.
Joins a string Tensor across the given dimensions.
Computes the string join across dimensions in the given string Tensor of shape
[d_0, d_1, ..., d_n-1]. Returns a new Tensor created by joining the input
strings with the given separator (default: empty string). Negative indices are
counted backwards from the end, with -1 being equivalent to n - 1. Passing
an empty reduction_indices joins all strings in linear index order and outputs
a scalar string.
For example:
# tensor `a` is [["a", "b"], ["c", "d"]]
tf.reduce_join(a, 0) ==> ["ac", "bd"]
tf.reduce_join(a, 1) ==> ["ab", "cd"]
tf.reduce_join(a, -2) = tf.reduce_join(a, 0) ==> ["ac", "bd"]
tf.reduce_join(a, -1) = tf.reduce_join(a, 1) ==> ["ab", "cd"]
tf.reduce_join(a, 0, keep_dims=True) ==> [["ac", "bd"]]
tf.reduce_join(a, 1, keep_dims=True) ==> [["ab"], ["cd"]]
tf.reduce_join(a, 0, separator=".") ==> ["a.c", "b.d"]
tf.reduce_join(a, [0, 1]) ==> ["acbd"]
tf.reduce_join(a, [1, 0]) ==> ["abcd"]
tf.reduce_join(a, []) ==> ["abcd"]
inputs: ATensorof typestring. The input to be joined. All reduced indices must have non-zero size.reduction_indices: ATensorof typeint32. The dimensions to reduce over. Dimensions are reduced in the order specified. Ifreduction_indiceshas higher rank than1, it is flattened. Omittingreduction_indicesis equivalent to passing[n-1, n-2, ..., 0]. Negative indices from-nto-1are supported.keep_dims: An optionalbool. Defaults toFalse. IfTrue, retain reduced dimensions with length1.separator: An optionalstring. Defaults to"". The separator to use when joining.name: A name for the operation (optional).
A Tensor of type string.
Has shape equal to that of the input with reduced dimensions removed or
set to 1 depending on keep_dims.