本文整理汇总了Python中pyll.scope.hyperopt_param函数的典型用法代码示例。如果您正苦于以下问题:Python hyperopt_param函数的具体用法?Python hyperopt_param怎么用?Python hyperopt_param使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了hyperopt_param函数的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: hp_pchoice
def hp_pchoice(label, p_options):
"""
label: string
p_options: list of (probability, option) pairs
"""
p, options = zip(*p_options)
n_options = len(options)
ch = scope.hyperopt_param(label, scope.categorical(p, upper=n_options))
return scope.switch(ch, *options)
开发者ID:proud,项目名称:hyperopt,代码行数:9,代码来源:pyll_utils.py
示例2: hp_pchoice
def hp_pchoice(label, p_options):
"""
label: string
p_options: list of (probability, option) pairs
"""
if not isinstance(label, basestring):
raise TypeError("require string label")
p, options = zip(*p_options)
n_options = len(options)
ch = scope.hyperopt_param(label, scope.categorical(p, upper=n_options))
return scope.switch(ch, *options)
开发者ID:hitesh915,项目名称:hyperopt,代码行数:11,代码来源:pyll_utils.py
示例3: hp_qlognormal
def hp_qlognormal(label, *args, **kwargs):
if not isinstance(label, basestring):
raise TypeError("require string label")
return scope.float(scope.hyperopt_param(label, scope.qlognormal(*args, **kwargs)))
开发者ID:hitesh915,项目名称:hyperopt,代码行数:4,代码来源:pyll_utils.py
示例4: hp_randint
def hp_randint(label, *args, **kwargs):
if not isinstance(label, basestring):
raise TypeError("require string label")
return scope.hyperopt_param(label, scope.randint(*args, **kwargs))
开发者ID:hitesh915,项目名称:hyperopt,代码行数:4,代码来源:pyll_utils.py
示例5: hp_choice
def hp_choice(label, options):
if not isinstance(label, basestring):
raise TypeError("require string label")
ch = scope.hyperopt_param(label, scope.randint(len(options)))
return scope.switch(ch, *options)
开发者ID:hitesh915,项目名称:hyperopt,代码行数:5,代码来源:pyll_utils.py
示例6: hp_loguniform
def hp_loguniform(label, *args, **kwargs):
if not isinstance(label, basestring):
raise TypeError('require string label')
return scope.float(
scope.hyperopt_param(label,
scope.loguniform(*args, **kwargs)))
开发者ID:claesenm,项目名称:optunity-benchmark,代码行数:6,代码来源:pyll_utils.py
示例7: hp_normal
def hp_normal(label, *args, **kwargs):
return scope.float(
scope.hyperopt_param(label,
scope.normal(*args, **kwargs)))
开发者ID:pstjohn,项目名称:hyperopt,代码行数:4,代码来源:pyll_utils.py
示例8: hp_qloguniform
def hp_qloguniform(label, *args, **kwargs):
return scope.float(
scope.hyperopt_param(label,
scope.qloguniform(*args, **kwargs)))
开发者ID:pstjohn,项目名称:hyperopt,代码行数:4,代码来源:pyll_utils.py
示例9: hp_quniform_int
def hp_quniform_int(label, *args, **kwargs):
return scope.int(
scope.hyperopt_param(label,
scope.quniform(*args, **kwargs)))
开发者ID:pstjohn,项目名称:hyperopt,代码行数:4,代码来源:pyll_utils.py
示例10: hp_randint
def hp_randint(label, *args, **kwargs):
return scope.hyperopt_param(label,
scope.randint(*args, **kwargs))
开发者ID:pstjohn,项目名称:hyperopt,代码行数:3,代码来源:pyll_utils.py
示例11: hp_choice
def hp_choice(label, options):
ch = scope.hyperopt_param(label,
scope.randint(len(options)))
return scope.switch(ch, *options)
开发者ID:pstjohn,项目名称:hyperopt,代码行数:4,代码来源:pyll_utils.py
注:本文中的pyll.scope.hyperopt_param函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论