Function tensorflow::eager::raw_ops::lookup_table_find_v2
source · pub fn lookup_table_find_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>>(
ctx: &'a Context,
table_handle: &T0,
keys: &T1,
default_value: &T2
) -> Result<TensorHandle<'a>>
Expand description
Shorthand for LookupTableFindV2::new().call(&ctx, &table_handle, &keys, &default_value)
.
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/LookupTableFindV2