当前位置: 首页>>代码示例>>Python>>正文


Python Rule.update_strength方法代码示例

本文整理汇总了Python中rule.Rule.update_strength方法的典型用法代码示例。如果您正苦于以下问题:Python Rule.update_strength方法的具体用法?Python Rule.update_strength怎么用?Python Rule.update_strength使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在rule.Rule的用法示例。


在下文中一共展示了Rule.update_strength方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: proposeRule

# 需要导入模块: from rule import Rule [as 别名]
# 或者: from rule.Rule import update_strength [as 别名]
    def proposeRule(self, facet, description, category, relation, oldCodelet):
        """Creates a proposed rule, and posts a rule-strength-tester codelet.

        The new codelet has urgency a function of the degree of conceptual-depth of the descriptions in the rule
        """
        from rule import Rule

        rule = Rule(facet, description, category, relation)
        rule.update_strength()
        if description and relation:
            depths = description.conceptualDepth + relation.conceptualDepth
            depths /= 200.0
            urgency = math.sqrt(depths) * 100.0
        else:
            urgency = 0
        self.newCodelet('rule-strength-tester', oldCodelet, urgency, rule)
开发者ID:jtauber,项目名称:co.py.cat,代码行数:18,代码来源:coderack.py


注:本文中的rule.Rule.update_strength方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。