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
SMAC3/smac/intensifier/successive_halving.py
Line 551 in d5d5456
Here all_keys is defined to be of the same length as configs. But here:
all_keys
configs
Line 556 in d5d5456
Changes are made to the configs. And here:
Line 561 in d5d5456
configs and all_keys are passed to the sort_by_crowding_distance() function, which are required to be of the same length. Am I missing something?
sort_by_crowding_distance()
I replaced
with
all_keys = [from_keys for _ in selected_configs] selected_configs = sort_by_crowding_distance(rh, selected_configs, all_keys)[:n_configs]
and it works fine
The text was updated successfully, but these errors were encountered:
You are correct, thanks for pointing this out!
Sorry, something went wrong.
helegraf
When branches are created from issues, their pull requests are automatically linked.
SMAC3/smac/intensifier/successive_halving.py
Line 551 in d5d5456
Here
all_keys
is defined to be of the same length asconfigs
. But here:SMAC3/smac/intensifier/successive_halving.py
Line 556 in d5d5456
Changes are made to the
configs
. And here:SMAC3/smac/intensifier/successive_halving.py
Line 561 in d5d5456
configs
andall_keys
are passed to thesort_by_crowding_distance()
function, which are required to be of the same length. Am I missing something?I replaced
SMAC3/smac/intensifier/successive_halving.py
Line 561 in d5d5456
with
and it works fine
The text was updated successfully, but these errors were encountered: