Skip to content
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

For ensemble simulations, how do I set different parameter values for each run of the ensemble? #890

Open
TorkelE opened this issue Mar 21, 2025 · 0 comments

Comments

@TorkelE
Copy link
Member

TorkelE commented Mar 21, 2025

I try just following the tutorial, but adding a vector for the parameters as well, unfortunately that doesn't work:

using Optimization, OptimizationBBO, Random

Random.seed!(100)

rosenbrock(x, p) = (p[1] - x[1])^2 + p[2] * (x[2] - x[1]^2)^2
x0 = zeros(2)

optf = OptimizationFunction(rosenbrock, Optimization.AutoForwardDiff())
prob = OptimizationProblem(optf, x0, [1.0, 100.0])

ensembleprob = Optimization.EnsembleProblem(prob, [x0, x0 .+ rand(2)]) # Works
ensembleprob = Optimization.EnsembleProblem(prob, [x0, x0 .+ rand(2)], [[1.0, 100.0], [1.0, 101.0]]) # Errors
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant