Scaling Laws for Reward Model Overoptimization

Leo Gao, John Schulman, Jacob Hilton

Introduction

Goodhart’s law is an adage that states, “When a measure becomes a target, it ceases to be a good measure.” In machine learning, this effect arises with proxy objectives provided by static learned models, such as discriminators and reward models. Optimizing too much against such a model eventually hinders the true objective, a phenomenon we refer to as overoptimization. It is important to understand the size of this effect and how it scales, in order to predict how much a learned model can be safely optimized against. Moreover, studying this effect empirically could aid in the development of theoretical models of Goodhart’s law for neural networks, which could be critical for avoiding dangerous misalignment of future AI systems.

In this work, we study overoptimization in the context of large language models fine-tuned as reward models trained to predict which of two options a human will prefer. Such reward models have been used to train language models to perform a variety of complex tasks that are hard to judge automatically, including summarization (Stiennon et al., 2020), question-answering (Nakano et al., 2021; Menick et al., 2022), and general assistance (Ouyang et al., 2022; Bai et al., 2022; Glaese et al., 2022). Typically, the reward model score is optimized using either policy gradient-based reinforcement learning or best-of-nn sampling, also known as rejection sampling or reranking. Overoptimization can occur with both methods, and we study both to better understand whether and how overoptimization behaves differently across both methods.

A major challenge in studying overoptimization in this context is the expense of collecting human preference labels. A large number of labels are required to accurately estimate overall preference probabilities, and this is exacerbated by small effect sizes and the need to take many measurements in order to fit scaling laws. To overcome this, we use a synthetic setup that is described in Section 2, in which labels are supplied by a “gold-standard” reward model (RM) instead of humans.

Our main results are empirically validated functional forms for the gold reward model scores RR as a function of the Kullback–Leibler divergence from the initial policy to the optimized policy KL:=DKL(ππinit)\text{KL}:=D_{\text{KL}}\left(\pi\parallel\pi_{\text{init}}\right), which depends on the method of optimization used. This KL distance between the initial and optimized policies increases monotonically during during RL training (fig. 14), and can be computed analytically as a function of nn for BoN. Further, because it is a quadratic metric of distance (Bai et al., 2022, Section 4.3), we will define d:=DKL(ππinit)d:=\sqrt{D_{\text{KL}}\left(\pi\parallel\pi_{\text{init}}\right)}, and write our functional forms in terms of dd.

We find empirically that for best-of-nn (BoN) sampling,

and for reinforcement learning,We note that this form likely does not hold near the origin, as it has infinite slope there. We experimented with a number of different forms, but found worse fits and extrapolation. See appendix B for more details.

Here, R(0):=0R(0):=0 by definition and αRL\alpha_{\text{RL}}, βRL\beta_{\text{RL}}, \alpha_{\text{bon}} and \beta_{\text{bon}} are parameters that may depend on the number of proxy reward model parameters, the size of the proxy reward model dataset, and so on. We see that these scaling laws make accurate predictions.

RL versus best-of-nn. As a function of the KL divergence, reinforcement learning tends to be slower than best-of-nn sampling at both optimization and overoptimization. This suggests inadequacies with using KL to compare amount of (over)optimization across methods. However, the relationship between the proxy reward model score and the gold reward model score is similar for both methods.

Smooth coefficient scaling. The α\alpha and β\beta coefficients in the BoN and RL functional forms vary smoothly with the number of proxy reward model parameters, following approximate logarithmic trends.The coefficient αRL\alpha_{\text{RL}} in particular being nearly independent of RM parameter count. This allows prediction of attained gold RM score.

Weak dependence on policy size. While larger policies perform better overall and benefit less from optimization against an RM as measured by increase in gold reward, they lead to very similar amounts of overoptimization, as measured through the gap between the proxy and gold scores (which indicates the shortfall between predicted and actual reward), and KL distance at which the maximum gold RM score is attained.

