[Scipy-svn] r2261 - trunk/Lib/sandbox/models

scipy-svn at scipy.org scipy-svn at scipy.org
Thu Oct 12 03:06:09 EDT 2006


Author: timl
Date: 2006-10-12 02:06:02 -0500 (Thu, 12 Oct 2006)
New Revision: 2261

Modified:
   trunk/Lib/sandbox/models/glm.py
Log:
bugfix: GeneralizedLinearModel is now just Model

Modified: trunk/Lib/sandbox/models/glm.py
===================================================================
--- trunk/Lib/sandbox/models/glm.py	2006-10-12 07:04:38 UTC (rev 2260)
+++ trunk/Lib/sandbox/models/glm.py	2006-10-12 07:06:02 UTC (rev 2261)
@@ -41,7 +41,7 @@
         """
         Continue iterating, or has convergence been obtained?
         """
-        if self.iter >= GeneralizedLinearModel.niter:
+        if self.iter >= Model.niter:
             return False
 
         curdev = self.deviance(results=results)




More information about the Scipy-svn mailing list