Addressing Function Approximation Error in Actor-Critic Methods

Scott Fujimoto, Herke van Hoof, David Meger

Introduction

In reinforcement learning problems with discrete action spaces, the issue of value overestimation as a result of function approximation errors is well-studied. However, similar issues with actor-critic methods in continuous control domains have been largely left untouched. In this paper, we show overestimation bias and the accumulation of error in temporal difference methods are present in an actor-critic setting. Our proposed method addresses these issues, and greatly outperforms the current state of the art.

Overestimation bias is a property of Q-learning in which the maximization of a noisy value estimate induces a consistent overestimation (Thrun & Schwartz, 1993). In a function approximation setting, this noise is unavoidable given the imprecision of the estimator. This inaccuracy is further exaggerated by the nature of temporal difference learning (Sutton, 1988), in which an estimate of the value function is updated using the estimate of a subsequent state. This means using an imprecise estimate within each update will lead to an accumulation of error. Due to overestimation bias, this accumulated error can cause arbitrarily bad states to be estimated as high value, resulting in suboptimal policy updates and divergent behavior.

This paper begins by establishing this overestimation property is also present for deterministic policy gradients (Silver et al., 2014), in the continuous control setting. Furthermore, we find the ubiquitous solution in the discrete action setting, Double DQN (Van Hasselt et al., 2016), to be ineffective in an actor-critic setting. During training, Double DQN estimates the value of the current policy with a separate target value function, allowing actions to be evaluated without maximization bias. Unfortunately, due to the slow-changing policy in an actor-critic setting, the current and target value estimates remain too similar to avoid maximization bias. This can be dealt with by adapting an older variant, Double Q-learning (Van Hasselt, 2010), to an actor-critic format by using a pair of independently trained critics. While this allows for a less biased value estimation, even an unbiased estimate with high variance can still lead to future overestimations in local regions of state space, which in turn can negatively affect the global policy. To address this concern, we propose a clipped Double Q-learning variant which leverages the notion that a value estimate suffering from overestimation bias can be used as an approximate upper-bound to the true value estimate. This favors underestimations, which do not tend to be propagated during learning, as actions with low value estimates are avoided by the policy.

Given the connection of noise to overestimation bias, this paper contains a number of components that address variance reduction. First, we show that target networks, a common approach in deep Q-learning methods, are critical for variance reduction by reducing the accumulation of errors. Second, to address the coupling of value and policy, we propose delaying policy updates until the value estimate has converged. Finally, we introduce a novel regularization strategy, where a SARSA-style update bootstraps similar action estimates to further reduce variance.

Our modifications are applied to the state of the art actor-critic method for continuous control, Deep Deterministic Policy Gradient algorithm (DDPG) (Lillicrap et al., 2015), to form the Twin Delayed Deep Deterministic policy gradient algorithm (TD3), an actor-critic algorithm which considers the interplay between function approximation error in both policy and value updates. We evaluate our algorithm on seven continuous control domains from OpenAI gym (Brockman et al., 2016), where we outperform the state of the art by a wide margin.

