frac¶
得到输入 Tensor 的小数部分。
参数¶
x (Tensor):输入变量,类型为 Tensor,支持 int32、int64、float32、float64 数据类型。
name (str,可选) - 具体用法请参见 Name,一般无需设置,默认值为 None。
返回¶
Tensor (Tensor),输入矩阵只保留小数部分的结果。
代码示例¶
import paddle
input = paddle.to_tensor([[12.22000003, -1.02999997],
[-0.54999995, 0.66000003]])
output = paddle.frac(input)
print(output)
# Tensor(shape=[2, 2], dtype=float32, place=Place(cpu), stop_gradient=True,
# [[ 0.22000003, -0.02999997],
# [-0.54999995, 0.66000003]])