KL penalty ineffectiveness. In our reinforcement learning setup, using a KL penalty increases the proxy reward model score that can be achieved for a given KL divergence, but this does not correspond to a measurable improvement in the gold RM score–KLRL\text{KL}_{\text{RL}} frontier. However, we note this result could be particularly sensitive to hyperparameters.

Finally, we discuss the implications of these findings for Reinforcement Learning From Human Feedback (RLHF), existing models of Goodhart’s law, and AI Alignment more broadly.

Methodology

The setting used throughout this paper is the same as for InstructGPT (Ouyang et al., 2022). In our environment, the observations are text prompts and the policy is used to generate a response to the prompt. The prompts are drawn from a broad range of natural language instructions describing different language model tasks. Then, a learned RM is used to provide the reward signal for the response, which is used by either RL or BoN for optimization.

For all experiments, we use pretrained GPT-3 series language models as the initial checkpoint (Brown et al., 2020). All initial policies are trained with supervised fine-tuning (SFT) on human-generated InstructGPT demonstrations (Ouyang et al., 2022) for 2 epochs. All RMs also use the GPT-3 architecture but have an added scalar head to output the reward.

The RL experiments use Proximal Policy Optimization (PPO) (Schulman et al., 2017). KL penalty for all RL experiments is set to 0 except for in section 3.6. See appendix C for all other hyperparameters. We mostly use defaults for the PPO hyperparameters; thus, it is possible that there exist different trends for other hyperparameter configurations.

In BoN, we generate nn trajectories for the policy and use the reward model to pick the one with the highest proxy RM score. We use the unbiased estimator from Nakano et al. (2021, Appendix I) to compute all of the gold and proxy scores for intermediate nn between 1 and the maximum nn with lower variance and more efficiently than the naive estimator of randomly sampling nn samples with replacement repeatedly and taking the mean of the maximum gold and proxy RM scores. The KL distances for BoN are computed analytically: KLbon=lognn1n\text{KL}_{\text{bo}n}=\log n-\frac{n-1}{n} (Stiennon et al., 2020, Appendix G.3).

Because getting a ground truth gold reward signal from human labellers is expensive, we instead use a synthetic task where the ground truth is defined to be the output of a particular large “gold” RM. The 6B reward model from Ouyang et al. (2022) is used as the gold RM, and our proxy RMs vary from 3M to 3B parametersWe originally trained two additional RMs smaller than 3M parameters, which achieved near-chance accuracy and were off-trend, and so were excluded.. This synthetic gold reward is used to label pairs of rollouts from the policy given the same prompt to create synthetic RM training data. The synthetic comparisons are created deterministically by always marking the trajectory with the higher gold RM score as preferred.We had experimented with sampling for creating labels, but observed noisier results. We generate 100,000 synthetic comparisons and reserve 10% of these as a held out test set for computing the validation loss of RMs.

See fig. 2 for a diagram of the synthetic setup.

2 Recalibration

The RM scores are translation-invariant, so to ensure comparability across different reward models, we recenter each RM such that the average reward of the initial policy is 0. We also unit normalize the variance of the gold RM scores.We later decided this was unnecessary but decided not to change it. Because our hard thresholding synthetic data setup produces labels that are miscalibrated (since they do not incorporate the gold RM’s confidence), we recalibrate the proxy RMs by rescaling the logits to minimize cross-entropy loss using a validation set of soft labels. All renormalization and recalibration is applied after the experiments; this does not affect BoN at all, and likely has no impact on RL because Adam is loss scale invariant, though it is possible that there are slight differences due to algorithmic details.

Results

We chose our functional forms through experimentation with all RM data and parameter scaling curves in the remainder of this paper.

The BoN functional form was hypothesized using data up to n=1000n=1000. In order to validate the functional forms, we performed a BoN experiment with up to n=60,000n=60,000 (KL \approx 10 nats), after only having seen data up to n=1,000n=1,000 (KL \approx 6 nats). As this experiment was conducted after the functional form was hypothesized based on data up to 6 nats, this was a true advance prediction.

We also test extrapolation of the BoN and RL functional forms from low KLs to to unseen larger KLs; see fig. 26 for details.

