-
Notifications
You must be signed in to change notification settings - Fork 58
Extended searchspace construction and input format support #278
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
Conversation
…rkhoven/kernel_tuner into searchspace_experiments
…s, improved comments and error reporting
|
kernel_tuner/hyper.py
Outdated
result_unique[config_id] = r | ||
return list(result_unique.values()), env | ||
|
||
if __name__ == "__main__": # TODO remove in production |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the status of the hyperparameter tuning code present in this branch? Should this be removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It will be superseded by the code in the hyperparametertuning
branch; I have removed the TODO.
…e possible, amended tests where necessary
|
This pull request implements the searchspace constructor with various builders .
In addition, it implements T1 and T4 input format support and lays the groundwork for hyperparameter tuning.
Python 3.9 support has been dropped due incompatibility with newer scipy versions and dependencies have been updated.