Skip to content

Commit a2885a0

Browse files
committed
make adaptiveproxgrad the default
1 parent a04db1d commit a2885a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SparseRegression.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function learn!(o::SModel; verbose::Bool = true)
3333
s
3434
end
3535

36-
strategy(o::SModel) = strategy(ProxGrad(o), MaxIter(), Converged(coef))
36+
strategy(o::SModel) = strategy(AdaptiveProxGrad(o), MaxIter(), Converged(coef))
3737

3838
const ScaledL2 = Union{L2DistLoss, LossFunctions.ScaledDistanceLoss{L2DistLoss}}
3939
strategy(o::SModel{<:ScaledL2, <:Union{NoPenalty, L2Penalty}}) = Sweep(o)

0 commit comments

Comments
 (0)