tensorflow::ops::QuantizedInstanceNorm

tensorflow::ops::QuantizedInstanceNorm

#include <array_ops.h>

Quantized Instance normalization.

Summary

Arguments:

  • scope: A Scope object
  • x: A 4D input Tensor.
  • x_min: The value represented by the lowest quantized input.
  • x_max: The value represented by the highest quantized input.

Optional attributes (see Attrs):

  • output_range_given: 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.
  • given_y_min: Output in y_min if output_range_given is True.
  • given_y_max: Output in y_max if output_range_given is True.
  • variance_epsilon: A small float number to avoid dividing by 0.
  • min_separation: Minimum value of y_max - y_min

Returns:

  • Output y: A 4D Tensor.
  • Output y_min: The value represented by the lowest quantized output.
  • Output y_max: The value represented by the highest quantized output.
Constructors and Destructors
QuantizedInstanceNorm(const ::tensorflow::Scope & scope, ::tensorflow::Input x, ::tensorflow::Input x_min, ::tensorflow::Input x_max)
QuantizedInstanceNorm(const ::tensorflow::Scope & scope, ::tensorflow::Input x, ::tensorflow::Input x_min, ::tensorflow::Input x_max, const QuantizedInstanceNorm::Attrs & attrs)
Public attributes
y
y_max
y_min
Public static functions
GivenYMax(float x)
GivenYMin(float x)
MinSeparation(float x)
OutputRangeGiven(bool x)
VarianceEpsilon(float x)
Structs
tensorflow::ops::QuantizedInstanceNorm::Attrs

Optional attribute setters for QuantizedInstanceNorm.

Public attributes

y

::tensorflow::Output y

y_max

::tensorflow::Output y_max

y_min

::tensorflow::Output y_min

Public functions

QuantizedInstanceNorm

 QuantizedInstanceNorm(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input x,
  ::tensorflow::Input x_min,
  ::tensorflow::Input x_max
)

QuantizedInstanceNorm

 QuantizedInstanceNorm(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input x,
  ::tensorflow::Input x_min,
  ::tensorflow::Input x_max,
  const QuantizedInstanceNorm::Attrs & attrs
)

Public static functions

GivenYMax

Attrs GivenYMax(
  float x
)

GivenYMin

Attrs GivenYMin(
  float x
)

MinSeparation

Attrs MinSeparation(
  float x
)

OutputRangeGiven

Attrs OutputRangeGiven(
  bool x
)

VarianceEpsilon

Attrs VarianceEpsilon(
  float x
)

© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/quantized-instance-norm.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部