本文整理汇总了Python中searcher.Searcher.move方法的典型用法代码示例。如果您正苦于以下问题:Python Searcher.move方法的具体用法?Python Searcher.move怎么用?Python Searcher.move使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类searcher.Searcher
的用法示例。
在下文中一共展示了Searcher.move方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: range
# 需要导入模块: from searcher import Searcher [as 别名]
# 或者: from searcher.Searcher import move [as 别名]
entity_results = []
captured_results = []
for trail in range(N_TRIALS):
# Set up the environment
env = Environment(ENV_SIZE, ENV_SIZE, N_PATCHES)
entities = random.randint(MIN_ENTITIES_PER_PATCH, MAX_ENTITIES_PER_PATCH)
for patch in env.children:
patch.create_entities(entities)
s = Searcher(x_pos=(env.length / 2.0),
y_pos=(env.width / 2.0),
parent=env)
for i in range(MAX_MOVES):
s.move()
entity = s.detect()
s.capture(entity)
entity_results.append(entities)
captured_results.append(len(s.captured))
# for k in range(len(entity_results)):
# print(entity_results[k], captured_results[k])
x = np.array(entity_results)
y = np.array(captured_results)
slope, intercept, r_value, p_value, slope_std_error = stats.linregress(x, y)
print "Slope, intercept:", slope, intercept
print "R-squared:", r_value**2