[TD3]agent couldn't use the save method
Created by: dennislblog
The example agent (PARL/examples/TD3/mujoco_agent.py) you give raises an attributeError when I try to save the trained model. Its parent class is trying to call self.alg.learn_program
but parl.algorithms.TD3
hasn't defined this attribute. How should I get around with it?
File "C:\home\aistudio\work\rl\lessonM\train.py", line 63, in run_game
agent.save(save_dir + "model_run_{}.ckpt".format(run+1))
File "C:\Users\denni\Envs\imitate\lib\site-packages\parl\core\fluid\agent.py", line 154, in save
program = self.learn_program
AttributeError: 'Agent' object has no attribute 'learn_program'
Parl Version 1.3.2