返回输入 tensor 的密度。
x (nparray) – 输入 tensor。
float - x 的密度
>>> import paddle >>> import numpy as np >>> x = np.array([[0, 1, 3, 0], ... [1, 1, 0, 1]]) >>> out = paddle.incubate.asp.calculate_density(x) >>> print(out) 0.625