Thanks for a great project. I'm using the benchmarking function in bayesmark/sklearn_func.py. This file defines several benchmark functions using sklearn. A "space" is defined for each function's hyperparameters. How is this "space" determined?
The user determines the space based on where they want more "search resolution". For instance, logit space will make algorithms more inclined to search near 0 and 1.
Thanks for a great project. I'm using the benchmarking function in
bayesmark/sklearn_func.py
. This file defines several benchmark functions usingsklearn
. A "space" is defined for each function's hyperparameters. How is this "space" determined?In particular, I'd like to know how {log, logit, bilog} is determined here. Is there anything that would help me?