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
How it would be the input of the configuration item, if you have like 6000 input variables? Is there a simpler way to do it, without the Dict option.
configuration = Configuration([FloatParameter(-2.0, 2.0, 0.0, "i0"), FloatParameter(-2.0, 2.0, 0.0, "i1")], "rosenbrock_config")
The text was updated successfully, but these errors were encountered:
You would have to build your dictionary using a for loop, with a FloatParameter for each of your 6000 parameters
for
FloatParameter
Sorry, something went wrong.
No branches or pull requests
How it would be the input of the configuration item, if you have like 6000 input variables? Is there a simpler way to do it, without the Dict option.
The text was updated successfully, but these errors were encountered: