We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I try just following the tutorial, but adding a vector for the parameters as well, unfortunately that doesn't work:
The text was updated successfully, but these errors were encountered: