-
Notifications
You must be signed in to change notification settings - Fork 11
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
Multistart optimization #57
Comments
Hi @amostof . Thanks for opening the issue. Unfortunately I'm struggling to follow the intent of your code, and I can't run it because there are various undefined functions ( |
My bad, I forgot to add the needed libraries. I edited the first message. In the code, I create a list of initial guesses for my parameter values, which later I use each of them with Adam optimizer to find the real parameters of the system; just a multistart optimization to circumvent local minima. I can do this on simple arrays but do not know how to implement them on |
Sorry for the slow response! It's been a busy couple of months and this dropped off my radar. Unfortunately this isn't completely straightforward to do with ParameterHandling as it currently stands, because it assumes that when you have the parameters in "flat" vector form (as you have in the columns of One option instead would be to construct the latin hypercube in a bounded hyper-rectangle in R^D, and use those values as the unconstrained values of your initialisation. Then you could just call Sorry again for the slow response -- let me know if this is of any use. |
Hello,
I have a multistart optimization code that generates initial parameter guesses
initialps
as you can see below and later used every row of them to solve a new optimization problem.My problem is that I do not know how to implement it on
p
when it is a named tuple in the format of,So my question is how I can do multistart optimization using
ParameterHandling
.The text was updated successfully, but these errors were encountered: