tf.contrib.lookup.LookupInterface

Class LookupInterface

Defined in tensorflow/python/ops/lookup_ops.py.

Represent a lookup table that persists across different steps.

__init__

__init__(
    key_dtype,
    value_dtype
)

Construct a lookup table interface.

Args:

  • key_dtype: The table key type.
  • value_dtype: The table value type.

Properties

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.LookupInterface.create_resource

create_resource()

A function that creates a resource handle.

tf.contrib.lookup.LookupInterface.initialize

initialize()

A function that initializes the resource. Optional.

tf.contrib.lookup.LookupInterface.lookup

lookup(
    keys,
    name=None
)

Looks up keys in a table, outputs the corresponding values.

tf.contrib.lookup.LookupInterface.size

size(name=None)

Compute the number of elements in this table.