-
Notifications
You must be signed in to change notification settings - Fork 227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Roadmap-ish stuff #662
Comments
I haven't followed Optim in ages (will dip back in occasionally when I need it for a new project or update an old one), so here's an incredibly naive "roadmap" question: what's the state of structured Hessians? E.g., for some problems it would be great to be able to provide the hessian in |
You should be able to do that. Can you show me a simple example? |
Haven't tried. I just remember the days when it wasn't possible, and a brief search of both the README and the documentation failed to turn up any hits for "sparse." That's the extent of my investigations (sorry, this was me being lazy). |
I’ll try to give an example. Just gotta find a problem with a Woodbury matrix hessian :) |
I havn't found anything yet, but googling gives me Hessian Avenue in Woodbury, NJ. Not quite what I was looking for, but ... :) |
Try f(x) = sum(abs2, x)^2 + (a'*x)^2 for vector using WoodburyMatrices
a = rand(10^6)
W = SymWoodbury(Diagonal(ones(10^6)), a, 1.0)
# After warmup
julia> @time W \ rand(10^6);
0.090865 seconds (23 allocations: 45.777 MiB, 75.45% gc time) |
Anyone make any progress on paralell NelderMead? @pkofod |
Not really. Do you have a specific use-case for it? I don't think it's too hard to implement, I just happen to have gradients available for most of the stuff I do, so I rarely use "vanilla" nelder mead. |
I am considering it as an option. I am working on a personal project of building a functional digital image correlation package, DIC.jl as a science project and a demonstration of capabilities for contracting Julia work. It works with Nelder Mead, but it takes about 45 seconds to finish for my demo case. I spent a few hours this morning building a gradient function. I made at least some progress on that, so I am going to pursue that for the short term. |
Documentation
Solvers (up for grabs if the person is willing to "maintain")
Cleanup
Stolen from #326
The text was updated successfully, but these errors were encountered: