Tensorflow Dictionary lookup with String tensor

后端 未结 4 2098
名媛妹妹
名媛妹妹 2020-12-29 20:35

Is there any way to perform a dictionary lookup based on a String tensor in Tensorflow?

In plain Python, I\'d do something like

value = dictionary[ke         


        
4条回答
  •  别那么骄傲
    2020-12-29 21:15

    You might find tensorflow.contrib.lookup helpful: https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/lookup/lookup_ops.py

    https://www.tensorflow.org/api_docs/python/tf/contrib/lookup/HashTable

    In particular, you can do:

    table = tf.contrib.lookup.HashTable(
      tf.contrib.lookup.KeyValueTensorInitializer(keys, values), -1
    )
    out = table.lookup(input_tensor)
    table.init.run()
    print out.eval()
    

提交回复
热议问题