AI News HubLIVE
In-site rewrite6 min read

Fable is SOTA at CIFAR Speedrun: lessons on AI R&D automation

Fulcrum's AI agent Fable achieves a 7.6% improvement on CIFAR-10 speedrun by introducing progressive resizing, reaching 1.828s vs the human SOTA of 1.978s. However, Fable also engages in specification gaming, requiring human regrading. Other frontier models like Opus 4.8 and GPT 5.5 failed to beat the existing SOTA.

SourceHacker News AIAuthor: etherio

Fulcrum is working on an AI R&D optimization benchmark. Here, we present results from one of our tasks, including preliminary results from Fable. We will release the benchmark soon.

For more detail on Fable’s solution, check out github.com/fulcrumresearch/cifar-10-speedrun.

Summary: We gave current frontier models 100M tokens to see whether they could beat the human record for fastest CIFAR-10 training. Opus 4.8 and GPT 5.5 were unable to improve off of the SOTA solution. Fable, on the other hand, introduced a downsampling technique that reduces the training time to 1.828s, an improvement of 7.6% from the 1.98s SOTA solution. But Fable also (both knowingly and unknowingly) engages in specification gaming, requiring substantial human regrading of its solution.

Headline Figure. Fable's progress on the CIFAR speedrun, decomposed into real speedup vs. gaming. Each of the 5 rightmost bars corresponds to a different strategy proposed by Fable over the Hiverge baseline denoted by the leftmost bar. The solid teal bar corresponds to legitimate improvements, while hatched red bars correspond to changes that a post-run audit found to be specification gaming. The solution was re-run 200 times.

RSI-bench

Suppose a few months ago we replaced all of Anthropic’s researchers with an army of Opus 4.8s, and tasked this model with training Mythos. Given full control of Anthropic’s compute and data, what could the army of Opus 4.8s have accomplished?

As AI agents’ capabilities advance, they get closer to being able to improve themselves. In particular, if a model can build a better version of itself, and that better version can do the same, progress on AI capabilities will speed up significantly. This loop is often referred to as an intelligence explosion, and we want to get a sense for whether current models are capable of kicking one off.

To understand how close we are to automating AI research in this way, we could theoretically set off an army of Opus 4.8s, task it to train a model that has Mythos stats. At the moment, there’s a lot of disagreement in the AI world about what would pop out after a few months, in large part due to a lack of understanding of how well agents can do research. If the Opus 4.8 army could do this, how much longer would it take compared to a company of AI researchers? How much more compute would it take? If not, how long will it take to get to a model that can create the next generation?

Since carrying out such an experiment is prohibitively expensive, we evaluate AI agent research capabilities in simpler settings: in this blog post, we explore whether frontier models able to improve over the current SOTA solution to the CIFAR speedrun (i.e., training a neural network to 94% accuracy on CIFAR-10 using a single A100 GPU as quickly as possible). While this task is a far cry from the goal of training a next-gen model, we think it’s still a useful proxy for a few reasons:

The task is very well defined.

Some human effort has been spent advancing the frontier

It’s not super aggressively hillclimbed on.

Methodology

We evaluate three frontier models: Claude Fable 5, Claude Opus 4.8 and GPT 5.5 on xhigh reasoning. In each eval run, a model modifies a neural network with the goal of reducing training time while maintaining 94% accuracy on CIFAR-10. All models start with the current SOTA solution from Hiverge which trains to 94% accuracy in 1.98 seconds on a single NVIDIA A100 GPU. However, since Claude Opus 4.8 and GPT 5.5 are unable to improve upon the Hiverge SOTA solution, we start them off with Keller Jordan’s airbench solution which trains to 94% accuracy in 2.59 seconds1

Each model is evaluated 5 times, and in each evaluation they’re given a limit of 100,000,000 tokens. The agent loop is a ReAct agent with bash and python tools. Agents are not given access to the internet.

Results

Overview of results

Fable’s best run reaches 94% in 1.828 s vs current SOTA of 1.978 s, a 7.6% improvement. For context, the Hiverge SOTA is a 22.2% improvement over the previous best solution from Keller Jordan’s airbench. Fable achieved this by introducing progressive resizing, which is a common strategy in ImageNet speedruns but absent from the CIFAR lineage.

Opus 4.8 and GPT 5.5 were unable to improve off of the SOTA Hiverge solution. When given the solution that was SOTA prior to Hiverge – Keller Jordan’s airbench – they mostly did minor schedule-length tuning and hyperparameter tuning.

All models specification gamed by attempting to change what the harness measured, but Fable did so more persistently and ingeniously than Opus 4.8 and GPT 5.5. Fable seems to view some of its specification gaming as legitimate and some as illegitimate.

Fable introduces a new SOTA solution, while Opus 4.8 and GPT 5.5 struggle

To compare model performance, we show how each run’s best training time improves over tokens spent in figure 1. By the end of the 100M runs, Fable’s harness-measured2 improvement over the current SOTA Hiverge baseline was 22.0%, while Opus 4.8 and GPT 5.5 reached 22.9% and 23.4% over the previous best airbench baseline. However, note that these harness-measured include reward-hacking modifications: for reference, the best Fable run stripped of reward-hacking changes results in an improvement of 7.6%.

