tf.contrib.lookup.HasherSpec

Class HasherSpec

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

A structure for the spec of the hashing function to use for hash buckets.

hasher is the name of the hashing function to use (eg. "fasthash", "stronghash"). key is optional and specify the key to use for the hash function if supported, currently only used by a strong hash.

Fields:

  • hasher: The hasher name to use.
  • key: The key to be used by the hashing function, if required.

__new__

__new__(
    _cls,
    hasher,
    key
)

Create new instance of HasherSpec(hasher, key)

Properties

hasher

key