MathiasKB's Shortform

post by MathiasKB (MathiasKirkBonde) · 2024-09-13T09:21:56.981Z · LW · GW · 6 comments

Contents

6 comments

6 comments

Comments sorted by top scores.

comment by MathiasKB (MathiasKirkBonde) · 2024-09-13T09:21:57.176Z · LW(p) · GW(p)

With the release of openAI o1, I want to ask a question I've been wondering about for a few months.

Like the chinchilla paper, which estimated the optimal ratio of data to compute, are there any similar estimates for the optimal ratio of compute to spend on inference vs training?

In the release they show this chart:

The chart somewhat gets at what I want to know, but doesn't answer it completely. How much additional inference compute would I need a 1e25 o1-like model to perform as well as a one shotted 1e26?

Additionally, for some x number of queries, what is the optimal ratio of compute to spend on training versus inference? How does that change for different values of x?

Are there any public attempts at estimating this stuff? If so, where can I read about it?

Replies from: quetzal_rainbow, Vladimir_Nesov
comment by quetzal_rainbow · 2024-09-13T09:34:24.437Z · LW(p) · GW(p)

This, for example

Replies from: MathiasKirkBonde
comment by MathiasKB (MathiasKirkBonde) · 2024-09-13T09:39:29.330Z · LW(p) · GW(p)

Thanks!! this is exactly what I was looking for

comment by Vladimir_Nesov · 2024-09-13T15:05:46.760Z · LW(p) · GW(p)

The amount of inference compute isn't baked-in at pretraining time, so there is no tradeoff. You train the strongest model, then offer different ways of doing inference with it. Expensive inference probably wasn't offered before OpenAI o1 because it didn't work well enough to expect even a minimal viable number of customers who are willing to pay the inference premium. Many inference setups have significant fixed costs, you need sufficient demand for price per request to settle.

The plots show scaling across 2 orders of magnitude with no diminishing returns. Train-time compute is likely post-training, so it might still be much cheaper than pretraining, feasible to scale further if it doesn't crucially depend on the amount of human labeling. Test-time compute on one trace comes with a recommendation to cap reasoning tokens at 25K, so there might be 1-2 orders of magnitude more there with better context lengths. They are still not offering repeated sampling filtered by consensus or a reward model. If o1 proves sufficiently popular given its price, they might offer even more expensive options.

Replies from: MathiasKirkBonde
comment by MathiasKB (MathiasKirkBonde) · 2024-09-13T18:23:40.063Z · LW(p) · GW(p)

The amount of inference compute isn't baked-in at pretraining time, so there is no tradeoff.

This doesn't make sense to me.

In a subscription based model, for example, companies would want to provide users the strongest completions for the least amount of compute.

If they estimate customers in total will use 1 quadrillion tokens before the release of their next model, they have to decide how much of the compute they are going to be dedicating to training versus inference. As one changes the parameters (subscription price, anticipated users, fixed costs for a training run, etc.) you'd expect to find the optimal ratio to change.

Test-time compute on one trace comes with a recommendation to cap reasoning tokens at 25K, so there might be 1-2 orders of magnitude more there with better context lengths. They are still not offering repeated sampling filtered by consensus or a reward model. If o1 proves sufficiently popular given its price, they might offer even more expensive options.

Thanks, this is a really good find!

Replies from: Vladimir_Nesov
comment by Vladimir_Nesov · 2024-09-13T19:05:30.631Z · LW(p) · GW(p)

There are open weights Llama 3 models, using them doesn't involve paying for pretraining. The compute used in frontier models is determined by the size of the largest cluster with the latest AI accelerators that hyperscaler money can buy, subject to the time it takes the engineers to get used to the next level of scale, not by any tradeoff with cost of inference. Currently that's about 100K H100s. This is the sense in which there is no tradeoff.

If somehow each model needed to be pretrained for a specific inference setup with specific inference costs and for it alone, then there could've been a tradeoff, but there is no such correspondence. The same model that's used in a complicated costly inference heavy technique can also be used for the cheapest inference its number of active parameters allows. If progress slows down in a few years and it becomes technologically feasible to do pretraining runs that cost over $50bn, it will make sense to consider the shape of the resulting equilibrium and the largest scale of pretraining it endorses, but that's a very different world.