tf.contrib.lookup.index_to_string_table_from_file(vocabulary_file, vocab_size=None, default_value='UNK', name=None)
Returns a lookup table that maps a Tensor
of indices into strings.
This operation constructs a lookup table to map int64 indices into string values. The table is initialized from a vocabulary file specified in vocabulary_file
, where the whole line is the value and the zero-based line number is the index.
Any input which does not have a corresponding index in the vocabulary file (an out-of-vocabulary entry) is assigned the default_value
The underlying table must be initialized by calling tf.tables_initializer.run()
or table.init.run()
once.
Sample Usages:
If we have a vocabulary file "test.txt" with the following content:
emerson lake palmer
indices = tf.constant([1, 5], tf.int64) table = tf.contrib.lookup.index_to_string_from_file( vocabulary_file="test.txt", default_value="UNKNOWN") values = table.lookup(indices) ... tf.tables_initializer().run() values.eval() ==> ["lake", "UNKNOWN"]
vocabulary_file
: The vocabulary filename.vocab_size
: Number of the elements in the vocabulary, if known.default_value
: The value to use for out-of-vocabulary indices.name
: A name for this op (optional).The lookup table to map a string values associated to a given index int64
Tensors
.
ValueError
: when vocabulary_file
is empty.ValueError
: when vocab_size
is invalid.Defined in tensorflow/contrib/lookup/lookup_ops.py
.
© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/contrib/lookup/index_to_string_table_from_file