experiment.py 文件源码

python
阅读 20 收藏 0 点赞 0 评论 0

项目:dueling-network 作者: musyoku 项目源码 文件源码
def plot_training_episode_highscore():
    pylab.clf()
    sns.set_context("poster")
    pylab.plot(0, 0)
    episodes = [0]
    highscore = [0]
    for n in xrange(len(csv_training_highscore)):
        params = csv_training_highscore[n]
        episodes.append(params[0])
        highscore.append(params[1])
    pylab.plot(episodes, highscore, sns.xkcd_rgb["windows blue"], lw=2)
    pylab.xlabel("episodes")
    pylab.ylabel("highscore")
    pylab.savefig("%s/training_episode_highscore.png" % args.plot_dir)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号