Files
paddlepaddle--paddle/test/distribution/test_distribution_laplace.py
T
2026-07-13 12:40:42 +08:00

243 lines
7.5 KiB
Python

# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import unittest
import numpy as np
import parameterize
import scipy.stats
from distribution import config
import paddle
@parameterize.place(config.DEVICES)
@parameterize.parameterize_cls(
(parameterize.TEST_CASE_NAME, 'loc', 'scale'),
[
('one-dim', parameterize.xrand((2,)), parameterize.xrand((2,))),
('multi-dim', parameterize.xrand((5, 5)), parameterize.xrand((5, 5))),
],
)
class TestLaplace(unittest.TestCase):
def setUp(self):
self._dist = paddle.distribution.Laplace(
loc=paddle.to_tensor(self.loc), scale=paddle.to_tensor(self.scale)
)
def test_mean(self):
mean = self._dist.mean
self.assertEqual(mean.numpy().dtype, self.scale.dtype)
np.testing.assert_allclose(
mean,
self._np_mean(),
rtol=config.RTOL.get(str(self.scale.dtype)),
atol=config.ATOL.get(str(self.scale.dtype)),
)
def test_variance(self):
var = self._dist.variance
self.assertEqual(var.numpy().dtype, self.scale.dtype)
np.testing.assert_allclose(
var,
self._np_variance(),
rtol=config.RTOL.get(str(self.scale.dtype)),
atol=config.ATOL.get(str(self.scale.dtype)),
)
def test_stddev(self):
stddev = self._dist.stddev
self.assertEqual(stddev.numpy().dtype, self.scale.dtype)
np.testing.assert_allclose(
stddev,
self._np_stddev(),
rtol=config.RTOL.get(str(self.scale.dtype)),
atol=config.ATOL.get(str(self.scale.dtype)),
)
def test_entropy(self):
entropy = self._dist.entropy()
self.assertEqual(entropy.numpy().dtype, self.scale.dtype)
def test_sample(self):
sample_shape = (50000,)
samples = self._dist.sample(sample_shape)
sample_values = samples.numpy()
self.assertEqual(samples.numpy().dtype, self.scale.dtype)
self.assertEqual(
tuple(samples.shape), tuple(self._dist._extend_shape(sample_shape))
)
self.assertEqual(samples.shape, list(sample_shape + self.loc.shape))
self.assertEqual(sample_values.shape, sample_shape + self.loc.shape)
np.testing.assert_allclose(
sample_values.mean(axis=0),
scipy.stats.laplace.mean(self.loc, scale=self.scale),
rtol=0.2,
atol=0.0,
)
np.testing.assert_allclose(
sample_values.var(axis=0),
scipy.stats.laplace.var(self.loc, scale=self.scale),
rtol=0.1,
atol=0.0,
)
def _np_mean(self):
return self.loc
def _np_stddev(self):
return (2**0.5) * self.scale
def _np_variance(self):
stddev = (2**0.5) * self.scale
return np.power(stddev, 2)
def _np_entropy(self):
return scipy.stats.laplace.entropy(loc=self.loc, scale=self.scale)
@parameterize.place(config.DEVICES)
@parameterize.parameterize_cls(
(parameterize.TEST_CASE_NAME, 'loc', 'scale'),
[
('float', 1.0, 2.0),
('int', 3, 4),
],
)
class TestLaplaceKS(unittest.TestCase):
def setUp(self):
self._dist = paddle.distribution.Laplace(loc=self.loc, scale=self.scale)
def test_sample(self):
sample_shape = (20000,)
samples = self._dist.sample(sample_shape)
sample_values = samples.numpy()
self.assertTrue(self._kstest(self.loc, self.scale, sample_values))
def _kstest(self, loc, scale, samples):
# Uses the Kolmogorov-Smirnov test for goodness of fit.
ks, p_value = scipy.stats.kstest(
samples, scipy.stats.laplace(loc, scale=scale).cdf
)
return ks < 0.02
@parameterize.place(config.DEVICES)
@parameterize.parameterize_cls(
(parameterize.TEST_CASE_NAME, 'loc', 'scale', 'value'),
[
(
'value-float',
np.array([0.2, 0.3]),
np.array([2.0, 3.0]),
np.array([2.0, 5.0]),
),
(
'value-int',
np.array([0.2, 0.3]),
np.array([2.0, 3.0]),
np.array([2, 5]),
),
(
'value-multi-dim',
np.array([0.2, 0.3]),
np.array([2.0, 3.0]),
np.array([[4.0, 6], [8, 2]]),
),
],
)
class TestLaplacePDF(unittest.TestCase):
def setUp(self):
self._dist = paddle.distribution.Laplace(
loc=paddle.to_tensor(self.loc), scale=paddle.to_tensor(self.scale)
)
def test_prob(self):
np.testing.assert_allclose(
self._dist.prob(paddle.to_tensor(self.value)),
scipy.stats.laplace.pdf(self.value, self.loc, self.scale),
rtol=config.RTOL.get(str(self.loc.dtype)),
atol=config.ATOL.get(str(self.loc.dtype)),
)
def test_log_prob(self):
np.testing.assert_allclose(
self._dist.log_prob(paddle.to_tensor(self.value)),
scipy.stats.laplace.logpdf(self.value, self.loc, self.scale),
rtol=config.RTOL.get(str(self.loc.dtype)),
atol=config.ATOL.get(str(self.loc.dtype)),
)
def test_cdf(self):
np.testing.assert_allclose(
self._dist.cdf(paddle.to_tensor(self.value)),
scipy.stats.laplace.cdf(self.value, self.loc, self.scale),
rtol=config.RTOL.get(str(self.loc.dtype)),
atol=config.ATOL.get(str(self.loc.dtype)),
)
def test_icdf(self):
np.testing.assert_allclose(
self._dist.icdf(paddle.to_tensor(self.value)),
scipy.stats.laplace.ppf(self.value, self.loc, self.scale),
rtol=config.RTOL.get(str(self.loc.dtype)),
atol=config.ATOL.get(str(self.loc.dtype)),
)
@parameterize.place(config.DEVICES)
@parameterize.parameterize_cls(
(parameterize.TEST_CASE_NAME, 'loc1', 'scale1', 'loc2', 'scale2'),
[
(
'kl',
np.array([0.0]),
np.array([1.0]),
np.array([1.0]),
np.array([0.5]),
)
],
)
class TestLaplaceAndLaplaceKL(unittest.TestCase):
def setUp(self):
self._dist_1 = paddle.distribution.Laplace(
loc=paddle.to_tensor(self.loc1), scale=paddle.to_tensor(self.scale1)
)
self._dist_2 = paddle.distribution.Laplace(
loc=paddle.to_tensor(self.loc2), scale=paddle.to_tensor(self.scale2)
)
def test_kl_divergence(self):
np.testing.assert_allclose(
paddle.distribution.kl_divergence(self._dist_1, self._dist_2),
self._np_kl(),
atol=0,
rtol=0.50,
)
def _np_kl(self):
x = np.linspace(
scipy.stats.laplace.ppf(0.01), scipy.stats.laplace.ppf(0.99), 1000
)
d1 = scipy.stats.laplace.pdf(x, loc=0.0, scale=1.0)
d2 = scipy.stats.laplace.pdf(x, loc=1.0, scale=0.5)
return scipy.stats.entropy(d1, d2)
if __name__ == '__main__':
unittest.main()