當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.raw_ops.QuantizedReshape用法及代碼示例


根據 Reshape 操作重塑量化張量。

用法

tf.raw_ops.QuantizedReshape(
    tensor, shape, input_min, input_max, name=None
)

Args



`tensor`


A `Tensor`.



`shape`


A `Tensor`. Must be one of the following types:`int32`, `int64`.
Defines the shape of the output tensor.



`input_min`


A `Tensor` of type `float32`. The minimum value of the input.



`input_max`


A `Tensor` of type `float32`. The maximum value of the input.



`name`


A name for the operation (optional).







 

Returns


A tuple of `Tensor` objects (output, output_min, output_max).




`output`


A `Tensor`. Has the same type as `tensor`.



`output_min`


A `Tensor` of type `float32`.



`output_max`


A `Tensor` of type `float32`.

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.raw_ops.QuantizedReshape。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。