当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。