New Features
- easier global arguments for terms
python
GAM(s(0) + s(1), n_splines=10).fit(X, y)
will broadcast `n_splines=10` to all terms
Bug Fixes
- fixed inconsistencies in GAM instatiation, where
python
GAM(lam=0.6).gridsearch(X, y)
worked for multi-dimensional X
but not
python
GAM(lam=0.6).gridsearch(X, y)