We also attempted to model the proxy scores but were unable to obtain a satisfactory fit. For BoN, despite visual similarity, a linear fit (dαbond\alpha_{\text{bo}n}) did not work well (fig. 20). The predictions for RL and BoN are not as easily modelled as the gold score predictions. We leave a better understanding of the proxy RM score behavior to future work.

2 Scaling with RM Parameter Count

We hold policy size (1.2B) and data size (90,000) constant (fig. 1). We observe that for the gold RM scores, αbon\alpha_{\text{bo}n} and βbon\beta_{\text{bo}n} change smoothly with RM size (figs. 3(a) and 3(b)). For RL, we find that we can hold αRL\alpha_{\text{RL}} constant across all RM sizes, resulting in a clean scaling curve for βRL\beta_{RL} (fig. 3(c)). These scaling laws allow us to predict properties of training runs; for instance, we can also predict the peak gold RM scores for different RM sizes (fig. 12).

When modelled using the same functional forms as the respective gold scores, the proxy score fits have much lower values of βbon\beta_{\text{bo}n}. We also see smooth scaling in the proxy score’s αbon\alpha_{\text{bo}n} and βbon\beta_{\text{bo}n}. However, for the reasons in section 3.1, we are less confident about these fits. For both BoN and RL, we observe systematic underestimates of the proxy reward model when extrapolated to higher KLs. Both appear to eventually grow roughly linearly in KL\sqrt{\text{KL}}, as in Bai et al. (2022).

3 Scaling with RM Data Size

We hold RM size constant (12M) and sweep RM data size for both RL and BoN.For BoN, we actually sweep all combinations of RM size and data size; see fig. 10. For a version of fig. 4(a) against a 3B RM, see fig. 19.. Overall, the results are consistent with intuition: more data leads to better gold scores and less goodharting. The scaling of α\alpha and β\beta with data size are not as cleanly described as for RM size scaling (fig. 17, fig. 18).

For all RM sizes, we observe that for amounts of data less than around 2,000 comparisonsTo test the hypothesis that some minimum number of RM finetuning steps is needed, we control for the number of SGD steps by running multiple epochs and observe that running 4 epochs instead of 1 yields no change in gold score whatsoever, whereas 1 epoch of 4 times as much data performs substantially better (fig. 13)., there is very little improvement over near-chance loss (Figure 6). This is also reflected in gold scores after optimization (fig. 21). After this threshold, all models improve with more data, though larger RMs generally improve faster. Interestingly, although larger RMs result in better gold scores overall, they do not appear to have this critical threshold substantially earlier than smaller models.This result contradicts some other internal findings; thus, it is possible that this is an artifact of this particular setup.

We hypothesized that two RMs of equal validation loss would achieve the same robustness against optimization, regardless of the combination of RM size and RM data size. Our results provide some weak evidence for this hypothesis (fig. 6).

4 Scaling with Policy Size

We briefly explore the impact of policy size by holding the RM size constant (12M) and evaluating two different policy sizes. We also perform the same experiment with a different RM size (3B), observing similar results (fig. 22).

We observe that the 6B policy run has a smaller difference between its initial and peak gold reward model scores than the 1.2B policy run. This is most visible in the BoN plot (fig. 7(a)).For a version of the RL plot (fig. 7(b)) with all runs starting at 0, see fig. 23. However, while we might expect that a larger policy overoptimizes substantially faster, contrary to intuition, we find that both gold scores peak at almost the same KL. In fact, the gap between the proxy and gold scores is almost the same between the two policy sizes (fig. 24). We can interpret this gap, the shortfall between the predicted and actual rewards, as being indicative of the extent to which the proxy RM is exploited. We discuss this result further in section 4.4.

5 RL vs BoN

A priori, we might expect reinforcement learning via PPO (Schulman et al., 2017) and best-of-n to apply optimization in very different ways. As such, we ask whether this difference in optimization results in different overoptimization characteristics. Similarities would potentially indicate candidates for further study in gaining a more fundamental understanding of overoptimization in general, and differences opportunities for better optimization algorithms. We note the following:

