You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I create and fit an LDS with Poisson emissions, I can't pickle the resulting posterior object:
AttributeError: Can't pickle local object '_PoissonEmissionsMixin.__init__.<locals>.<lambda>'
This is bad-news-bears because we need a way of saving the output after fitting models. I think the cause is that you can't pickle lambda functions. Currently we use lambda functions in the init:
If I create and fit an LDS with Poisson emissions, I can't pickle the resulting posterior object:
This is bad-news-bears because we need a way of saving the output after fitting models. I think the cause is that you can't pickle lambda functions. Currently we use lambda functions in the init:
The solution here is probably to define the link/inverse links via
def.
The text was updated successfully, but these errors were encountered: