Class HashTable
Inherits From: InitializableLookupTableBase
Defined in tensorflow/python/ops/lookup_ops.py
.
A generic hash table implementation.
Example usage:
table = tf.HashTable(
tf.KeyValueTensorInitializer(keys, values), -1)
out = table.lookup(input_tensor)
table.init.run()
print(out.eval())
__init__
__init__(
initializer,
default_value,
shared_name=None,
name=None
)
Creates a non-initialized HashTable
object.
Creates a table, the type of its keys and values are specified by the initializer. Before using the table you will have to initialize it. After initialization the table will be immutable.
Args:
initializer
: The table initializer to use. SeeHashTable
kernel for supported key and value types.default_value
: The value to use if a key is missing in the table.shared_name
: If non-empty, this table will be shared under the given name across multiple sessions.name
: A name for the operation (optional).
Returns:
A HashTable
object.
Properties
default_value
The default value of the table.
init
DEPRECATED FUNCTION
initializer
key_dtype
The table key dtype.
name
The name of the table.
resource_handle
Returns the resource handle associated with this Resource.
value_dtype
The table value dtype.
Methods
tf.contrib.lookup.HashTable.create_resource
create_resource()
A function that creates a resource handle.
tf.contrib.lookup.HashTable.export
export(name=None)
Returns tensors of all keys and values in the table.
Args:
name
: A name for the operation (optional).
Returns:
A pair of tensors with the first tensor containing all keys and the second tensors containing all values in the table.
tf.contrib.lookup.HashTable.initialize
initialize()
A function that initializes the resource. Optional.
tf.contrib.lookup.HashTable.lookup
lookup(
keys,
name=None
)
Looks up keys
in a table, outputs the corresponding values.
The default_value
is used for keys not present in the table.
Args:
keys
: Keys to look up. May be either aSparseTensor
or denseTensor
.name
: A name for the operation (optional).
Returns:
A SparseTensor
if keys are sparse, otherwise a dense Tensor
.
Raises:
TypeError
: whenkeys
ordefault_value
doesn't match the table data types.
tf.contrib.lookup.HashTable.size
size(name=None)
Compute the number of elements in this table.
Args:
name
: A name for the operation (optional).
Returns:
A scalar tensor containing the number of elements in this table.