tensorflow :: operaciones :: FakeQuantWithMinMaxVarsPerChannel
#include <array_ops.h>
Cuantizar falso el tensor de 'entradas' de tipo float a través de flotadores por canal.
Resumen
Cuantizar falso el tensor de inputs
de tipo float por canal y una de las formas: [d]
, [b, d]
[b, h, w, d]
través de flotadores por canal min
y max
de forma [d]
a tensor de outputs
de la misma forma que las inputs
.
Atributos
-
[min; max]
definir el rango de fijación para lasinputs
de datos. -
inputs
valores de entrada se cuantifican en el rango de cuantificación ([0; 2^num_bits - 1]
cuandonarrow_range
es falso y[1; 2^num_bits - 1]
cuando es verdadero) y luego se descuantifican y se emiten como flotantes en[min; max]
intervalo. -
num_bits
es el ancho de bits de la cuantificación; entre 2 y 16, inclusive.
Antes de la cuantificación, los valores min
y max
se ajustan con la siguiente lógica. Se sugiere tener min <= 0 <= max
. Si 0
no está en el rango de valores, el comportamiento puede ser inesperado:
- Si
0 < min < max
:min_adj = 0
ymax_adj = max - min
. - Si
min < max < 0
:min_adj = min - max
ymax_adj = 0
. - Si
min <= 0 <= max
:scale = (max - min) / (2^num_bits - 1)
,min_adj = scale * round(min / scale)
ymax_adj = max + min_adj - min
.
Esta operación tiene un gradiente y por lo tanto permite el entrenamiento min
y max
valores.
Argumentos:
- alcance: un objeto de alcance
Devoluciones:
-
Output
: el tensor de salidas.
Constructores y Destructores | |
---|---|
FakeQuantWithMinMaxVarsPerChannel (const :: tensorflow::Scope & scope, :: tensorflow::Input inputs, :: tensorflow::Input min, :: tensorflow::Input max) | |
FakeQuantWithMinMaxVarsPerChannel (const :: tensorflow::Scope & scope, :: tensorflow::Input inputs, :: tensorflow::Input min, :: tensorflow::Input max, const FakeQuantWithMinMaxVarsPerChannel::Attrs & attrs) |
Atributos públicos | |
---|---|
operation | |
outputs |
Funciones publicas | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
Funciones estáticas públicas | |
---|---|
NarrowRange (bool x) | |
NumBits (int64 x) |
Estructuras | |
---|---|
tensorflow :: ops :: FakeQuantWithMinMaxVarsPerChannel :: Attrs | Establecedores de atributos opcionales para FakeQuantWithMinMaxVarsPerChannel . |
Atributos públicos
operación
Operation operation
salidas
::tensorflow::Output outputs
Funciones publicas
FakeQuantWithMinMaxVarsPerChannel
FakeQuantWithMinMaxVarsPerChannel( const ::tensorflow::Scope & scope, ::tensorflow::Input inputs, ::tensorflow::Input min, ::tensorflow::Input max )
FakeQuantWithMinMaxVarsPerChannel
FakeQuantWithMinMaxVarsPerChannel( const ::tensorflow::Scope & scope, ::tensorflow::Input inputs, ::tensorflow::Input min, ::tensorflow::Input max, const FakeQuantWithMinMaxVarsPerChannel::Attrs & attrs )
nodo
::tensorflow::Node * node() const
operador :: tensorflow :: Entrada
operator::tensorflow::Input() const
operador :: tensorflow :: Salida
operator::tensorflow::Output() const
Funciones estáticas públicas
Rango estrecho
Attrs NarrowRange( bool x )
NumBits
Attrs NumBits( int64 x )