本文主要是介绍莫凡强化学习,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
课程要求 - 强化学习 (Reinforcement Learning) | 莫烦Python (mofanpy.com)
DQN
Dueling DQN - 强化学习 (Reinforcement Learning) | 莫烦Python (mofanpy.com)
问题:
1.AttributeError: module 'tensorflow' has no attribute 'placeholder'等问题的解决
使用
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
替换
import tensorflow as tf
2.关于解决Tensorboard出现No dashboards are active for the current data set.问题
http://localhost:6006/
tensorboard --logdir=C:\Users\hearain\Desktop\reinstu\DQNdemo2
使用的tensorboard版本为2.0.1,使用的语句为:tensorboard --logdir=E:\asa\20201028;E:\asa\20201028为事件文件的上一级目录,可以是绝对路径,也可以是相对路径,都不带引号。
(1条消息) 关于解决Tensorboard出现No dashboards are active for the current data set.问题_我会像蜗牛一样努力的博客-CSDN博客
3. module 'tensorflow.compat.v1' has no attribute 'contrib'
module ‘tensorflow.compat.v1‘ has no attribute ‘contrib‘_赋雪的博客-CSDN博客
这篇关于莫凡强化学习的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!