-
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
[feature] Support log-uniform scale in search space definition #1207
Comments
Issue Label Bot is not confident enough to auto-label this issue. |
Issue-Label Bot is automatically applying the labels:
Please mark this comment with 👍 or 👎 to give our bot feedback! |
@gaocegege type ParameterDistribution string
const (
Uniform ParameterDistribution = "uniform"
LogUniform ParameterDistribution = "log_uniform"
Normal ParameterDistribution = "normal"
LogNormal ParameterDistribution = "log_normal"
Discrete ParameterDistribution = "discrete"
)
type FeasibleSpace struct {
Max string `json:"max,omitempty"`
Min string `json:"min,omitempty"`
List []string `json:"list,omitempty"`
Step string `json:"step,omitempty"`
Distribution ParameterDistribution `json:"distribution,omitempty"`
} |
SGTM. I think it is one possible approach. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
/lifecycle frozen |
/assign I will submit a small proposal for this feature. |
Any updates on this? Would love to be able to search over a log-uniform scale for tuning learning rates |
@yanwu2014 Thank you for being interested in this feature. I'm writing the proposal. But we need to cut a new Experiment API version (v1beta2) since we need to introduce significant and breaking changes. So it will take a little bit of time to release. |
That's great, thanks so much :)! |
/area gsoc |
/kind feature
Describe the solution you'd like
[A clear and concise description of what you want to happen.]
#1205 (comment)
Anything else you would like to add:
[Miscellaneous information that will assist in solving the issue.]
The text was updated successfully, but these errors were encountered: