From 5f11d0e683cb619d5d660d16afe3e2c943ac95b6 Mon Sep 17 00:00:00 2001 From: juanitorduz Date: Sun, 5 May 2024 15:56:38 +0200 Subject: [PATCH] add licesnse --- numpyro/contrib/hsgp/approximation.py | 3 +++ numpyro/contrib/hsgp/laplacian.py | 3 +++ numpyro/contrib/hsgp/spectral_densities.py | 3 +++ test/contrib/hsgp/test_approximation.py | 3 +++ test/contrib/hsgp/test_laplacian.py | 3 +++ test/contrib/hsgp/test_spectral_densities.py | 3 +++ 6 files changed, 18 insertions(+) diff --git a/numpyro/contrib/hsgp/approximation.py b/numpyro/contrib/hsgp/approximation.py index d20fb96e4..57230389a 100644 --- a/numpyro/contrib/hsgp/approximation.py +++ b/numpyro/contrib/hsgp/approximation.py @@ -1,3 +1,6 @@ +# Copyright Contributors to the Pyro project. +# SPDX-License-Identifier: Apache-2.0 + """ This module contains the low-rank approximation functions of the Hilbert space Gaussian process. """ diff --git a/numpyro/contrib/hsgp/laplacian.py b/numpyro/contrib/hsgp/laplacian.py index e26f03069..17525284f 100644 --- a/numpyro/contrib/hsgp/laplacian.py +++ b/numpyro/contrib/hsgp/laplacian.py @@ -1,3 +1,6 @@ +# Copyright Contributors to the Pyro project. +# SPDX-License-Identifier: Apache-2.0 + """ This module contains functions for computing eigenvalues and eigenfunctions of the laplace operator. """ diff --git a/numpyro/contrib/hsgp/spectral_densities.py b/numpyro/contrib/hsgp/spectral_densities.py index 486231c64..c59acb8a7 100644 --- a/numpyro/contrib/hsgp/spectral_densities.py +++ b/numpyro/contrib/hsgp/spectral_densities.py @@ -1,3 +1,6 @@ +# Copyright Contributors to the Pyro project. +# SPDX-License-Identifier: Apache-2.0 + """ This module contains spectral densities for various kernel functions. """ diff --git a/test/contrib/hsgp/test_approximation.py b/test/contrib/hsgp/test_approximation.py index 2593cecbc..45ca135e1 100644 --- a/test/contrib/hsgp/test_approximation.py +++ b/test/contrib/hsgp/test_approximation.py @@ -1,3 +1,6 @@ +# Copyright Contributors to the Pyro project. +# SPDX-License-Identifier: Apache-2.0 + import pytest from jax import random diff --git a/test/contrib/hsgp/test_laplacian.py b/test/contrib/hsgp/test_laplacian.py index f0317bab6..2f32a8777 100644 --- a/test/contrib/hsgp/test_laplacian.py +++ b/test/contrib/hsgp/test_laplacian.py @@ -1,3 +1,6 @@ +# Copyright Contributors to the Pyro project. +# SPDX-License-Identifier: Apache-2.0 + import pytest import jax.numpy as jnp diff --git a/test/contrib/hsgp/test_spectral_densities.py b/test/contrib/hsgp/test_spectral_densities.py index 40a8dbaf1..7d68878fd 100644 --- a/test/contrib/hsgp/test_spectral_densities.py +++ b/test/contrib/hsgp/test_spectral_densities.py @@ -1,3 +1,6 @@ +# Copyright Contributors to the Pyro project. +# SPDX-License-Identifier: Apache-2.0 + import pytest import jax.numpy as jnp