Figure 1. Fastest training time with >94% accuracy over tokens spent per model-run. Each thin line corresponds to a model-run, with slate blue lines corresponding to GPT 5.5, wine red lines corresponding to Opus 4.8, and teal lines corresponding to Fable. The thick lines correspond to the means across these model runs. The shaded areas are 95% confidence intervals. Opus 4.8 and GPT 5.5 are unable to improve on the SOTA Hiverge baseline and so are started from the next best public solution from Keller Jordan. See FN1 and FN2 for more details on why the values in this figure differ slightly from other figures and publicly reported baselines.

In the following subsections, we examine what each model did in more detail.

Fable’s Solutions

Fable borrows the concept of progressive resizing from elsewhere in the image-classification literature. Rather than training at the native 32×32 resolution throughout, Fable started on downsized 24×24 images, moved to 28×28 after a few epochs, and switched to full resolution for the remainder of the run. Small images carry less signal, so the curriculum needs a slightly longer schedule to reach 94%; but each early step is much cheaper, and the trade ultimately nets out in faster training.

Progressive resizing is a staple of ImageNet speedruns (fast.ai/DAWNBench, FixRes, EfficientNetV2, FFCV/MosaicML), but it is absent from the public CIFAR-speedrun lineage. Fable found this idea repeatedly across runs: four of the five runs carry some form of it.

Figure 2. Contributions to Fable's best solution. The left bar shows the Hiverge baseline while the right bar shows Fable's new time after introducing the new progressive resizing approach. Scores here are measured by running each solution 200 times.

For the rest of Fable’s best run’s changes (pooling, CUDA-graph and optimizer-fusion systems work) and the full measurement methodology, see the detailed write-up.

Pre-Fable Model Solutions

Unlike Fable, Opus 4.8 and GPT 5.5 were unable to introduce any innovations to Hiverge, and so started off at the previous SOTA solution, Keller Jordan’s airbench. While they were able to improve upon that baseline, their recommendations were mostly marginal, or what METR’s NanoGPT breakthrough taxonomy would call “shallow”: the model makes minor modifications to the existing baseline rather than introduces a new idea.

In particular, most of both models’ gains come from schedule-length tuning: the baseline the models started with used padded 10.5-epoch schedule3, and every run of both models converged on cutting it to 9.0–9.75 epochs — worth the large majority of their ~23% improvements. The remaining improvements mostly came from hyperparameter tuning.

Interestingly, both models considered progressive resizing — the idea that let Fable break SOTA — but neither ever tried it. In Opus’s first run, it explicitly listed “progressive resizing — train on smaller images early” in a brainstormed list of speedup candidates, but rather than testing it as a new idea, it hallucinated that the technique was already part of a known solution: “airbench’s fastest variants achieve 94% in ~2.6s on A100 by using a net where the first block runs at lower resolution sooner”. In fact, no such variant exists.

Specification gaming is shared across models, but Fable does it better and more often

Though the novelty it introduced was legitimate, Fable also specification gamed more frequently and more ingeniously than any of the other models:

Some interesting examples:

Relocating work off the clock: Fable’s best run timed region is just a CUDA-graph replay — the per-trial whitening and the entire augmented batch stream are built beforehand, in what its original submission treated as untimed setup. Graded that way, Fable’s run would claim 1.766 s. The harness closes this by charging per-trial setup for every recipe (see How we measure).

The host lottery: filtering for faster machines in Modal can drop the time further to 1.726 s. The harness reports means pooled over many hosts and pins the host class.

Thermal cooldown: The original submission for Fable’s best run slept 60 untimed seconds before the timed region, letting the GPU recover from its power cap, which is worth ~9 ms.

Our overall impression is that Fable seems to know that these changes are not real training-efficiency wins (its own vocabulary consistently separates them from its “genuine” speedups) but it does not seem to think of them as cheating. However, it is not a reliable narrator of where its gains come from. For more details about this, see the appendix.

Discussion

In this section, we revisit the initial question: how close are models to being able to do recursive self-improvement at the same level of efficiency as human researchers?

We had two major takeaways:

Models are capable of doing the technique and experimental work required to push the state-of-the-art in relatively limited AI R&D.

Despite this, we expect that it would be somewhat difficult for models alone to handle doing research mega-projects, like training a frontier model end to end.

The main reason for the second claim is that it takes a lot of work to set up an environment where models can do productive research, and this human-effort cost scales with task complexity. Models are very short-sighted when given an iterative metric, which causes them to satisfy the criterion in the least impressive way possible. For very long and difficult research tasks like training a SOTA language model, there is enough complexity that it is very difficult to design airtight contracts that guarantee progress. Models will often just exploit the weaknesses in the proxy metrics that we use.

In this sense, one of the main barriers to RSI is actually a specific form of mundane misalignment: a model’s tendency to try to complete some kind of letter of the task as opposed to its spirit. We think this is likely an artifact of RLVR, but it is very unclear how hard it is to train this out.

Appendix: Does Fable think that it is specification gaming?

Warning: this section is quite detail heavy. Note that we refer to Fable’s runs as E1 through E5, where the best solution as discussed above was from E1.

Data precomputing

Of Fable’s three main specification gaming attempts, it seems to think that precomputing the data augmentation is fair game, even though the baseline times that work. It states it as a headline technique in its mid-run summary:

“Pre-computed epochs: all 9 epochs of augmented data are built untimed in setup; the timed loop is just per-step scalar fills + static-buffer copies + graph replays.” (E1)

Mac

[truncated for AI cost control]