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
If I manually measure some data, that is, configuration-performance pairs, and load them into SMAC, is the following code correct?
for performance, config in config_perf_pairs: config_instance = Configuration(configuration_space=config_space, values=config) smac.runhistory.add(config=config_instance, cost=performance, seed=0)
The text was updated successfully, but these errors were encountered:
Hello @Mr-yang12345 you can use the ask-and-tell interface for that. In this case you would only use "tell()". See the warmstarting example for that.
Sorry, something went wrong.
daphne12345
No branches or pull requests
If I manually measure some data, that is, configuration-performance pairs, and load them into SMAC, is the following code correct?
The text was updated successfully, but these errors were encountered: