tensorflow :: ops :: Desquantizar
#include <array_ops.h>
Desquantize o tensor de 'entrada' em um Tensor flutuante ou bfloat16.
Resumo
[min_range, max_range] são flutuantes escalares que especificam o intervalo para a saída. O atributo 'modo' controla exatamente quais cálculos são usados para converter os valores flutuantes em seus equivalentes quantizados.
No modo 'MIN_COMBINED', cada valor do tensor sofrerá o seguinte:
if T == qint8: in[i] += (range(T) + 1)/ 2.0 out[i] = min_range + (in[i]* (max_range - min_range) / range(T))aqui
range(T) = numeric_limits ::max() - numeric_limits ::min()
range(T) = numeric_limits ::max() - numeric_limits ::min()
range(T) = numeric_limits ::max() - numeric_limits ::min()
Exemplo de modo MIN_COMBINED
Se a entrada vem de um QuantizedRelu6 , o tipo de saída é quint8 (faixa de 0-255), mas a faixa possível de QuantizedRelu6 é 0-6. Os valores min_range e max_range são, portanto, 0,0 e 6,0. Desquantizar em quint8 tomará cada valor, converter para flutuar e multiplicar por 6 / 255. Observe que se quantizedtype for qint8, a operação adicionará adicionalmente cada valor por 128 antes de lançar.
Se o modo for 'MIN_FIRST', esta abordagem é usada:
num_discrete_values = 1 << (# of bits in T) range_adjust = num_discrete_values / (num_discrete_values - 1) range = (range_max - range_min) * range_adjust range_scale = range / num_discrete_values const double offset_input = static_cast(input) - lowest_quantized; result = range_min + ((input - numeric_limits ::min()) * range_scale)
Se o modo for SCALED
, dequantization é executada multiplicando cada valor de entrada por um scaling_factor. (Assim, uma entrada de 0 sempre mapeia para 0,0).
O scaling_factor é determinado a partir de min_range
, max_range
e narrow_range
de uma forma que seja compatível com QuantizeAndDequantize{V2|V3}
e QuantizeV2
, usando o seguinte algoritmo:
const int min_expected_T = std::numeric_limits::min() + (narrow_range ? 1 : 0); const int max_expected_T = std::numeric_limits ::max(); const float max_expected_T = std::numeric_limits ::max();
const float scale_factor = (std::numeric_limits::min() == 0) ? (max_range / max_expected_T) : std::max(min_range / min_expected_T, max_range / max_expected_T); Argumentos:
- escopo: um objeto Scope
- intervalo_min: O valor escalar mínimo possivelmente produzido para a entrada.
- max_range: O valor escalar máximo possivelmente produzido para a entrada.
Atributos opcionais (consulte Attrs
):
- dtype: Tipo de tensor de saída. Atualmente Dequantize suporta float e bfloat16. Se 'dtype' for 'bfloat16', ele só suporta o modo 'MIN_COMBINED'.
Retorna:
-
Output
: o tensor de saída.
Construtores e Destruidores | |
---|---|
Dequantize (const :: tensorflow::Scope & scope, :: tensorflow::Input input, :: tensorflow::Input min_range, :: tensorflow::Input max_range) | |
Dequantize (const :: tensorflow::Scope & scope, :: tensorflow::Input input, :: tensorflow::Input min_range, :: tensorflow::Input max_range, const Dequantize::Attrs & attrs) |
Atributos públicos | |
---|---|
operation | |
output |
Funções públicas | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
Funções estáticas públicas | |
---|---|
Axis (int64 x) | |
Dtype (DataType x) | |
Mode (StringPiece x) | |
NarrowRange (bool x) |
Structs | |
---|---|
tensorflow :: ops :: Dequantize :: Attrs | Configuradores de atributos opcionais para Dequantize . |
Atributos públicos
Operação
Operation operation
resultado
::tensorflow::Output output
Funções públicas
Desquantizar
Dequantize( const ::tensorflow::Scope & scope, ::tensorflow::Input input, ::tensorflow::Input min_range, ::tensorflow::Input max_range )
Desquantizar
Dequantize( const ::tensorflow::Scope & scope, ::tensorflow::Input input, ::tensorflow::Input min_range, ::tensorflow::Input max_range, const Dequantize::Attrs & attrs )
nó
::tensorflow::Node * node() const
operador :: tensorflow :: Input
operator::tensorflow::Input() const
operador :: tensorflow :: Saída
operator::tensorflow::Output() const
Funções estáticas públicas
Eixo
Attrs Axis( int64 x )
Dtype
Attrs Dtype( DataType x )
Modo
Attrs Mode( StringPiece x )
Curto alcance
Attrs NarrowRange( bool x )