-
Notifications
You must be signed in to change notification settings - Fork 442
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
[suggestion] Implement more algorithms #15
Comments
I am implementing the Bayesian Optimization algorithm using python. But I have encountered a question. Since I use the one_hot encoding to deal with the categorical parameters, and embed the integer and discrete parameters to continuous space, the final suggestion is different from the values which need to be used for training. For example:
and this is the intermediate result generated by the algorithm, which need to be used in the following iterations
this is the final result which is generated from the intermediate result
So my question is how can we store this intermediate result. And it would be nice if anyone could tell me the location of the scripts which calls the suggestion services (like generate_trials), so that the workflow is more @gaocegege @ddutta @YujiOshima |
@libbyandhelen Cool! |
@YujiOshima Thank you!
|
Welcome to open a WIP PR (work in progress PR) and let us see your work to guarantee that you are in the right way. |
I agree with @gaocegege welcome to open PR. For other questions.
|
FYI I added some possible algorithms in #15 (comment) |
I am now trying to add more kernels in Gaussian process and more types of acquisition functions. In this case, the service itself needs some parameters such as kernel type and acquisition function type. Dose the |
@libbyandhelen Yes, it is. The |
@YujiOshima Got it. I just pushed a commit to the pull request with one more GP kernel added and two more acquisition functions added. May I ask what is the next step, and how I should integrate it with the system? |
Hi guys, exploring katib looking for good first issue, is there something I can start with? |
Now I think we can close this issue since we have already implemented many algorithms. @Franky12 Thanks for your interest. If you want to contribute to katib, please have a look at our roadmap. |
katib has a extensible architecture and three search algorithms thanks to YujiOshima@:
And we could implement more algorithms based on the arch. It helps us to support more scenarios.
ref https://github.com/tobegit3hub/advisor#algorithms
/cc @ddutta
The text was updated successfully, but these errors were encountered: