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


Python Agent.act方法代码示例

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


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

示例1: NormalARD

# 需要导入模块: from Agent import Agent [as 别名]
# 或者: from Agent.Agent import act [as 别名]
hyp = np.log(np.array([1, 1, 10]))
cov = NormalARD()
gp = GaussianProcess(lik, hyp, cov)
gp2 = GaussianProcess(lik, hyp, cov)

sig =np.ones((3,)) * 0.001
sig2 = np.ones((3,)) * 0.1
start_z = np.array([[0., 0., 0.]])
agent = Agent(gp, reward, sig, start_z)
agent2 = Agent(gp2, reward, sig2, start_z)
fig = plt.figure(figsize=(20,7), dpi=300)
zlim = (-10, 10, -10, 10)
for i in xrange(0, 1000):
    agent.observe()
    agent.decide()
    agent.act()
    agent2.observe()
    agent2.decide()
    agent2.act()

    t = agent.gp.Z[-1].flatten()[-1]
    a = [0] * 4
    a[0] = agent.gp.Z[-1].flatten()[0]
    a[1] = agent.gp.Z[-1].flatten()[1]
    a[2] = agent.gp.Z[-1].flatten()[0]
    a[3] = agent.gp.Z[-1].flatten()[1]
    extent = np.max(np.abs(a))
    lim = extent + 3 if extent > 10 else 10
    zlim = (-lim, lim, -lim, lim)
    fig.clf()
    ax1 = fig.add_subplot(1, 3, 1)
开发者ID:c0g,项目名称:PyAgent,代码行数:33,代码来源:wander.py


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