From c72d2b99d99e8d97d827def1d3e180fc6d022165 Mon Sep 17 00:00:00 2001 From: Ricardo Andrade Date: Wed, 27 Mar 2013 13:52:51 +0000 Subject: [PATCH] print iteration number --- GPy/core/model.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GPy/core/model.py b/GPy/core/model.py index cc8ae2c4..0804f277 100644 --- a/GPy/core/model.py +++ b/GPy/core/model.py @@ -467,3 +467,5 @@ class model(parameterised): if ll_change < epsilon: stop = True iteration += 1 + if stop: + print "%s iterations." %iteration