aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/api_def/base_api/api_def_QuantizedInstanceNorm.pbtxt
blob: 7c30870fde48782101849fcfdd02169f201bfe60 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
op {
  graph_op_name: "QuantizedInstanceNorm"
  in_arg {
    name: "x"
    description: <<END
A 4D input Tensor.
END
  }
  in_arg {
    name: "x_min"
    description: <<END
The value represented by the lowest quantized input.
END
  }
  in_arg {
    name: "x_max"
    description: <<END
The value represented by the highest quantized input.
END
  }
  out_arg {
    name: "y"
    description: <<END
A 4D Tensor.
END
  }
  out_arg {
    name: "y_min"
    description: <<END
The value represented by the lowest quantized output.
END
  }
  out_arg {
    name: "y_max"
    description: <<END
The value represented by the highest quantized output.
END
  }
  attr {
    name: "output_range_given"
    description: <<END
If True, `given_y_min` and `given_y_min`
and `given_y_max` are used as the output range. Otherwise,
the implementation computes the output range.
END
  }
  attr {
    name: "given_y_min"
    description: <<END
Output in `y_min` if `output_range_given` is True.
END
  }
  attr {
    name: "given_y_max"
    description: <<END
Output in `y_max` if `output_range_given` is True.
END
  }
  attr {
    name: "variance_epsilon"
    description: <<END
A small float number to avoid dividing by 0.
END
  }
  attr {
    name: "min_separation"
    description: <<END
Minimum value of `y_max - y_min`
END
  }
  summary: "Quantized Instance normalization."
}