-
Notifications
You must be signed in to change notification settings - Fork 54
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
Support for equality constraints #31
Comments
我认为在黑盒优化中,优化黑盒恒等约束是十分困难的。目前OpenBox不支持黑盒恒等约束。您可以尝试将恒等约束 最近,我们实现了一个新的功能以支持对输入超参数进行约束 (be455c2) ,并发布了一个新的版本 ( 此外,我想知道您的恒等约束是否是类似这样的形式: I think in black-box optimization, it's very hard to optimize black-box equality constraints. Currently OpenBox has no support for black-box equality constraints. You can try to convert the equality constraint Recently, we added a new feature to support constraints (conditions) between hyperparameters (be455c2) and released a new version ( Furthermore, I would like to know if your equality constraint is like |
If the constraint is like def sample_condition(config):
x3 = m - config['x1'] - config['x2']
return 0 <= x3 <= 1 |
请问你们支持恒等约束吗? 如果接受,该如何设置?
The text was updated successfully, but these errors were encountered: