base_controllers.py 文件源码

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

项目:deer 作者: VinF 项目源码 文件源码
def onEnd(self, agent):
        if (self._active == False):
            return

        bestIndex = np.argmax(self._validationScores)
        print("Best neural net obtained after {} epochs, with validation score {}".format(bestIndex+1, self._validationScores[bestIndex]))
        if self._testID != None:
            print("Test score of this neural net: {}".format(self._testScores[bestIndex]))

        try:
            os.mkdir("scores")
        except Exception:
            pass
        basename = "scores/" + self._filename
        joblib.dump({"vs": self._validationScores, "ts": self._testScores}, basename + "_scores.jldump")
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号