YYYMarshal
Results
2
issues of
YYYMarshal
您好,我在学习 examples/tutorials/lesson5/ddpg 这一章节时,用PyCharm打开源码,会提示让 agent.py - Agent,algorithm.py - DDPG,model.py - Model ActorModel CriticModel,这五个类实现其基类的全部抽象函数,然后我分别将相应的函数实现后(函数体都是pass),运行 train.py,最后得到的 test reward 都是10 左右,即使将 TRAIN_EPISODE 调大之后得分也是 10 左右,但是不实现这五个类的全部抽象函数的话,得分是正常的,请问这是为什么呢?
Hello, I am a beginner in reinforcement learning. Recently, while reading "Learning Multi Level Hierarchies with Hindsight," I came across your PyTorch version of the code. However, I am unsure...