本文整理汇总了Python中LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python LOTHypothesis.__init__方法的具体用法?Python LOTHypothesis.__init__怎么用?Python LOTHypothesis.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis
的用法示例。
在下文中一共展示了LOTHypothesis.__init__方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, constant_sd=1.0, fit_only_once=True, **kwargs):
"""
:param constant_sd: The SD of our constants in the prior
:param fit_only_once: Do we fit multiple times or just take the first?
"""
LOTHypothesis.__init__(self, grammar, display='lambda x,'+','.join(CONSTANT_NAMES)+": %s", **kwargs)
self.constant_sd=constant_sd # also the prior SD
self.parameters = self.sample_constants()
self.fit_only_once = fit_only_once
示例2: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, ALPHA=0.9, **kwargs):
LOTHypothesis.__init__(self, grammar, **kwargs)
self.ALPHA = ALPHA
示例3: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, grammar=None, **kwargs):
LOTHypothesis.__init__(self, grammar, display="lambda : %s", **kwargs)
self.outlier = -1000 # for MultinomialLikelihood
示例4: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, **kwargs):
LOTHypothesis.__init__(self, grammar, display="lambda x,y: %s", **kwargs)
示例5: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, value=None, alpha=0.99, baserate=0.5):
LOTHypothesis.__init__(self, grammar, value=value, args=['S', 'x'], alpha=alpha, baserate=baserate)
示例6: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, **kwargs):
LOTHypothesis.__init__(self, grammar, **kwargs)
示例7: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, grammar, value=None, f=None, proposal_function=None, **kwargs):
LOTHypothesis.__init__(self,grammar,proposal_function=proposal_function, **kwargs)
if value is None: self.set_value(grammar.generate('WORD'), f)
else: self.set_value(value, f)
示例8: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, grammar, domain=100, noise=0.9, args=['n'], **kwargs):
LOTHypothesis.__init__(self, grammar, args=args, **kwargs)
self.domain = domain
self.noise = noise
示例9: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, grammar=grammar, **kwargs):
LOTHypothesis.__init__(self, grammar, display='lambda C : %s', maxnodes=200, **kwargs)
# self.outlier = -100 # for MultinomialLikelihoodLog
self.alphabet_size = len(TERMINALS)
示例10: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, value=None, alpha=0.99, baserate=0.5):
LOTHypothesis.__init__(self, grammar, value=value, display='lambda S, x: %s', alpha=alpha, baserate=baserate)
示例11: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, grammar=grammar, **kwargs):
LOTHypothesis.__init__(self, grammar=grammar, display="lambda x : %s", maxnodes=150, **kwargs)
示例12: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, *args, **kwargs ):
LOTHypothesis.__init__(self, grammar, display='lambda x,y: %s', **kwargs)
super(CRHypothesis, self).__init__(*args, **kwargs)
示例13: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, grammar=None, value=None, domain=100, **kwargs):
LOTHypothesis.__init__(self, grammar=grammar, value=value, args=[], **kwargs)
self.domain = domain
示例14: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, grammar, alpha=0.9, domain=100, **kwargs):
LOTHypothesis.__init__(self, grammar, args=[], **kwargs)
self.alpha = alpha
self.domain = domain
示例15: __init__
# 需要导入模块: from LOTlib.Hypotheses.LOTHypothesis import LOTHypothesis [as 别名]
# 或者: from LOTlib.Hypotheses.LOTHypothesis.LOTHypothesis import __init__ [as 别名]
def __init__(self, value=None, base_facts="", **kwargs):
self.base_facts = base_facts # must be set before initializer
LOTHypothesis.__init__(self, grammar, value=value, args=None, **kwargs)