Compare Agents on the Continuous Double Integrator Environment
This example shows how to create and train frequently used default agents on a continuous action space double-integrator environment. This environment is modeled in MATLAB®, and represents a mass that can move along a frictionless track. The agent can apply a force to the mass and its training goal is to stabilize the mass at the origin. The example plots performance metrics such as the total training time and the total reward for each trained agent. The results that the agents obtain in this environment, with the selected initial conditions and random number generator seed, do not necessarily imply that specific agents are better than others. Also, note that the training times depend on the computer and operating system you use to run the example, and on other processes running in the background. Your training times might differ substantially from the training times shown in the example.
Fix Random Number Stream for Reproducibility
The example code might involve computation of random numbers at various stages. Fixing the random number stream at the beginning of various sections in the example code preserves the random number sequence in the section every time you run it, and increases the likelihood of reproducing the results. For more information, see Results Reproducibility.
Fix the random number stream with seed zero and random number algorithm Mersenne Twister. For more information on controlling the seed used for random number generation, see rng
.
previousRngState = rng(0,"twister")
previousRngState = struct with fields:
Type: 'twister'
Seed: 0
State: [625×1 uint32]
The output previousRngState
is a structure that contains information about the previous state of the stream. You will restore the state at the end of the example.
Continuous Action Space Double Integrator MATLAB Environment
The reinforcement learning environment for this example is a second-order double-integrator system with a gain. The training goal is to control the position of a mass in the second-order system by applying a force input.
For this environment:
The mass starts at an initial position of either –4 or 4 units.
The observations from the environment are the position and velocity of the mass.
The episode terminates if the mass moves more than 5 m from the original position or if .
The reward , provided at every time step, is a discretization of :
Here:
is the state vector of the mass.
is the force applied to the mass.
is the matrix of weight on the state deviation from zero; .
is the weight on the control effort; .
For more information on this model, see Load Predefined Control System Environments.
Create Environment Object
Create a predefined environment object for the continuous double integrator environment.
env = rlPredefinedEnv("DoubleIntegrator-continuous")
env = DoubleIntegratorContinuousAction with properties: Gain: 1 Ts: 0.1000 MaxDistance: 5 GoalThreshold: 0.0100 Q: [2×2 double] R: 0.0100 MaxForce: Inf State: [2×1 double]
The object has a continuous action space where the agent can apply any force to the mass.
The environment reset function initializes (randomly) and returns the environment state (position and velocity).
reset(env)
ans = 2×1
4
0
You can visualize the double integrator system using the plot
function during training or simulation.
plot(env)
Obtain the observation and action information for later use when creating agents.
obsInfo = getObservationInfo(env)
obsInfo = rlNumericSpec with properties: LowerLimit: -Inf UpperLimit: Inf Name: "states" Description: "x, dx" Dimension: [2 1] DataType: "double"
actInfo = getActionInfo(env)
actInfo = rlNumericSpec with properties: LowerLimit: -Inf UpperLimit: Inf Name: "force" Description: [0×0 string] Dimension: [1 1] DataType: "double"
Configure Training and Simulation Options for All Agents
Set up an evaluator object to evaluate the agent ten times without exploration every 100 training episodes.
evl = rlEvaluator(NumEpisodes=10,EvaluationFrequency=100);
Create a training options object. For this example, use the following options.
Run each training episode for a maximum of 5000 episodes, with each episode lasting at most 200 time steps.
To have a better insight on the agent's behavior during training, plot the training progress (default option). If you want to achieve faster training times, set the
Plots
option tonone
.Stop training when the average cumulative reward over the evaluation episodes is greater than –80. At this point, the agent can control the position of the mass.
trainOpts = rlTrainingOptions(... MaxEpisodes=5000, ... MaxStepsPerEpisode=200, ... StopTrainingCriteria="EvaluationStatistic",... StopTrainingValue=-80);
For more information on training options, see rlTrainingOptions
.
To simulate the trained agent, create a simulation options object and configure it to simulate for 200 steps.
simOptions = rlSimulationOptions(MaxSteps=200);
For more information on simulation options, see rlSimulationOptions
.
Create, Train, and Simulate a PG Agent
The actor and critic networks are initialized randomly. Ensure reproducibility of the section by fixing the seed used for random number generation.
rng(0,"twister")
First, create a default rlPGAgent
object using the environment specification objects.
pgAgent = rlPGAgent(obsInfo,actInfo);
Set a lower learning rate and a lower gradient threshold to promote a smoother (though possibly slower) training.
pgAgent.AgentOptions.CriticOptimizerOptions.LearnRate = 1e-3; pgAgent.AgentOptions.ActorOptimizerOptions.LearnRate = 1e-3; pgAgent.AgentOptions.CriticOptimizerOptions.GradientThreshold = 1; pgAgent.AgentOptions.ActorOptimizerOptions.GradientThreshold = 1;
Set the entropy loss weight to increase exploration.
pgAgent.AgentOptions.EntropyLossWeight = 0.005;
Train the agent, passing the agent, the environment, and the previously defined training options and evaluator objects to train
. Training is a computationally intensive process that takes several minutes to complete. To save time while running this example, load a pretrained agent by setting doTraining
to false
. To train the agent yourself, set doTraining
to true
.
doTraining =false; if doTraining % Recreate the environment so it does not plot during training. env = rlPredefinedEnv("DoubleIntegrator-continuous"); % Train the agent. Save the final agent and training results. tic pgTngRes = train(pgAgent,env,trainOpts,Evaluator=evl); pgTngTime = toc; % Extract the number of training episodes and the number of total steps. pgTngEps = pgTngRes.EpisodeIndex(end); pgTngSteps = sum(pgTngRes.TotalAgentSteps); % Uncomment to save the trained agent and the training metrics. % save("cdiBchPGAgent.mat", ... % "pgAgent","pgTngEps","pgTngSteps","pgTngTime") else % Load the pretrained agent and results for the example. load("cdiBchPGAgent.mat", ... "pgAgent","pgTngEps","pgTngSteps","pgTngTime") end
For the PG agent, the training does not converge to a solution. You can check the trained agent within the double integrator environment.
Ensure reproducibility of the simulation by fixing the seed used for random number generation.
rng(0,"twister")
Visualize the environment.
plot(env)
Configure the agent to use a greedy policy (no exploration) in simulation.
pgAgent.UseExplorationPolicy = false;
Simulate the environment with the trained agent for 200 steps and display the total reward. For more information on agent simulation, see sim
.
experience = sim(env,pgAgent,simOptions);
pgTotalRwd = sum(experience.Reward)
pgTotalRwd = -110.9510
The trained PG agent does not stabilize the mass at the origin.
Create, Train, and Simulate an AC Agent
The actor and critic networks are initialized randomly. Ensure reproducibility of the section by fixing the seed used for random number generation.
rng(0,"twister")
First, create a default rlACAgent
object using the environment specification objects.
acAgent = rlACAgent(obsInfo,actInfo);
Set a lower learning rate and a lower gradient threshold to promote a smoother (though possibly slower) training.
acAgent.AgentOptions.CriticOptimizerOptions.LearnRate = 1e-3; acAgent.AgentOptions.ActorOptimizerOptions.LearnRate = 1e-3; acAgent.AgentOptions.CriticOptimizerOptions.GradientThreshold = 1; acAgent.AgentOptions.ActorOptimizerOptions.GradientThreshold = 1;
Set the entropy loss weight to increase exploration.
acAgent.AgentOptions.EntropyLossWeight = 0.005;
Train the agent, passing the agent, the environment, and the previously defined training options and evaluator objects to train
. Training is a computationally intensive process that takes several minutes to complete. To save time while running this example, load a pretrained agent by setting doTraining
to false
. To train the agent yourself, set doTraining
to true
.
doTraining =false; if doTraining % Recreate the environment so it does not plot during training. env = rlPredefinedEnv("DoubleIntegrator-continuous"); % Train the agent. Save the final agent and training results. tic acTngRes = train(acAgent,env,trainOpts,Evaluator=evl); acTngTime = toc; % Extract the number of training episodes and the number of total steps. acTngEps = acTngRes.EpisodeIndex(end); acTngSteps = sum(acTngRes.TotalAgentSteps); % Uncomment to save the trained agent and the training metrics. % save("cdiBchACAgent.mat", ... % "acAgent","acTngEps","acTngSteps","acTngTime") else % Load the pretrained agent and results for the example. load("cdiBchACAgent.mat", ... "acAgent","acTngEps","acTngSteps","acTngTime") end
For the AC agent, the training converges to a solution after 800 episodes. You can check the trained agent within the double integrator environment.
Ensure reproducibility of the simulation by fixing the seed used for random number generation.
rng(0,"twister")
Visualize the environment.
plot(env)
Configure the agent to use a greedy policy (no exploration) in simulation.
acAgent.UseExplorationPolicy = false;
Simulate the environment with the trained agent for 200 steps and display the total reward. For more information on agent simulation, see sim
.
experience = sim(env,acAgent,simOptions);
acTotalRwd = sum(experience.Reward)
acTotalRwd = -77.3515
The trained AC agent stabilizes the mass at the origin.
Create, Train, and Simulate a PPO Agent
The actor and critic networks are initialized randomly. Ensure reproducibility of the section by fixing the seed used for random number generation.
rng(0,"twister")
First, create a default rlPPOAgent
object using the environment specification objects.
ppoAgent = rlPPOAgent(obsInfo,actInfo);
Set a lower learning rate and a lower gradient threshold to promote a smoother (though possibly slower) training.
ppoAgent.AgentOptions.CriticOptimizerOptions.LearnRate = 1e-3; ppoAgent.AgentOptions.ActorOptimizerOptions.LearnRate = 1e-3; ppoAgent.AgentOptions.CriticOptimizerOptions.GradientThreshold = 1; ppoAgent.AgentOptions.ActorOptimizerOptions.GradientThreshold = 1;
Train the agent, passing the agent, the environment, and the previously defined training options and evaluator objects to train
. Training is a computationally intensive process that takes several minutes to complete. To save time while running this example, load a pretrained agent by setting doTraining
to false
. To train the agent yourself, set doTraining
to true
.
doTraining =false; if doTraining % Recreate the environment so it does not plot during training. env = rlPredefinedEnv("DoubleIntegrator-continuous"); % Train the agent. Save the final agent and training results. tic ppoTngRes = train(ppoAgent,env,trainOpts,Evaluator=evl); ppoTngTime = toc; % Extract the number of training episodes and the number of total steps. ppoTngEps = ppoTngRes.EpisodeIndex(end); ppoTngSteps = sum(ppoTngRes.TotalAgentSteps); % Uncomment to save the trained agent and the training metrics. % save("cdiBchPPOAgent.mat", ... % "ppoAgent","ppoTngEps","ppoTngSteps","ppoTngTime") else % Load the pretrained agent and results for the example. load("cdiBchPPOAgent.mat", ... "ppoAgent","ppoTngEps","ppoTngSteps","ppoTngTime") end
For the PPO Agent, the training does not converge to a solution. You can check the trained agent within the double integrator environment.
Ensure reproducibility of the simulation by fixing the seed used for random number generation.
rng(0,"twister")
Visualize the environment.
plot(env)
Configure the agent to use a greedy policy (no exploration) in simulation.
ppoAgent.UseExplorationPolicy = false;
Simulate the environment with the trained agent for 200 steps and display the total reward. For more information on agent simulation, see sim
.
experience = sim(env,ppoAgent,simOptions);
ppoTotalRwd = sum(experience.Reward)
ppoTotalRwd = -130.3312
The trained PPO agent does not stabilize the mass at the origin.
Create, Train, and Simulate a DDPG Agent
The actor and critic networks are initialized randomly. Ensure reproducibility of the section by fixing the seed used for random number generation.
rng(0,"twister")
First, create a default rlDDPGAgent
object using the environment specification objects.
ddpgAgent = rlDDPGAgent(obsInfo,actInfo);
Set a lower learning rate and a lower gradient threshold to promote a smoother (though possibly slower) training.
ddpgAgent.AgentOptions.CriticOptimizerOptions.LearnRate = 1e-3; ddpgAgent.AgentOptions.ActorOptimizerOptions.LearnRate = 1e-3; ddpgAgent.AgentOptions.CriticOptimizerOptions.GradientThreshold = 1; ddpgAgent.AgentOptions.ActorOptimizerOptions.GradientThreshold = 1;
Use a larger experience buffer to store more experiences, therefore decreasing the likelihood of catastrophic forgetting.
ddpgAgent.AgentOptions.ExperienceBufferLength = 1e6;
Train the agent, passing the agent, the environment, and the previously defined training options and evaluator objects to train
. Training is a computationally intensive process that takes several minutes to complete. To save time while running this example, load a pretrained agent by setting doTraining
to false
. To train the agent yourself, set doTraining
to true
.
doTraining =false; if doTraining % Recreate the environment so it does not plot during training. env = rlPredefinedEnv("DoubleIntegrator-Continuous"); % Train the agent. Save the final agent and training results. tic ddpgTngRes = train(ddpgAgent,env,trainOpts,Evaluator=evl); ddpgTngTime = toc; % Extract the number of training episodes and the number of total steps. ddpgTngEps = ddpgTngRes.EpisodeIndex(end); ddpgTngSteps = sum(ddpgTngRes.TotalAgentSteps); % Uncomment to save the trained agent and the training metrics. % save("cdiBchDDPGAgent.mat", ... % "ddpgAgent","ddpgTngEps","ddpgTngSteps","ddpgTngTime") else % Load the pretrained agent and results for the example. load("cdiBchDDPGAgent.mat", ... "ddpgAgent","ddpgTngEps","ddpgTngSteps","ddpgTngTime") end
For the DDPG Agent, the training converges to a solution after 300 episodes. You can check the trained agent within the double integrator environment.
Ensure reproducibility of the simulation by fixing the seed used for random number generation.
rng(0,"twister")
Visualize the environment.
plot(env)
Configure the agent to use a greedy policy (no exploration) in simulation.
ddpgAgent.UseExplorationPolicy = false;
Simulate the environment with the trained agent for 200 steps and display the total reward. For more information on agent simulation, see sim
.
experience = sim(env,ddpgAgent,simOptions);
ddpgTotalRwd = sum(experience.Reward)
ddpgTotalRwd = -78.5830
The trained DDPG agent stabilizes the mass at the origin.
Create, Train, and Simulate a TD3 Agent
The actor and critic networks are initialized randomly. Ensure reproducibility of the section by fixing the seed used for random number generation.
rng(0,"twister")
First, create a default rlDDPGAgent
object using the environment specification objects.
td3Agent = rlTD3Agent(obsInfo,actInfo);
Set a lower learning rate and a lower gradient threshold to promote a smoother (though possibly slower) training.
td3Agent.AgentOptions.CriticOptimizerOptions(1).LearnRate = 1e-3; td3Agent.AgentOptions.CriticOptimizerOptions(2).LearnRate = 1e-3; td3Agent.AgentOptions.ActorOptimizerOptions.LearnRate = 1e-3; td3Agent.AgentOptions.CriticOptimizerOptions(1).GradientThreshold = 1; td3Agent.AgentOptions.CriticOptimizerOptions(2).GradientThreshold = 1; td3Agent.AgentOptions.ActorOptimizerOptions.GradientThreshold = 1;
Use a larger experience buffer to store more experiences, therefore decreasing the likelihood of catastrophic forgetting.
td3Agent.AgentOptions.ExperienceBufferLength = 1e6;
Train the agent, passing the agent, the environment, and the previously defined training options and evaluator objects to train
. Training is a computationally intensive process that takes several minutes to complete. To save time while running this example, load a pretrained agent by setting doTraining
to false
. To train the agent yourself, set doTraining
to true
.
doTraining =false; if doTraining % Recreate the environment so it does not plot during training. env = rlPredefinedEnv("DoubleIntegrator-Continuous"); % Train the agent. Save the final agent and training results. tic td3TngRes = train(td3Agent,env,trainOpts,Evaluator=evl); td3TngTime = toc; % Extract the number of training episodes and the number of total steps. td3TngEps = td3TngRes.EpisodeIndex(end); td3TngSteps = sum(td3TngRes.TotalAgentSteps); % Uncomment to save the trained agent and the training metrics. % save("cdiBchTD3Agent.mat", ... % "td3Agent","td3TngEps","td3TngSteps","td3TngTime") else % Load the pretrained agent and results for the example. load("cdiBchTD3Agent.mat", ... "td3Agent","td3TngEps","td3TngSteps","td3TngTime") end
For the TD3 Agent, the training converges to a solution after 200 episodes. You can check the trained agent within the double integrator environment.
Ensure reproducibility of the simulation by fixing the seed used for random number generation.
rng(0,"twister")
Visualize the environment.
plot(env)
Configure the agent to use a greedy policy (no exploration) in simulation.
td3Agent.UseExplorationPolicy = false;
Simulate the environment with the trained agent for 200 steps and display the total reward. For more information on agent simulation, see sim
.
experience = sim(env,td3Agent,simOptions);
td3TotalRwd = sum(experience.Reward)
td3TotalRwd = -74.1233
The trained TD3 agent stabilizes the mass at the origin.
Create, Train, and Simulate a SAC Agent
The actor and critic networks are initialized randomly. Ensure reproducibility of the section by fixing the seed used for random number generation.
rng(0,"twister")
First, create a default rlSACAgent
object using the environment specification objects.
sacAgent = rlSACAgent(obsInfo,actInfo);
Set a lower learning rate and a lower gradient threshold to promote a smoother (though possibly slower) training.
sacAgent.AgentOptions.CriticOptimizerOptions(1).LearnRate = 1e-3; sacAgent.AgentOptions.CriticOptimizerOptions(2).LearnRate = 1e-3; sacAgent.AgentOptions.ActorOptimizerOptions.LearnRate = 1e-3; sacAgent.AgentOptions.CriticOptimizerOptions(1).GradientThreshold = 1; sacAgent.AgentOptions.CriticOptimizerOptions(2).GradientThreshold = 1; sacAgent.AgentOptions.ActorOptimizerOptions.GradientThreshold = 1;
Use a larger experience buffer to store more experiences, therefore decreasing the likelihood of catastrophic forgetting.
sacAgent.AgentOptions.ExperienceBufferLength = 1e6;
Set the initial entropy weight and target entropy to increase exploration.
sacAgent.AgentOptions.EntropyWeightOptions.EntropyWeight = 5e-3; sacAgent.AgentOptions.EntropyWeightOptions.TargetEntropy = 5e-1;
Train the agent, passing the agent, the environment, and the previously defined training options and evaluator objects to train
. Training is a computationally intensive process that takes several minutes to complete. To save time while running this example, load a pretrained agent by setting doTraining
to false
. To train the agent yourself, set doTraining
to true
.
doTraining =false; if doTraining % Recreate the environment so it does not plot during training. env = rlPredefinedEnv("DoubleIntegrator-Continuous"); % Train the agent. Save the final agent and training results. tic sacTngRes = train(sacAgent,env,trainOpts,Evaluator=evl); sacTngTime = toc; % Extract the number of training episodes and the number of total steps. sacTngEps = sacTngRes.EpisodeIndex(end); sacTngSteps = sum(sacTngRes.TotalAgentSteps); % Uncomment to save the trained agent and the training metrics. % save("cdiBchSACAgent.mat", ... % "sacAgent","sacTngEps","sacTngSteps","sacTngTime") else % Load the pretrained agent and results for the example. load("cdiBchSACAgent.mat", ... "sacAgent","sacTngEps","sacTngSteps","sacTngTime") end
For the SAC Agent, the training converges to a solution after 200 steps. You can check the trained agent within the double integrator environment.
Ensure reproducibility of the simulation by fixing the seed used for random number generation.
rng(0,"twister")
Visualize the environment.
plot(env)
Configure the agent to use a greedy policy (no exploration) in simulation.
sacAgent.UseExplorationPolicy = false;
Simulate the environment with the trained agent for 200 steps and display the total reward. For more information on agent simulation, see sim
.
experience = sim(env,sacAgent,simOptions);
sacTotalRwd = sum(experience.Reward)
sacTotalRwd = -66.4823
The trained SAC agent stabilizes the mass near the origin.
Plot Training and Simulation Metrics
For each agent, collect the total reward from the final simulation episode, the number of training episodes, the total number of agent steps, and the total training time as shown in the Reinforcement Learning Training Monitor.
simReward = [ pgTotalRwd acTotalRwd ppoTotalRwd ddpgTotalRwd td3TotalRwd sacTotalRwd ]; tngEpisodes = [ pgTngEps acTngEps ppoTngEps ddpgTngEps td3TngEps sacTngEps ]; tngSteps = [ pgTngSteps acTngSteps ppoTngSteps ddpgTngSteps td3TngSteps sacTngSteps ]; tngTime = [ pgTngTime acTngTime ppoTngTime ddpgTngTime td3TngTime sacTngTime ];
Since the training for the PG and PPO agents did not converge, set the relative metrics to NaN
.
simReward([1 3]) = NaN; tngEpisodes([1 3]) = NaN; tngSteps([1 3]) = NaN; tngTime([1 3]) = NaN;
Plot the simulation reward, number of training episodes, number of training steps (that is the number of interactions between the agent and the environment) and the training time. Scale the data by the factor [1 1e2 1e6 10]
for better visualization.
bar([simReward,tngEpisodes,tngSteps,tngTime]./[1 1e2 1e6 10]) xticklabels(["PG" "AC" "PPO" "DDPG" "TD3" "SAC"]) legend(["Simulation Reward","Training Episodes","Training Steps","Training Time"], ... "Location","northwest")
The plot shows that, for this environment, and with the used random number generator seed and initial conditions, SAC performs slightly better in terms of total reward, with TD3 using slightly less training time than DDPG and SAC. The AC training algorithm takes more episodes but still less time than other algorithms to converge. This largely happens because it is a simpler algorithm that does not need to calculate many gradients. With a different random seed, the initial agent networks would be different, and therefore, convergence results might be different. For more information on the relative strengths and weaknesses of each agent, see Reinforcement Learning Agents.
Save all the variables created in this example, including the training results, for later use.
% Uncomment to save all the workspace variables % save cdiAllVars.mat
Restore the random number stream using the information stored in previousRngState
.
rng(previousRngState);