-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
We are now getting a deprecation warning when using some of the linear models in this package, e.g. from the example:
n = 500
p = 5
X = randn(n, p)
y = 2 * (rand(n) .< 0.5) .- 1 # entries are +-1
λ = 0.5
logistic = LogisticRegression(λ)
theta = fit(logistic, X, y)
leads to:
Warning: f_tol is deprecated. Use f_abstol or f_reltol instead. The provided value (0.0001) will be used as f_reltol.
Metadata
Metadata
Assignees
Labels
No labels