From 4819b76d36645a861b74f74952012e088eea488c Mon Sep 17 00:00:00 2001 From: Zhenwen Dai Date: Mon, 16 Nov 2015 22:07:45 +0000 Subject: [PATCH] increase default quadrature points --- GPy/kern/src/psi_comp/gaussherm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/kern/src/psi_comp/gaussherm.py b/GPy/kern/src/psi_comp/gaussherm.py index 35eab724..c491983b 100644 --- a/GPy/kern/src/psi_comp/gaussherm.py +++ b/GPy/kern/src/psi_comp/gaussherm.py @@ -16,7 +16,7 @@ from . import PSICOMP class PSICOMP_GH(PSICOMP): - def __init__(self, degree=5, cache_K=True): + def __init__(self, degree=11, cache_K=True): self.degree = degree self.cache_K = cache_K self.locs, self.weights = np.polynomial.hermite.hermgauss(degree)