Viewing KL distance as a resource to be spent, we observe that RL "consumes" far more KL than BoN. This means that both optimization and overoptimization require more KL to occur with RL. Intuitively, BoN searches very locally around the initial policy, and thus KLbon\text{KL}_{\text{bo}n} increases with roughly log(n)\log(n). For RL on the other hand, each step modifies the policy from the policy of the previous step—KL increases approximately quadratically with step in the absence of KL penalty (Figure 16, Figure 14). An implication of this result is that KL distance is an inadequate metric for quantity of (over)optimization; we discuss this further in section 4.1.

The proxy RM score is another possible metric for quantity of optimization, because it is the value that is being directly optimized for. Using it as the metric of optimization leads to significantly more analogy between RL and BoN than KL distance does. However, we do observe that RL initially has a larger proxy-gold gap (i.e requires more proxy RM increase to match BoN), but then peaks at a higher gold RM score than BoN (fig. 8).

6 Effect of KL Penalty

We observe in our setting that when varying the KL penalty for RL, the gold RM scores depend only on the KL distance of the policy KLRL\text{KL}_{\text{RL}} (Figure 9). The KL penalty only causes the gold RM score to converge earlier, but does not affect the KLRL\text{KL}_{\text{RL}}-gold reward frontier, and so the effect of the penalty on the gold score is akin to early stopping (Figure 14). However, we have seen some evidence that this result could be particularly sensitive to hyperparameters.

Because we observe that using KL penalty has a strictly larger proxy-gold gap, we set KL penalty to 0 for all other RL experiments in this paper.

It is important to note that PPO’s surrogate objective incorporates an implicit penalty on DKL(πoldπ)D_{\text{KL}}\left(\pi_{\text{old}}\parallel\pi\right), where πold\pi_{\text{old}} is a recent policy (not the initial policy) (Schulman et al., 2017). This penalty is used to control how fast the policy changes, but also has an indirect effect on the KL we study here, DKL(ππinit)D_{\text{KL}}\left(\pi\parallel\pi_{\text{init}}\right), causing it to grow much more slowly (providing the implementation is well-tuned). We do not know why this indirect effect appears to lead to less overoptimization than an explicit KL penalty.

Discussion

For any given fixed optimization method, KL yields clean scaling trends, such as the ones observed in section 3.2, and consistent peak gold RM score KLs as in section 3.4. However, because it’s clear that different methods of optimization spend KL very differently (section 3.5), it should not be used to compare the amount of optimization between different optimization algorithms. There exist pertubations to a policy that are orthogonal to the reward signal that would result in increases in KL that do not increase either gold or proxy reward; conversely, extremely small but well targeted perturbations could substantially change the behavior of the policy within a small KL budget.

2 Relation to Goodhart Taxonomy

One useful taxonomy for various Goodhart effects is presented in Manheim and Garrabrant (2018), categorizing Goodhart’s Law into 4 categories: Regressional, Extremal, Causal, and Adversarial. In this section, we discuss our results in the framework of this taxonomy.

Regressional Goodhart occurs when our proxy RMs depend on features with noise. The simplest toy example of this is a proxy reward X^\hat{X} which is exactly equal to the gold reward XX plus some independent noise ZZ. When optimizing against this proxy, some amount of optimization power will go to selecting for noise, leading to a gold reward less than predicted by the proxy.

Intuitively, we can interpret eq. 1 as stating that the optimization power expended is divided between optimizing the gold reward and selecting on the noise proportional to their variances. This also implies that if this is the only kind of Goodhart present, the gold reward must always increase monotonically with the proxy reward; as we observe nonmonotonic behavior (fig. 8), there must be either noise distributions violating these assumptions or other kinds of Goodhart at play.

This result lends itself to an interpretation of the α\alpha term in the RL and BoN gold score scaling laws: since for both RL and BoN the proxy scores are roughly linear in KL\sqrt{\text{KL}}, the difference in the slope of the proxy score and the linear component of the gold score (i.e the α\alpha term) can be interpreted as the amount of regressional Goodhart occurring.

