根据 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`.
相关用法
- Python tf.raw_ops.QuantizedMatMulWithBiasAndReluAndRequantize用法及代码示例
- Python tf.raw_ops.QuantizedMatMulWithBias用法及代码示例
- Python tf.raw_ops.QuantizedMatMulWithBiasAndRelu用法及代码示例
- Python tf.raw_ops.QuantizeV2用法及代码示例
- Python tf.raw_ops.Qr用法及代码示例
- Python tf.raw_ops.TPUReplicatedInput用法及代码示例
- Python tf.raw_ops.Bitcast用法及代码示例
- Python tf.raw_ops.SelfAdjointEigV2用法及代码示例
- Python tf.raw_ops.BatchMatMul用法及代码示例
- Python tf.raw_ops.OneHot用法及代码示例
- Python tf.raw_ops.ResourceScatterNdSub用法及代码示例
- Python tf.raw_ops.ReadVariableXlaSplitND用法及代码示例
- Python tf.raw_ops.GatherV2用法及代码示例
- Python tf.raw_ops.Expm1用法及代码示例
- Python tf.raw_ops.BitwiseAnd用法及代码示例
- Python tf.raw_ops.UniqueWithCounts用法及代码示例
- Python tf.raw_ops.DecodeGif用法及代码示例
- Python tf.raw_ops.Size用法及代码示例
- Python tf.raw_ops.ScatterUpdate用法及代码示例
- Python tf.raw_ops.ParallelConcat用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.raw_ops.QuantizedReshape。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。