Agents
ICCP
contains a folder called agent
where all the logic and code about reinforcement learning agents may be found. An example is given below as to how you could import elements from agent
.
# main abstract class
from agent.Agent import Agent
# concrete implementation of a DQN agent
from agent.DQN_Agent import DQNAgent