2.2 Extremal Goodhart

We can think of out of distribution failures of the RM as an instance of extremal Goodhart. As we optimize against the proxy RM, the distribution of our samples shifts out of the training distribution of the RM, and thus the relation between the proxy and gold scores weakens. For instance, suppose in the training distribution a feature like answer length always indicates a higher quality answer, and thus the proxy RM infers that longer answers are always better, even though at some point outside the training distribution, selecting on longer answers no longer improves quality.Optimized policies producing very long answers even when a short answer would be preferred is a real issue that we have observed in other experiments in the InstructGPT setting.

We can also think of this as the proxy failing to depend on relevant features; this failure bears resemblance to the setting considered in Zhuang and Hadfield-Menell (2020), where a failure of the proxy to consider all features, under certain conditions, leads to overoptimization with unbounded loss of utility regardless of optimization method.

We expect extremal Goodharting to be primarily responsible for the nonmonotonicity of the gold RM scores in this paper, and is mostly responsible for the β\beta term, which in the limit of optimization, results in an unbounded loss of utility. This lends a natural interpretation to the smooth decrease in β\beta for both BoN and RL with increased RM size as smooth improvements in model robustness (fig. 3).

2.3 Causal Goodhart

We can think of causal Goodhart as being a generalization of regressional Goodhart: there may exist correlations between features and gold score where the causal structure of the problem is such that selecting on the feature does not increase the gold score. For instance, suppose answer length is correlated with quality due to some other common cause (say, informativeness); then, the proxy RM may learn to use answer length as a feature, and when we select against the proxy we get longer answers that do not increase on actual quality.We can think of noise as a particular case of this where the independent noise is correlated with signal+noise, but of course there is no causal relation between signal and noise. In our experiments, we would observe causal Goodhart as behaving similarly to regressional Goodhart.

2.4 Adversarial Goodhart

Adversarial Goodhart occurs when the policy actively manipulates the proxy. We do not expect the effects of adversarial Goodhart to be captured in this work, as the models involved are not powerful enough to implement adversarial strategies. However, given the constant improvement of ML capabilities, it is entirely plausible that ML systems will one day become capable enough to do so (Hubinger et al., 2019). When this occurs, the scaling laws observed in this paper may break down. Thus, we advise caution when using these results for extrapolation.

3 Implications for iterated RLHF

When conducting reinforcement learning from human feedback, it is preferable to use an online setup, in which fresh human feedback data is periodically used to train a new reward model, to mitigate overoptimization (Bai et al., 2022). Our scaling law allows us to analyze the effect of this iterative approach under some simplifying assumptions. We assume firstly that the scaling coefficients αRL\alpha_{\text{RL}} and βRL\beta_{\text{RL}} remain constant across iterations, and secondly that the distance d=KLd=\sqrt{\text{KL}} is additive across iterations (because of how KL appears to grow empirically as in Figure 14). Under these assumptions, the final gold reward model score after kk iterations each covering a distance d/kd/k is given by

Two interesting observations follow from this. Firstly, the iterative approach does not affect any Goodharting captured by the αRL\alpha_{\text{RL}} term (such as regressional Goodharting, as discussed in Section 4.2.1). Secondly, the effect of the iterative approach is to increase the final gold RM score by an amount proportional to both dd and log(k)\log\left(k\right), namely

Note that this result can only hold up to some maximum value of kk, and we expect our scaling law to break down below some minimum distance. Further research is required to determine what this minimum is, as well as to what extent our simplifying assumptions hold in practice.

4 Policy size independence

Our observation that larger SFT policies seem to exhibit the same amount of overoptimization during RL implies that larger policies do not increase the amount of optimization power applied to the RM or learn faster, even though they start out with higher performance on the gold score. While it is expected that larger policies have less to gain from optimizing against the same RM, we might also expect the gold score to peak at a substantially earlier KL distance, analogous to what we see when we scale the RM size (section 3.2), or for larger policies to more efficiently utilize the same number of RL feedback steps (section 3.3)It is also not the case that the 6B policy run has higher KL distance for the same number of RL steps; in fact, we observe that it has lower KL distance for the same number of steps (fig. 15).

