Open aik7 opened 1 year ago
I fixed the above error by replacing ExaGlobal
by ExaGlobals
, but I got another error as shown below. @Jodasue, how should I fix this error?
Traceback (most recent call last):
File "/home/kagawa/anaconda3/envs/exarl/lib/python3.7/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/home/kagawa/anaconda3/envs/exarl/lib/python3.7/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "exarl/driver/__main__.py", line 29, in <module>
exa_learner = exarl.ExaLearner()
File "/home/kagawa/Projects/EXARL/exarl/base/learner_base.py", line 46, in __init__
self.agent, self.env, self.workflow = self.make(agent_id, env_id, workflow_id)
File "/home/kagawa/Projects/EXARL/exarl/base/learner_base.py", line 95, in make
agent = exarl.agents.make(agent_id, env=env, is_learner=ExaComm.is_learner())
File "/home/kagawa/Projects/EXARL/exarl/agents/registration.py", line 98, in make
return registry.make(id, **kwargs)
File "/home/kagawa/Projects/EXARL/exarl/agents/registration.py", line 58, in make
agent = spec.make(**kwargs)
File "/home/kagawa/Projects/EXARL/exarl/agents/registration.py", line 43, in make
agent = cls(**_kwargs)
TypeError: Can't instantiate abstract class KerasTD3 with abstract methods set_priorities
In the ddpg_debug branch, I ran the following command.
However, I got the following error. The TD3 code need to be updated.