aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/api_def/base_api/api_def_LookupTableFindV2.pbtxt
blob: 30f69220e8dcad9a89039d157470b0603f2bb73c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
op {
  graph_op_name: "LookupTableFindV2"
  endpoint {
    name: "LookupTableFind"
  }
  in_arg {
    name: "table_handle"
    description: <<END
Handle to the table.
END
  }
  in_arg {
    name: "keys"
    description: <<END
Any shape.  Keys to look up.
END
  }
  out_arg {
    name: "values"
    description: <<END
Same shape as `keys`.  Values found in the table, or `default_values`
for missing keys.
END
  }
  summary: "Looks up keys in a table, outputs the corresponding values."
  description: <<END
The tensor `keys` must of the same type as the keys of the table.
The output `values` is of the type of the table values.

The scalar `default_value` is the value output for keys not present in the
table. It must also be of the same type as the table values.
END
}