-
Notifications
You must be signed in to change notification settings - Fork 33
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
Generative Meta-Learning for Large-Scale Non-Convex Optimization (RL) #19
Comments
@kayuksel Thank you for bringing this to our attention, Kamer. I appreciate you taking the time to share the suggestions and links to your implementation of Fast CMA-ES and Tabu Search in PyTorch. We would be delighted to have your contributions in the form of a pull request. It would be great if you could submit a pull request for the suggested modifications, this way we can easily review your code and merge it into our repository. Additionally, we will check out the links you shared for Fast CMA-ES and Tabu Search and consider integrating them into the project as well. If you have any questions or need help with submitting a pull request, please don't hesitate to reach out. I will make sure to credit your contributions, and let you know if any issues arise or if we have any questions. Thank you again for your help. Sincerely, |
Portfolio optimization with integer constraint would be an interesting case, to be included in RLSolver. |
Tabu Search can probably allow integer constraints. It works by increasing or decreasing integer stocks by one at each iteration. |
OnePlusOne and its variants are performing very well. This is similar to what I've implemented in parallel as Tabu Search. |
Dear @kayuksel , your proposal is great! This "optimization solver" (RL as one tool) project would like to consider general optimization problems and search methods (including Tabu search and other optimizers). Integer constraints (to invest in non-fractional shares) in portfolio allocation/management is one typical example/application to include. Would be happy to work with you, and learn from you. |
Thanks! Here is the Tabu Search stuff that I've done previously (incl. Probabilistic Sharpe Ratio in PyTorch): tabu-search.zip I have also been working on a new loss function that considers eigenvector entropy or gini-index of the portfolio. This increments and decrements stocks in discrete steps, so we can easily convert that to integer portfolio allocation. We should probably also check how OnePlusOne variants are implemented in Nevergrad as they seem effective. |
Maybe @shixun404 would run your codes and see whether it is possible to borrow some ideas. |
Sounds good. I've also seen one of the targeted use-case is compressive sensing. Here is an application of Gen-Meta to low-rank matrix factorization (500K parameters) for creating a recommendation system on MovieLens 1M dataset, which may be relevant. |
Hello!
You can find it here: https://github.com/kayuksel/generative-opt
Just change the following lines for combinatorial optimization.
I also implemented Fast CMA-ES and Tabu Search in PyTorch.
Here is Fast CMA-ES: https://github.com/kayuksel/torch-tsp-es/
Let me know if Tabu Search would also be helpful, I can share.
Please to don't forget to contribute back, and cite when possible.
Sincerely,
Kamer
The text was updated successfully, but these errors were encountered: