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


Python math.weighted_choice函数代码示例

本文整理汇总了Python中util.math.weighted_choice函数的典型用法代码示例。如果您正苦于以下问题:Python weighted_choice函数的具体用法?Python weighted_choice怎么用?Python weighted_choice使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: get_current_scaled_txouts

 def get_current_scaled_txouts(scale, trunc=0):
     txouts = node.get_current_txouts()
     total = sum(txouts.itervalues())
     results = dict((script, value*scale//total) for script, value in txouts.iteritems())
     if trunc > 0:
         total_random = 0
         random_set = set()
         for s in sorted(results, key=results.__getitem__):
             if results[s] >= trunc:
                 break
             total_random += results[s]
             random_set.add(s)
         if total_random:
             winner = math.weighted_choice((script, results[script]) for script in random_set)
             for script in random_set:
                 del results[script]
             results[winner] = total_random
     if sum(results.itervalues()) < int(scale):
         results[math.weighted_choice(results.iteritems())] += int(scale) - sum(results.itervalues())
     return results
开发者ID:MobiusL,项目名称:p2pool,代码行数:20,代码来源:web.py

示例2: act

 def act(self, state, actions) :        
     choice = weighted_choice([1.0-self.eps, self.eps])
     if choice == 0 : return actions[randint(0, len(actions)-1)]
     return self.argmax(state, actions)
开发者ID:struktured,项目名称:hungergames,代码行数:4,代码来源:policies.py


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