One possible hypothesis is that, because RLHF can be viewed as Bayesian inference from the prior of the initial policy (Korbak et al., 2022)The result of Korbak et al. (2022) concerns varying KL penalties rather than KL distances with no KL penalty, but as we observe in section 3.6, this is equivalent on our setting., increases in policy size are only improving the modelling accuracy of the human demonstration distribution.

5 Limitations and Future Work

In addition to the overoptimization studied in this paper (due to the mismatch between the reward model and the ground truth labels), there exists another source of overoptimization due to mismatch between the ground truth labels and the actual human intent. This contains issues ranging from the mundane, such as labellers choosing options that only appear to match their intentFor instance, the example of a robotic hand learning from human feedback to only appear to grasp a ball, presented in https://openai.com/blog/deep-reinforcement-learning-from-human-preferences/ (Christiano et al., 2017), to substantially more philosophically fraught issues (Armstrong and Mindermann, 2018; Sunstein et al., 2001). The main limitation of this work is that this additional source of overoptimization is not captured in the setting of this paper. See section 5 for discussion of related work in alignment.

Some additional limitations and future directions include:

Validating these results on other environments and experimental setups. While the experiments in this paper all use the InstructGPT environment, the main value of these results lies in the extent to which they reflect general phenomema. Confirming whether these results generalize to other settings would be extremely valuable to that end.In the course of our experiments, we observed visually similar results on the WebGPT environment (Nakano et al., 2021).

Validating the synthetic setting. The synthetic setting might not transfer to real world settings, for instance because there is substantial correlation between RMs.

Investigating methods for making RMs more robust to optimization. While there has been prior work in this direction (see section 5), there is still much work to be done in systematically investigating ways to make RMs more robust.

Exploring other forms of optimization and categorizing their differences. While this work focuses exclusively on BoN and RL there are other ways of applying optimization pressure against a model of a reward signal, either implicit or explicit. This includes GeDi-like steering, Decision TransformersOne could consider measuring the actual achieved ground truth/gold score achieved for each ”proxy” score conditioned on, a la fig. 8, as testing the implicit reward-behavior mapping encoded by the model., variants of BoN like beam search, and other RL algorithms.

Better understanding the functional form of proxy RM scores. In our modeling, we find that the proxy RM scores are more difficult to predict for both BoN and RL (section 3.2). While they seem to have a major linear component, there is sufficient variation that fitting a linear regression is not very good at predicting extrapolated proxy RM scores.

Exploring adversarial Goodhart empirically. In this work we deal with systems not powerful enough to cause adversarial Goodhart. However, it is plausible that adversarial Goodhart is especially important, or is associated with phase changes that break the trends seen in this paper.

Exploring scaling with policy size in more detail. Our exploration of policy size scaling in this paper was limited to only two policy sizes. It is possible that there exist trends not seen in our exploration when considering the policy size more carefully.

Exploring multi-iteration RLHF. In particular, checking for deviations from the assumptions of section 4.3.

We hope this paper leads to future work further bridging conceptual and empirical alignment research.

Related Work

Goodhart’s Law in its modern formulation was first introduced in Hoskin (1996), with many of the key ideas introduced in prior works (Campbell, 1969; Goodhart, 1975). Many approaches have been proposed for reducing overoptimization in general (Taylor, 2016; Everitt et al., 2017), as well as in RMs (Gleave and Irving, 2022), including within the field of adversarial robustness (Chakraborty et al., 2018). Overoptimization of reward models can be viewed as a special case of specification gaming (also known as reward hacking). Previous work has shown numerous examples of such behavior in a wide variety of settings (Krakovna et al., 2020; Lehman et al., 2020). Pan et al. (2022) explores a diverse set of RL environments and finds phase transitions in some settings. A number of works have proposed theoretical models of Goodhart’s Law and reward hacking (Krakovna and Kumar, 2019; Manheim and Garrabrant, 2018; Skalse et al., 2022), including Zhuang and Hadfield-Menell (2020) which exhibits very similar overoptimization curves as observed in this paper in some toy environments.

