In tensor-house/supply-chain/supply-chain-reinforcement-learning.ipynb
the code
import ray.rllib.agents.ddpg as ddpg
gives the error
ModuleNotFoundError: No module named 'ray.rllib.agents'
After changing the line to
import ray.rllib.algorithms.ddpg as ddpg
there is still the problem that the config does not work
AttributeError: module 'ray.rllib.algorithms.ddpg' has no attribute 'DEFAULT_CONFIG'
I use
ray version 2.4.0
Python 3.10.9
Ubuntu
In tensor-house/supply-chain/supply-chain-reinforcement-learning.ipynb
the code
gives the error
After changing the line to
there is still the problem that the config does not work
I use
ray version 2.4.0
Python 3.10.9
Ubuntu