From 4f7657660560f0c61b62d4df7f2214200c7b39f0 Mon Sep 17 00:00:00 2001 From: AlexAndorra Date: Mon, 10 Jun 2024 14:31:27 -0300 Subject: [PATCH] Compute S with more generic formula for radius --- pymc/gp/hsgp_approx.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pymc/gp/hsgp_approx.py b/pymc/gp/hsgp_approx.py index f04af07f251..760262276a0 100644 --- a/pymc/gp/hsgp_approx.py +++ b/pymc/gp/hsgp_approx.py @@ -31,8 +31,8 @@ def set_boundary(X: TensorLike, c: numbers.Real | TensorLike) -> np.ndarray: - """Set the boundary using `X` and `c`. `X` can be centered around zero but doesn't have to be, - and `c` is usually a scalar multiplier greater than 1.0, but it may also be one value per + """Set the boundary using `X` and `c`. `X` can be centered around zero but doesn't have to be, + and `c` is usually a scalar multiplier greater than 1.0, but it may also be one value per dimension or column of `X`. """ # compute radius. Works whether X is 0-centered or not