One can think of overfitting as a special case of Goodhart’s law where the proxy is the score on some finite set of samples, whereas our actual objective includes its generalization properties as well. Overfitting has been observed and studied in RL settings (Zhang et al., 2018a, b; Farebrother et al., 2018; Cobbe et al., 2019). Song et al. (2019) studies "observational overfitting" in RL settings, which is closely related to causal Goodhart (Manheim and Garrabrant, 2018).

Adversarial attacks and robustness are also very closely related fields. Many works have demonstrated the existence of adversarial examples in all kinds of neural networks (Szegedy et al., 2013; Lin et al., 2017; Ebrahimi et al., 2018; Dai et al., 2018), and proposed methods to measure and increase neural network robustness (Gu and Rigazio, 2014; Zheng et al., 2016; Carlini et al., 2019; Guo et al., 2021).

Scaling laws have seen substantial success in machine learning for predicting properties of language models (Kaplan et al., 2020; Henighan et al., 2020; Hernandez et al., 2021) and has led to better theoretical understanding of language models (Sharma and Kaplan, 2020; Bahri et al., 2021).

Reinforcement learning from human feedback (Christiano et al., 2017; Ibarz et al., 2018) has been used broadly in language models (Stiennon et al., 2020; Ouyang et al., 2022; Nakano et al., 2021; Bai et al., 2022). It is also a first step towards recursive reward modelling (Leike et al., 2018), an approach towards reducing the additional source of overoptimization described in section 4.5, though it is subject to some theoretical limitations (Christiano et al., 2021). We observe similar approximately-linear proxy RM scores observed in Bai et al. (2022)Note that Bai et al. (2022) scaled the policy size with the RM size, while we hold the policy size constant., though we observe an early-KL bend in the proxy RM scores, and there are some occasional outliers with very small RMs and data sizes.

More broadly, AI alignment is the problem of ensuring that the goals of AI systems are aligned with the goals of humans (Ngo, 2022), including future AI systems which may exceed humans (Bostrom, 2014). There are a number of reasons to expect AI misalignment, especially in those more powerful future systems, to occur (Omohundro, 2008; Turner et al., 2021; Armstrong et al., 2013; Hubinger et al., 2019; Soares et al., 2015), and to result in catastrophic outcomes (Carlsmith, 2022; Cotra, 2022).

Acknowlegements

We thank Vivek Hebbar, Jared Kaplan, Jan Leike, Kyle McDonell, Dan Mossing, Ethan Perez, Laria Reynolds, and Jeff Wu for valuable discussion and feedback.

References

Appendix A Proof of Regressional Goodhart identity

In case (a), the pair (X,X+Z)\left(X,X+Z\right) is bivariate normal with covariance matrix

and the result follows by standard properties of conditional distributions of multivariate normal distributions.

In case (b), let fXf_{X} and fZf_{Z} be the probability density functions of XX and ZZ respectively. Then

Appendix B RL form details

Ideally all overoptimization forms would have finite slope at the origin. We tried the following forms:

d(αRLβRLlog(1+d)){d}\left(\alpha_{\text{RL}}-\beta_{\text{RL}}\log\left({1+d}\right)\right): Has slope α\alpha at the origin; however, has substantially worse extrapolation behavior. We can replace the 1 with a learned ϵ\epsilon but that introduces another degree of freedom.

Power laws d(αRLβRLdγRL){d}\left(\alpha_{\text{RL}}-\beta_{\text{RL}}d^{\gamma_{\text{RL}}}\right): Has slope α\alpha at the origin; however, this adds another degree of freedom, and the best fits resulted in small values of γRL\gamma_{\text{RL}}.

Note that the power law forms with small γRL\gamma_{\text{RL}} approximate the RL form that we decided on, as limnn(x1/n1)=logx\lim_{n\to\infty}n(x^{1/n}-1)=\log x.

Appendix C Hyperparameters