aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/api_def/base_api/api_def_HistogramSummary.pbtxt
blob: faf1ed5abdd151222d07bc4b15f287ee9620cdb1 (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
op {
  graph_op_name: "HistogramSummary"
  in_arg {
    name: "tag"
    description: <<END
Scalar.  Tag to use for the `Summary.Value`.
END
  }
  in_arg {
    name: "values"
    description: <<END
Any shape. Values to use to build the histogram.
END
  }
  out_arg {
    name: "summary"
    description: <<END
Scalar. Serialized `Summary` protocol buffer.
END
  }
  summary: "Outputs a `Summary` protocol buffer with a histogram."
  description: <<END
The generated
[`Summary`](https://www.tensorflow.org/code/tensorflow/core/framework/summary.proto)
has one summary value containing a histogram for `values`.

This op reports an `InvalidArgument` error if any value is not finite.
END
}