Given the recent concerns in reproducibility (Henderson et al., 2017), we run our experiments across a large number of seeds with fair evaluation metrics, perform ablation studies across each contribution, and open source both our code and learning curves (https://github.com/sfujim/TD3).

Related Work

Function approximation error and its effect on bias and variance in reinforcement learning algorithms have been studied in prior works (Pendrith et al., 1997; Mannor et al., 2007). Our work focuses on two outcomes that occur as the result of estimation error, namely overestimation bias and a high variance build-up.

Several approaches exist to reduce the effects of overestimation bias due to function approximation and policy optimization in Q-learning. Double Q-learning uses two independent estimators to make unbiased value estimates (Van Hasselt, 2010; Van Hasselt et al., 2016). Other approaches have focused directly on reducing the variance (Anschel et al., 2017), minimizing over-fitting to early high variance estimates (Fox et al., 2016), or through corrective terms (Lee et al., 2013). Further, the variance of the value estimate has been considered directly for risk-aversion (Mannor & Tsitsiklis, 2011) and exploration (O’Donoghue et al., 2017), but without connection to overestimation bias.

The concern of variance due to the accumulation of error in temporal difference learning has been largely dealt with by either minimizing the size of errors at each time step or mixing off-policy and Monte-Carlo returns. Our work shows the importance of a standard technique, target networks, for the reduction of per-update error, and develops a regularization technique for the variance reduction by averaging over value estimates. Concurrently, Nachum et al. (2018) showed smoothed value functions could be used to train stochastic policies with reduced variance and improved performance. Methods with multi-step returns offer a trade-off between accumulated estimation bias and variance induced by the policy and the environment. These methods have been shown to be an effective approach, through importance sampling (Precup et al., 2001; Munos et al., 2016), distributed methods (Mnih et al., 2016; Espeholt et al., 2018), and approximate bounds (He et al., 2016). However, rather than provide a direct solution to the accumulation of error, these methods circumvent the problem by considering a longer horizon. Another approach is a reduction in the discount factor (Petrik & Scherrer, 2009), reducing the contribution of each error.

Our method builds on the Deterministic Policy Gradient algorithm (DPG) (Silver et al., 2014), an actor-critic method which uses a learned value estimate to train a deterministic policy. An extension of DPG to deep reinforcement learning, DDPG (Lillicrap et al., 2015), has shown to produce state of the art results with an efficient number of iterations. Orthogonal to our approach, recent improvements to DDPG include distributed methods (Popov et al., 2017), along with multi-step returns and prioritized experience replay (Schaul et al., 2016; Horgan et al., 2018), and distributional methods (Bellemare et al., 2017; Barth-Maron et al., 2018).

Background

Reinforcement learning considers the paradigm of an agent interacting with its environment with the aim of learning reward-maximizing behavior. At each discrete time step tt, with a given state sSs\in\mathcal{S}, the agent selects actions aAa\in\mathcal{A} with respect to its policy π:SA\pi:\mathcal{S}\rightarrow\mathcal{A}, receiving a reward rr and the new state of the environment ss^{\prime}. The return is defined as the discounted sum of rewards Rt=i=tTγitr(si,ai)R_{t}=\sum_{i=t}^{T}\gamma^{i-t}r(s_{i},a_{i}), where γ\gamma is a discount factor determining the priority of short-term rewards.

In Q-learning, the value function can be learned using temporal difference learning (Sutton, 1988; Watkins, 1989), an update rule based on the Bellman equation (Bellman, 1957). The Bellman equation is a fundamental relationship between the value of a state-action pair (s,a)(s,a) and the value of the subsequent state-action pair (s,a)(s^{\prime},a^{\prime}):

For a large state space, the value can be estimated with a differentiable function approximator Qθ(s,a)Q_{\theta}(s,a), with parameters θ\theta. In deep Q-learning (Mnih et al., 2015), the network is updated by using temporal difference learning with a secondary frozen target network Qθ(s,a)Q_{\theta^{\prime}}(s,a) to maintain a fixed objective yy over multiple updates:

where the actions are selected from a target actor network πϕ\pi_{\phi^{\prime}}. The weights of a target network are either updated periodically to exactly match the weights of the current network, or by some proportion τ\tau at each time step θτθ+(1τ)θ\theta^{\prime}\leftarrow\tau\theta+(1-\tau)\theta^{\prime}. This update can be applied in an off-policy fashion, sampling random mini-batches of transitions from an experience replay buffer (Lin, 1992).

Overestimation Bias

While in the discrete action setting overestimation bias is an obvious artifact from the analytical maximization, the presence and effects of overestimation bias is less clear in an actor-critic setting where the policy is updated via gradient descent. We begin by proving that the value estimate in deterministic policy gradients will be an overestimation under some basic assumptions in Section 4.1 and then propose a clipped variant of Double Q-learning in an actor-critic setting to reduce overestimation bias in Section 4.2.

In actor-critic methods the policy is updated with respect to the value estimates of an approximate critic. In this section we assume the policy is updated using the deterministic policy gradient, and show that the update induces overestimation in the value estimate. Given current policy parameters ϕ\phi, let ϕapprox\phi_{\textnormal{approx}} define the parameters from the actor update induced by the maximization of the approximate critic Qθ(s,a)Q_{\theta}(s,a) and ϕtrue\phi_{\textnormal{true}} the parameters from the hypothetical actor update with respect to the true underlying value function Qπ(s,a)Q^{\pi}(s,a) (which is not known during learning):

As the gradient direction is a local maximizer, there exists ϵ1\epsilon_{1} sufficiently small such that if αϵ1\alpha\leq\epsilon_{1} then the approximate value of πapprox\pi_{\textnormal{approx}} will be bounded below by the approximate value of πtrue\pi_{\textnormal{true}}:

Conversely, there exists ϵ2\epsilon_{2} sufficiently small such that if αϵ2\alpha\leq\epsilon_{2} then the true value of πapprox\pi_{\textnormal{approx}} will be bounded above by the true value of πtrue\pi_{\textnormal{true}}:

Although this overestimation may be minimal with each update, the presence of error raises two concerns. Firstly, the overestimation may develop into a more significant bias over many updates if left unchecked. Secondly, an inaccurate value estimate may lead to poor policy updates. This is particularly problematic because a feedback loop is created, in which suboptimal actions might be highly rated by the suboptimal critic, reinforcing the suboptimal action in the next policy update.

Does this theoretical overestimation occur in practice for state-of-the-art methods? We answer this question by plotting the value estimate of DDPG (Lillicrap et al., 2015) over time while it learns on the OpenAI gym environments Hopper-v1 and Walker2d-v1 (Brockman et al., 2016). In Figure 1, we graph the average value estimate over 10000 states and compare it to an estimate of the true value. The true value is estimated using the average discounted return over 1000 episodes following the current policy, starting from states sampled from the replay buffer. A very clear overestimation bias occurs from the learning procedure, which contrasts with the novel method that we describe in the following section, Clipped Double Q-learning, which greatly reduces overestimation by the critic.

2 Clipped Double Q-Learning for Actor-Critic

While several approaches to reducing overestimation bias have been proposed, we find them ineffective in an actor-critic setting. This section introduces a novel clipped variant of Double Q-learning (Van Hasselt, 2010), which can replace the critic in any actor-critic method.

In Double Q-learning, the greedy update is disentangled from the value function by maintaining two separate value estimates, each of which is used to update the other. If the value estimates are independent, they can be used to make unbiased estimates of the actions selected using the opposite value estimate. In Double DQN (Van Hasselt et al., 2016), the authors propose using the target network as one of the value estimates, and obtain a policy by greedy maximization of the current value network rather than the target network. In an actor-critic setting, an analogous update uses the current policy rather than the target policy in the learning target:

In practice however, we found that with the slow-changing policy in actor-critic, the current and target networks were too similar to make an independent estimation, and offered little improvement. Instead, the original Double Q-learning formulation can be used, with a pair of actors (πϕ1\pi_{\phi_{1}}, πϕ2\pi_{\phi_{2}}) and critics (Qθ1Q_{\theta_{1}}, Qθ2Q_{\theta_{2}}), where πϕ1\pi_{\phi_{1}} is optimized with respect to Qθ1Q_{\theta_{1}} and πϕ2\pi_{\phi_{2}} with respect to Qθ2Q_{\theta_{2}}:

We measure the overestimation bias in Figure 2, which demonstrates that the actor-critic Double DQN suffers from a similar overestimation as DDPG (as shown in Figure 1). While Double Q-learning is more effective, it does not entirely eliminate the overestimation. We further show this reduction is not sufficient experimentally in Section 6.1.

As πϕ1\pi_{\phi_{1}} optimizes with respect to Qθ1Q_{\theta_{1}}, using an independent estimate in the target update of Qθ1Q_{\theta_{1}} would avoid the bias introduced by the policy update. However the critics are not entirely independent, due to the use of the opposite critic in the learning targets, as well as the same replay buffer. As a result, for some states ss we will have Qθ2(s,πϕ1(s))>Qθ1(s,πϕ1(s))Q_{\theta_{2}}(s,\pi_{\phi_{1}}(s))>Q_{\theta_{1}}(s,\pi_{\phi_{1}}(s)). This is problematic because Qθ1(s,πϕ1(s))Q_{\theta_{1}}(s,\pi_{\phi_{1}}(s)) will generally overestimate the true value, and in certain areas of the state space the overestimation will be further exaggerated. To address this problem, we propose to simply upper-bound the less biased value estimate Qθ2Q_{\theta_{2}} by the biased estimate Qθ1Q_{\theta_{1}}. This results in taking the minimum between the two estimates, to give the target update of our Clipped Double Q-learning algorithm:

With Clipped Double Q-learning, the value target cannot introduce any additional overestimation over using the standard Q-learning target. While this update rule may induce an underestimation bias, this is far preferable to overestimation bias, as unlike overestimated actions, the value of underestimated actions will not be explicitly propagated through the policy update.

In implementation, computational costs can be reduced by using a single actor optimized with respect to Qθ1Q_{\theta_{1}}. We then use the same target y2=y1y_{2}=y_{1} for Qθ2Q_{\theta_{2}}. If Qθ2>Qθ1Q_{\theta_{2}}>Q_{\theta_{1}} then the update is identical to the standard update and induces no additional bias. If Qθ2<Qθ1Q_{\theta_{2}}<Q_{\theta_{1}}, this suggests overestimation has occurred and the value is reduced similar to Double Q-learning. A proof of convergence in the finite MDP setting follows from this intuition. We provide formal details and justification in the supplementary material.

A secondary benefit is that by treating the function approximation error as a random variable we can see that the minimum operator should provide higher value to states with lower variance estimation error, as the expected minimum of a set of random variables decreases as the variance of the random variables increases. This effect means that the minimization in Equation (10) will lead to a preference for states with low-variance value estimates, leading to safer policy updates with stable learning targets.

Addressing Variance

While Section 4 deals with the contribution of variance to overestimation bias, we also argue that variance itself should be directly addressed. Besides the impact on overestimation bias, high variance estimates provide a noisy gradient for the policy update. This is known to reduce learning speed (Sutton & Barto, 1998) as well as hurt performance in practice. In this section we emphasize the importance of minimizing error at each update, build the connection between target networks and estimation error and propose modifications to the learning procedure of actor-critic for variance reduction.

Due to the temporal difference update, where an estimate of the value function is built from an estimate of a subsequent state, there is a build up of error. While it is reasonable to expect small error for an individual update, these estimation errors can accumulate, resulting in the potential for large overestimation bias and suboptimal policy updates. This is exacerbated in a function approximation setting where the Bellman equation is never exactly satisfied, and each update leaves some amount of residual TD-error δ(s,a)\delta(s,a):

It can then be shown that rather than learning an estimate of the expected return, the value estimate approximates the expected return minus the expected discounted sum of future TD-errors:

If the value estimate is a function of future reward and estimation error, it follows that the variance of the estimate will be proportional to the variance of future reward and estimation error. Given a large discount factor γ\gamma, the variance can grow rapidly with each update if the error from each update is not tamed. Furthermore each gradient update only reduces error with respect to a small mini-batch which gives no guarantees about the size of errors in value estimates outside the mini-batch.

2 Target Networks and Delayed Policy Updates

In this section we examine the relationship between target networks and function approximation error, and show the use of a stable target reduces the growth of error. This insight allows us to consider the interplay between high variance estimates and policy performance, when designing reinforcement learning algorithms.

Target networks are a well-known tool to achieve stability in deep reinforcement learning. As deep function approximators require multiple gradient updates to converge, target networks provide a stable objective in the learning procedure, and allow a greater coverage of the training data. Without a fixed target, each update may leave residual error which will begin to accumulate. While the accumulation of error can be detrimental in itself, when paired with a policy maximizing over the value estimate, it can result in wildly divergent values.

To provide some intuition, we examine the learning behavior with and without target networks on both the critic and actor in Figure 3, where we graph the value, in a similar manner to Figure 1, in the Hopper-v1 environment. In (a) we compare the behavior with a fixed policy and in (b) we examine the value estimates with a policy that continues to learn, trained with the current value estimate. The target networks use a slow-moving update rate, parametrized by τ\tau.

While updating the value estimate without target networks (τ=1\tau=1) increases the volatility, all update rates result in similar convergent behaviors when considering a fixed policy. However, when the policy is trained with the current value estimate, the use of fast-updating target networks results in highly divergent behavior.

When do actor-critic methods fail to learn? These results suggest that the divergence that occurs without target networks is the result of policy updates with a high variance value estimate. Figure 3, as well as Section 4, suggest failure can occur due to the interplay between the actor and critic updates. Value estimates diverge through overestimation when the policy is poor, and the policy will become poor if the value estimate itself is inaccurate.

If target networks can be used to reduce the error over multiple updates, and policy updates on high-error states cause divergent behavior, then the policy network should be updated at a lower frequency than the value network, to first minimize error before introducing a policy update. We propose delaying policy updates until the value error is as small as possible. The modification is to only update the policy and target networks after a fixed number of updates dd to the critic. To ensure the TD-error remains small, we update the target networks slowly θτθ+(1τ)θ\theta^{\prime}\leftarrow\tau\theta+(1-\tau)\theta^{\prime}.

By sufficiently delaying the policy updates we limit the likelihood of repeating updates with respect to an unchanged critic. The less frequent policy updates that do occur will use a value estimate with lower variance, and in principle, should result in higher quality policy updates. This creates a two-timescale algorithm, as often required for convergence in the linear setting (Konda & Tsitsiklis, 2003). The effectiveness of this strategy is captured by our empirical results presented in Section 6.1, which show an improvement in performance while using fewer policy updates.

3 Target Policy Smoothing Regularization

A concern with deterministic policies is they can overfit to narrow peaks in the value estimate. When updating the critic, a learning target using a deterministic policy is highly susceptible to inaccuracies induced by function approximation error, increasing the variance of the target. This induced variance can be reduced through regularization. We introduce a regularization strategy for deep value learning, target policy smoothing, which mimics the learning update from SARSA (Sutton & Barto, 1998). Our approach enforces the notion that similar actions should have similar value. While the function approximation does this implicitly, the relationship between similar actions can be forced explicitly by modifying the training procedure. We propose that fitting the value of a small area around the target action

would have the benefit of smoothing the value estimate by bootstrapping off of similar state-action value estimates. In practice, we can approximate this expectation over actions by adding a small amount of random noise to the target policy and averaging over mini-batches. This makes our modified target update:

where the added noise is clipped to keep the target close to the original action. The outcome is an algorithm reminiscent of Expected SARSA (Van Seijen et al., 2009), where the value estimate is instead learned off-policy and the noise added to the target policy is chosen independently of the exploration policy. The value estimate learned is with respect to a noisy policy defined by the parameter σ\sigma.

Intuitively, it is known that policies derived from SARSA value estimates tend to be safer, as they provide higher value to actions resistant to perturbations. Thus, this style of update can additionally lead to improvement in stochastic domains with failure cases. A similar idea was introduced concurrently by Nachum et al. (2018), smoothing over QθQ_{\theta}, rather than QθQ_{\theta^{\prime}}.

Experiments

We present the Twin Delayed Deep Deterministic policy gradient algorithm (TD3), which builds on the Deep Deterministic Policy Gradient algorithm (DDPG) (Lillicrap et al., 2015) by applying the modifications described in Sections 4.2, 5.2 and 5.3 to increase the stability and performance with consideration of function approximation error. TD3 maintains a pair of critics along with a single actor. For each time step, we update the pair of critics towards the minimum target value of actions selected by the target policy:

Every dd iterations, the policy is updated with respect to Qθ1Q_{\theta_{1}} following the deterministic policy gradient algorithm (Silver et al., 2014). TD3 is summarized in Algorithm 1.

To evaluate our algorithm, we measure its performance on the suite of MuJoCo continuous control tasks (Todorov et al., 2012), interfaced through OpenAI Gym (Brockman et al., 2016) (Figure 4). To allow for reproducible comparison, we use the original set of tasks from Brockman et al. (2016) with no modifications to the environment or reward.

For our implementation of DDPG (Lillicrap et al., 2015), we use a two layer feedforward neural network of 400 and 300 hidden nodes respectively, with rectified linear units (ReLU) between each layer for both the actor and critic, and a final tanh unit following the output of the actor. Unlike the original DDPG, the critic receives both the state and action as input to the first layer. Both network parameters are updated using Adam (Kingma & Ba, 2014) with a learning rate of 10310^{-3}. After each time step, the networks are trained with a mini-batch of a 100 transitions, sampled uniformly from a replay buffer containing the entire history of the agent.

The target policy smoothing is implemented by adding ϵN(0,0.2)\epsilon\sim\mathcal{N}(0,0.2) to the actions chosen by the target actor network, clipped to (0.5,0.5)(-0.5,0.5), delayed policy updates consists of only updating the actor and target critic network every dd iterations, with d=2d=2. While a larger dd would result in a larger benefit with respect to accumulating errors, for fair comparison, the critics are only trained once per time step, and training the actor for too few iterations would cripple learning. Both target networks are updated with τ=0.005\tau=0.005.

To remove the dependency on the initial parameters of the policy we use a purely exploratory policy for the first 10000 time steps of stable length environments (HalfCheetah-v1 and Ant-v1) and the first 1000 time steps for the remaining environments. Afterwards, we use an off-policy exploration strategy, adding Gaussian noise N(0,0.1)\mathcal{N}(0,0.1) to each action. Unlike the original implementation of DDPG, we used uncorrelated noise for exploration as we found noise drawn from the Ornstein-Uhlenbeck (Uhlenbeck & Ornstein, 1930) process offered no performance benefits.

Each task is run for 1 million time steps with evaluations every 5000 time steps, where each evaluation reports the average reward over 10 episodes with no exploration noise. Our results are reported over 10 random seeds of the Gym simulator and the network initialization.

We compare our algorithm against DDPG (Lillicrap et al., 2015) as well as the state of art policy gradient algorithms: PPO (Schulman et al., 2017), ACKTR (Wu et al., 2017) and TRPO (Schulman et al., 2015), as implemented by OpenAI’s baselines repository (Dhariwal et al., 2017), and SAC (Haarnoja et al., 2018), as implemented by the author’s GitHubSee the supplementary material for hyper-parameters and a discussion on the discrepancy in the reported results of SAC.. Additionally, we compare our method with our re-tuned version of DDPG, which includes all architecture and hyper-parameter modifications to DDPG without any of our proposed adjustments. A full comparison between our re-tuned version and the baselines DDPG is provided in the supplementary material.

Our results are presented in Table 1 and learning curves in Figure 5. TD3 matches or outperforms all other algorithms in both final performance and learning speed across all tasks.

2 Ablation Studies

We perform ablation studies to understand the contribution of each individual component: Clipped Double Q-learning (Section 4.2), delayed policy updates (Section 5.2) and target policy smoothing (Section 5.3). We present our results in Table 2 in which we compare the performance of removing each component from TD3 along with our modifications to the architecture and hyper-parameters. Additional learning curves can be found in the supplementary material.

The significance of each component varies task to task. While the addition of only a single component causes insignificant improvement in most cases, the addition of combinations performs at a much higher level. The full algorithm outperforms every other combination in most tasks. Although the actor is trained for only half the number of iterations, the inclusion of delayed policy update generally improves performance, while reducing training time.

We additionally compare the effectiveness of the actor-critic variants of Double Q-learning (Van Hasselt, 2010) and Double DQN (Van Hasselt et al., 2016), denoted DQ-AC and DDQN-AC respectively, in Table 2. For fairness in comparison, these methods also benefited from delayed policy updates, target policy smoothing and use our architecture and hyper-parameters. Both methods were shown to reduce overestimation bias less than Clipped Double Q-learning in Section 4. This is reflected empirically, as both methods result in insignificant improvements over TD3 - CDQ, with an exception in the Ant-v1 environment, which appears to benefit greatly from any overestimation reduction. As the inclusion of Clipped Double Q-learning into our full method outperforms both prior methods, this suggests that subduing the overestimations from the unbiased estimator is an effective measure to improve performance.

Conclusion

Overestimation has been identified as a key problem in value-based methods. In this paper, we establish overestimation bias is also problematic in actor-critic methods. We find the common solutions for reducing overestimation bias in deep Q-learning with discrete actions are ineffective in an actor-critic setting, and develop a novel variant of Double Q-learning which limits possible overestimation. Our results demonstrate that mitigating overestimation can greatly improve the performance of modern algorithms.

Due to the connection between noise and overestimation, we examine the accumulation of errors from temporal difference learning. Our work investigates the importance of a standard technique in deep reinforcement learning, target networks, and examines their role in limiting errors from imprecise function approximation and stochastic optimization. Finally, we introduce a SARSA-style regularization technique which modifies the temporal difference target to bootstrap off similar state-action pairs.

Taken together, these improvements define our proposed approach, the Twin Delayed Deep Deterministic policy gradient algorithm (TD3), which greatly improves both the learning speed and performance of DDPG in a number of challenging tasks in the continuous control setting. Our algorithm exceeds the performance of numerous state of the art algorithms. As our modifications are simple to implement, they can be easily added to any other actor-critic algorithm.

References

Appendix A Proof of Convergence of Clipped Double Q-Learning

In a version of Clipped Double Q-learning for a finite MDP setting, we maintain two tabular value estimates QAQ^{A}, QBQ^{B}. At each time step we select actions a=argmaxaQA(s,a)a^{*}=\operatorname*{argmax}_{a}Q^{A}(s,a) and then perform an update by setting target yy:

and update the value estimates with respect to the target and learning rate αt(s,a)\alpha_{t}(s,a):

In a finite MDP setting, Double Q-learning is often used to deal with noise induced by random rewards or state transitions, and so either QAQ^{A} or QBQ^{B} is updated randomly. However, in a function approximation setting, the interest may be more towards the approximation error and thus we can update both QAQ^{A} and QBQ^{B} at each iteration. The proof extends naturally to updating either randomly.

The proof borrows heavily from the proof of convergence of SARSA (Singh et al., 2000) as well as Double Q-learning (Van Hasselt, 2010). The proof of lemma 1 can be found in Singh et al. (2000), building on a proposition from Bertsekas (1995).

where xtXx_{t}\in X and t=0,1,2,...t=0,1,2,.... Let PtP_{t} be a sequence of increasing σ\sigma-fields such that ζ0\zeta_{0} and Δ0\Delta_{0} are P0P_{0}-measurable and ζt,Δt\zeta_{t},\Delta_{t} and Ft1F_{t-1} are PtP_{t}-measurable, t=1,2,...t=1,2,.... Assume that the following hold:

ζt(xt),tζt(xt)=,t(ζt(xt))2<\zeta_{t}(x_{t})\in,\sum_{t}\zeta_{t}(x_{t})=\infty,\sum_{t}(\zeta_{t}(x_{t}))^{2}<\infty with probability 11 and xxt:ζ(x)=0\forall x\neq x_{t}:\zeta(x)=0.

Var[Ft(xt)Pt]K(1+κΔt)2\left[F_{t}(x_{t})|P_{t}\right]\leq K(1+\kappa||\Delta_{t}||)^{2}, where KK is some constant

Where ||\cdot|| denotes the maximum norm. Then Δt\Delta_{t} converges to with probability 11.

Theorem 1. Given the following conditions:

Each state action pair is sampled an infinite number of times.

Both QAQ^{A} and QBQ^{B} receive an infinite number of updates.

The learning rates satisfy αt(s,a),tαt(s,a)=,t(αt(s,a))2<\alpha_{t}(s,a)\in,\sum_{t}\alpha_{t}(s,a)=\infty,\sum_{t}(\alpha_{t}(s,a))^{2}<\infty with probability 11 and αt(s,a)=0,(s,a)(st,at)\alpha_{t}(s,a)=0,\forall(s,a)\neq(s_{t},a_{t}).

Var[r(s,a)]<,s,a\left[r(s,a)\right]<\infty,\forall s,a.

Then Clipped Double Q-learning will converge to the optimal value function QQ^{*}, as defined by the Bellman optimality equation, with probability 11.

Proof of Theorem 1. We apply Lemma 1 with Pt={Q0A,Q0B,s0,a0,α0,r1,s1,...,st,at},X=S×A,Δt=QtAQ,ζt=αtP_{t}=\{Q^{A}_{0},Q^{B}_{0},s_{0},a_{0},\alpha_{0},r_{1},s_{1},...,s_{t},a_{t}\},X=S\times A,\Delta_{t}=Q^{A}_{t}-Q^{*},\zeta_{t}=\alpha_{t}.

First note that condition 1 and 4 of the lemma holds by the conditions 2 and 7 of the theorem respectively. Lemma condition 2 holds by the theorem condition 6 along with our selection of ζt=αt\zeta_{t}=\alpha_{t}.

Defining a=argmaxaQA(st+1,a)a^{*}=\operatorname*{argmax}_{a}Q^{A}(s_{t+1},a) we have

where we have defined Ft(st,at)F_{t}(s_{t},a_{t}) as:

Let y=rt+γmin(QtB(st+1,a),QtA(st+1,a))y=r_{t}+\gamma\min(Q^{B}_{t}(s_{t+1},a^{*}),Q^{A}_{t}(s_{t+1},a^{*})) and ΔtBA(st,at)=QtB(st,at)QtA(st,at)\Delta^{BA}_{t}(s_{t},a_{t})=Q^{B}_{t}(s_{t},a_{t})-Q^{A}_{t}(s_{t},a_{t}), where ctc_{t} converges to 0 if ΔBA\Delta^{BA} converges to 0. The update of ΔtBA\Delta^{BA}_{t} at time tt is the sum of updates of QAQ^{A} and QBQ^{B}:

Clearly ΔtBA\Delta^{BA}_{t} will converge to , which then shows we have satisfied condition 3 of lemma 1, implying that QA(st,at)Q^{A}(s_{t},a_{t}) converges to Qt(st,at)Q^{*}_{t}(s_{t},a_{t}). Similarly, we get convergence of QB(st,at)Q^{B}(s_{t},a_{t}) to the optimal vale function by choosing Δt=QtBQ\Delta_{t}=Q^{B}_{t}-Q^{*} and repeating the same arguments, thus proving theorem 1.

Appendix B Overestimation Bias in Deterministic Policy Gradients

If the gradients from the deterministic policy gradient update are unnormalized, this overestimation is still guaranteed to occur under a slightly stronger condition on the expectation of the value estimate. Assume the approximate value function is equal to the true value function, in expectation over the steady-state distribution, with respect to policy parameters between the original policy and in the direction of the true policy update:

Noting that ϕtrue\phi_{\textnormal{true}} maximizes the rate of change of the true value Δtrueπ=Qπ(s,πtrue(s))Qπ(s,πϕ(s))\Delta^{\pi}_{\textnormal{true}}=Q^{\pi}(s,\pi_{\textnormal{true}}(s))-Q^{\pi}(s,\pi_{\phi}(s)), ΔtrueπΔapproxπ\Delta^{\pi}_{\textnormal{true}}\geq\Delta^{\pi}_{\textnormal{approx}}. By the given condition LABEL:condition the maximal rate of change of the approximate value must be at least as great ΔapproxθΔtrueπ\Delta^{\theta}_{\textnormal{approx}}\geq\Delta^{\pi}_{\textnormal{true}}. Given Qθ(s,πϕ)=Qπ(s,πϕ)Q_{\theta}(s,\pi_{\phi})=Q^{\pi}(s,\pi_{\phi}) this implies Qθ(s,πapprox(s))Qπ(s,πtrue(s))Qπ(s,πapprox(s))Q_{\theta}(s,\pi_{\textnormal{approx}}(s))\geq Q^{\pi}(s,\pi_{\textnormal{true}}(s))\geq Q^{\pi}(s,\pi_{\textnormal{approx}}(s)), showing an overestimation of the value function.

Appendix C DDPG Network and Hyper-parameter Comparison

Appendix D Additional Implementation Details

For clarity in presentation, certain implementation details were omitted, which we describe here. For the most complete possible description of the algorithm, code can be found on our GitHub (https://github.com/sfujim/TD3).

Our implementation of both DDPG and TD3 follows a standard practice in deep Q-learning, in which the update differs for terminal transitions. For transitions where the episode terminates by reaching some failure state, and not due to the episode running until the max horizon, the value of Q(s,)Q(s,\cdot) is set to in the target yy:

For target policy smoothing (Section 5.3), the added noise is clipped to the range of possible actions, to avoid error introduced by using values of impossible actions:

Appendix E Soft Actor-Critic Implementation Details

For our implementation of Soft Actor-Critic (Haarnoja et al., 2018) we use the code provided by the author (https://github.com/haarnoja/sac), using the hyper-parameters described by the paper. We use a Gaussian mixture policy with 4 Gaussian distributions, except for the Reacher-v1 task, where we use a single Gaussian distribution due to numerical instability issues in the provided implementation. We use the environment-dependent reward scaling as described by the authors, multiplying the rewards by 3 for Walker2d-v1 and Ant-v1, and 1 for all remaining environments.

For fair comparison with our method, we train for only 1 iteration per time step, rather than the 4 iterations used by the results reported by the authors. This along with fewer total time steps should explain for the discrepancy in results on some of the environments. Additionally, we note this comparison is against a prior version of Soft Actor-Critic, while the most recent variant includes our Clipped Double Q-learning in the value update and produces competitive results to TD3 on most tasks.

Appendix F Additional Learning Curves