EmpiricalRisks.jl icon indicating copy to clipboard operation
EmpiricalRisks.jl copied to clipboard

Julia implementation of predictors and loss functions for empirical risk minimization

Results 6 EmpiricalRisks.jl issues
Sort by recently updated
recently updated
newest added

I needed this to get EmpiricalRisks working for Julia 0.6.

I see there's a similar issue already for tagging a 0.4-compatible release, but I'll second that request now that tests pass on 0.5 after the commits I made in January....

release will change over time, but your REQUIRE file says this package supports julia 0.4 so it should continue to be tested

julia> using EmpiricalRisks ERROR: LoadError: LoadError: UndefVarError: FloatingPoint not defined in include_from_node1(::String) at .\loading.jl:488 (repeats 2 times) in eval(::Module, ::Any) at .\boot.jl:234 in require(::Symbol) at .\loading.jl:415 while loading C:\Users\pawn0002\.julia\v0.5\EmpiricalRisks\src\common.jl, in...

Master version is working fine on 0.4, but the one you get from Pkg.add is throwing lots of deprecation warnings.

For some regularizers, the proximal operator is a (short) iterative calculation that does not yield a defined gradient expression : L1Ball (for the true LASSO), Simplex, ... This may be...