Re: [R] High dimensional optimization in R

2018-12-01 Thread J C Nash
The postings about polyalgorithms don't mention that optimx has a tool called polyopt() for this. Though I included it in the package, it has not been widely tested or applied, and more experience with such approaches would certainly be of interest to a number of workers, though I suspect the

Re: [R] High dimensional optimization in R

2018-12-01 Thread Jeremie Juste
Hello, Genetic algorithm can prove handy as well here. see for instance https://cran.r-project.org/web/packages/GA/vignettes/GA.html with non-convex objective functions I usually try a genetic algorithm for a few rounds then finish using nlminb Best regards, Jeremie Marc Girondot via R-help

Re: [R] High dimensional optimization in R

2018-11-30 Thread Marc Girondot via R-help
I fit also model with many variables (>100) and I get good result when I mix several method iteratively, for example: 500 iterations of Nelder-Mead followed by 500 iterations of BFGS followed by 500 iterations of Nelder-Mead followed by 500 iterations of BFGS etc. until it stabilized. It can