From 25bcf233f30bef9d33346fb2b64b8a89100aceca Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Thu, 16 May 2013 16:24:06 +0100 Subject: [PATCH] max_bound adjust --- GPy/core/transformations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/core/transformations.py b/GPy/core/transformations.py index 6e5741fe..f7e59ab6 100644 --- a/GPy/core/transformations.py +++ b/GPy/core/transformations.py @@ -39,7 +39,7 @@ class logexp(transformation): return '(+ve)' class logexp_clipped(transformation): - max_bound = 1e10 + max_bound = 1e300 min_bound = 1e-10 log_max_bound = np.log(max_bound) log_min_bound = np.log(min_bound)