-
Notifications
You must be signed in to change notification settings - Fork 115
Closed
Description
It seems that GLM models store the data that they are trained on, which I did not expect:
using GLM
using Distributions
data(N) = (rand(N, 2), rand(Bool, N))
Θ = GLM.glm(data(100)..., Distributions.Bernoulli(), GLM.LogitLink());
Base.summarysize(Θ) # 8968
Θ = GLM.glm(data(10000)..., Distributions.Bernoulli(), GLM.LogitLink());
Base.summarysize(Θ) # 800968What then is the protocol for serialising GLM models trained on large datasets?
Metadata
Metadata
Assignees
Labels
No labels