From fba72addf8c21d5a5f89cec137282be69d65e4d9 Mon Sep 17 00:00:00 2001 From: Denise Schmitz Date: Thu, 22 Aug 2024 14:12:02 -0700 Subject: [PATCH] fix bug where parameter callbacks is not set in LinearGAM constructor --- pygam/pygam.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pygam/pygam.py b/pygam/pygam.py index bebcef13..299c4b90 100644 --- a/pygam/pygam.py +++ b/pygam/pygam.py @@ -2461,6 +2461,7 @@ def __init__( terms=terms, distribution=NormalDist(scale=self.scale), link='identity', + callbacks=callbacks, max_iter=max_iter, tol=tol, fit_intercept=fit_intercept,