← All AI Engineer talks

AI Engineer World's Fair 2026

Adaption Labs — Gradient-Free Continual Learning

Sara Hooker· Co-founder, Adaption20:51

Read the talk

Who Gets to Build Frontier AI?

Automating training recipes and changing where compute pays off could widen participation in frontier AI, but data quality, model size, safety and access still shape the opportunity.

From a talk by Sara Hooker

Before you start: Basic familiarity with model training, inference and hyperparameters will help; no knowledge of AutoScientist is required.

The narrow path into discovery

Who gets to ask questions at the frontier of AI—and who first has to earn access to the tools? Sara Hooker opens with that problem. Computer science is young enough that she describes its history as roughly two generations of researchers, yet the institutions and subjects that define its frontier have already changed dramatically. Her wartime framing needs one historical distinction: the first transistor was demonstrated in 1947, after World War II, and Manchester’s experimental transistor computer followed in 1953.

The longer history of science offers a parallel. Wealthy independent investigators could once pursue discovery as gentleman scientists. Scientific associations, including the Royal Society in the seventeenth century, helped establish a more organized research community; full-time scientific work became a profession. Institutions made sustained discovery possible, but they also created gates around participation. Hooker borrows Rosanne Liu’s phrase, “the unreasonably narrow path,” to describe the result.

Her displayed example is Yann LeCun’s career, with a connected sequence running from a PhD and postdoc through AT&T Labs, NEC Labs, NYU and FAIR. The general prescription is familiar: enter the right PhD program, move into the right industry lab, produce work that the institution considers sufficiently interesting, and eventually contribute at the frontier.

Slide showing connected stages from PhD to postdoc, AT&T Labs, NEC Labs, NYU and FAIR beneath the heading about barriers to entry.
The professionalization of science introduced barriers to entry, illustrated through Yann LeCun’s career path.

Hooker places her own efficiency-at-scale research, PhD and work at DeepMind within that filtered system. A famous advisor and important internships help; curiosity about the wrong problem at the wrong time can leave someone outside it. Yet learning to represent the world computationally was never the ultimate purpose. The purpose was to answer the questions that those representations make tractable. Access to the tools determines access to the questions.

0:180:27
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

0:18 · section reference included

Compute adds a second gate

AI compounds the institutional filter with a hardware filter. Hooker points to Merve’s GPU-poor versus GPU-rich tweet, then to anonymized companies A, B and C: a handful of labs with the resources to build the models everyone else uses. A map she attributes to Stanford illustrates geographic concentration. The relevant distinction is between concentrated model development and discovery as a whole: Stanford’s AI Index tracks notable model production, while also recognizing academia’s continuing strength in highly cited research.

That concentration affects the product delivered downstream. As model development shifts toward industry, a common model is shipped to people with very different needs. Uniform delivery also risks uniform spending: an easy task and a hard task need not deserve the same compute budget. Broader participation therefore requires more than permission to use a frontier model. Builders need control over how intelligence is customized and where computation is spent.

3:073:16
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

3:07 · section reference included

Automating the data and training loop

AutoScientist addresses the expertise barrier by automating model training. The intended starting point is a domain question, rather than years spent acquiring the training knowledge needed to investigate it. Hooker describes a loop that spans data through alignment and changes its choices according to the domain and type of data.

Hooker reports that AutoScientist outperformed research-staff configurations in Adaption’s internal evaluations across model sizes and architectures, including dense and mixture-of-experts models. Her explanation is about search breadth: individual researchers tend to know particular model families well, whereas an automated process can explore a wider configuration space and accumulate experience. This is a comparison of training configurations in those evaluations, not a measure of general scientific ability.

The gains depended on co-optimizing data and model choices. Giving an agent permission to generate data was insufficient. The system needed to control data quality and choose model adaptations in light of the changes made to the data. Knowledge gained while adapting the dataset then informed the training process, alongside domain knowledge and experience from other components within that domain. Data preparation and model optimization were coupled decisions, not independent stages whose outputs could simply be handed over a wall.

The stopping condition matters when interpreting the results. Hooker says the displayed win rates above 60% reflected a budget rule: the agentic flow could exit once it exceeded 60%. She reports further improvement after that threshold was removed. The clustering therefore reflected when experiments were allowed to stop, rather than an identified ceiling on performance.

A small Python function makes that historical threshold precise. With win rate represented as a fraction, reaching exactly 0.60 does not satisfy an above-60% condition; 0.61 does. Removing the target leaves the separate iteration budget in place:

python

def should_stop(
    win_rate: float,
    iteration: int,
    max_iterations: int,
    target: float | None = 0.60,
) -> bool:
    target_exceeded = target is not None and win_rate > target
    budget_exhausted = iteration >= max_iterations
    return target_exceeded or budget_exhausted

print(should_stop(0.60, 3, 10))  # False
print(should_stop(0.61, 3, 10))  # True
print(should_stop(0.61, 3, 10, target=None))  # False

This illustrates the stopping decision, not AutoScientist’s implementation. The separate iteration limit is a teaching budget; the historical behavior Hooker identifies is permission to exit after exceeding the win-rate target.

The search also changes many hyperparameters together. Human researchers are often cautious about simultaneous changes, which makes experiments easier to interpret but limits how aggressively they explore combinations. Hooker sees broader configuration search as a route to more predictable customization: use domain knowledge, find a productive recipe, and reduce training compute spent on unsuccessful attempts.

4:595:14
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

4:59 · section reference included

From domain customization to interaction

The beta had been announced roughly four weeks before the talk. Hooker describes particularly strong interest from medicine and science, alongside legal and code applications. These are domains where a general model can fall short and the final layer of customization matters greatly. The displayed domain-distribution chart puts Medical and Science at the top, with the longest bars.

Horizontal bar chart titled “Domain Distribution Across All Datasets,” with Medical and Science as the longest bars, beside text naming medical, science, legal and code as domains where general models fall short.
Medical and science lead the displayed domain distribution, alongside demand in legal and code.

The immediate goal is to shorten the innovation cycle and improve the likelihood that a training run produces a useful result. The next extension, Hooker says, is adaptive test-time compute: choosing inference effort according to the task. That is future work in this account, rather than a capability demonstrated here.

Accessibility also includes language and task coverage. Hooker says the team chose to cover 242 languages from day one. That is a coverage commitment, not a claim of equal model quality across every language. She also emphasizes non-verifiable tasks: everyday work whose quality cannot be reduced to a straightforward automatically checked answer. Such tasks are central to the learning problem, even though they lack the convenient feedback available from a passing test or a correct numerical result.

This changes the unit of design. In the older organizational model, one team built a monolithic model, another served it, and another owned the frontend. An interacting system makes those boundaries less adequate: how efficiently it acts, what it learns from the environment, and how that learning affects subsequent behavior become central concerns. The mandate is continuous adaptation through interaction, with the training loop as one part of that larger system.

7:428:01
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

7:42 · section reference included

Where compute pays off is changing

Automating training expertise would not solve access if every user still needed an enormous GPU cluster. Hooker makes the problem concrete with a hypothetical offer: use the agent, but bring ten thousand GPUs. Removing the expertise barrier only changes participation substantially if the compute barrier changes too.

Her second argument, associated with On the Slow Death of Scaling, is that increasing pre-training model size is no longer the most rewarding use of additional compute. The distinction has infrastructure consequences: tightly coupled pre-training favors large, co-located clusters, while inference and some other uses of compute allow more distributed execution.

Compute allocationInfrastructure implicationOpportunity Hooker emphasizes
Larger pre-training runsCo-located capacity, with redundancyReturns constrained by the architecture
Inference and other computationMore scope for distributed capacityBetter returns from how compute is used

Hooker attributes weakening returns from pre-training size to architectural saturation and argues that other allocations can deliver more performance per FLOP. These are her claims about the changing optimization landscape, rather than a quantified comparison supplied for a particular workload.

Hooker describes an Open LLM Leaderboard comparison in which the daily best model under 13B parameters overtakes larger models over time. The comparison’s benchmark aggregation and dates are not specified here, so it supports her discussion of changing relative performance without establishing that smaller models win on every task. She also argues that recent size increases have not reproduced the stepwise gains of earlier generations.

The resulting opportunity is a broader optimization space. Performance can depend on recipes, algorithms, data decisions and the actions surrounding a model, rather than predominantly on enlarging a pre-training run. Those are places where research and automated discovery can matter without requiring ownership of the largest cluster.

That brings the prepared argument back to the opening question. If acquiring the tools becomes less expensive and less institutionally constrained, the research question itself can become the starting point. The promise is not that scientific judgment disappears; it is that more people can apply it before passing through the prescribed career funnel.

10:1310:22
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

10:13 · section reference included

How broader participation would happen

The first audience question asks for the mechanism behind democratization. Hooker estimates that fewer than 5,000 people worldwide know how to train frontier models at scale. She characterizes much of that expertise as configuration knowledge passed between apprentices: valuable, scarce, and well suited to automated exploration.

Two effects would work together:

  • Cheaper experimentation: Automating training decisions shortens innovation cycles. Lowering the cost of asking a research question changes both the number of questions people can explore and which questions they consider worth asking.
  • Different compute purchasing: Agentic and post-training computation contribute to performance without necessarily demanding the same accumulation of co-located GPUs as large pre-training runs. That changes the relative advantage of infrastructure ownership and a productive idea.

The second effect does not eliminate compute costs; it changes the resources a participant needs to compete.

13:4913:58
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

13:49 · section reference included

Adaptability also changes the risk

The next question exposes the other side of user control: someone could take a model designed to behave safely and adapt it into an unsafe one. Hooker acknowledges that wider tool access, including open source, carries real risk. Greater availability changes what people can do with a system, including harmful uses.

She separates customization from open-source release. AutoScientist is intended to let users control their own models, whether locally, privately or within a company. Those deployment settings do not by themselves determine whether the system or its models are openly released.

Restrictions also have a cost: they decide who can participate. Hooker rejects both the claim that openness is risk-free and the assumption that restricting access resolves the issue without other consequences. Her answer identifies the trade-off rather than proposing a technical enforcement mechanism for safe adaptation.

15:2015:30
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

15:20 · section reference included

Optimizing the model and its harness together

Asked which research directions are most promising, Hooker identifies the balance between parametric storage, held in model weights, and non-parametric storage, held outside them. An adaptive system must decide what belongs in each. That makes learning a problem of placement as well as acquisition.

She then extends the data-and-model lesson to the harness, the surrounding system that organizes a model’s interactions. An AutoScientist for harnesses would need to optimize the harness together with the model. A choice that helps one component in isolation may not be the best choice for their combined behavior. Hooker describes this as a long-horizon problem involving joint choices and co-training, rather than an independent search for the best wrapper around a fixed model.

16:5917:08
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

16:59 · section reference included

Large models still matter

A further audience question challenges the compute argument directly. Reinforcement learning and fine-tuning remain GPU-intensive, particularly for large models. Smaller frontier models also often learn from larger teachers through distillation. If their capabilities depend on expensive upstream models, how far does the apparent reduction in size really broaden participation?

Hooker accepts that frontier models remain large. Her claim is narrower than saying size no longer matters: Hooker predicts that frontier labs will not increase pre-training model size another 4× under the current architecture. A new architecture could change that ceiling. She is not recommending that everyone use a 0.8B model; she expects a more level competitive field among builders working near the existing upper end.

Distillation remains useful because better data lets a model use its capacity more effectively. Hooker also expects techniques associated with post-training to move earlier into pre-training, making the quality and organization of learning a stronger lever. Very large models may still deliver benefits on a small, long-tail portion of the task distribution. The unresolved engineering question is whether those gains justify the additional pre-training compute.

17:4418:01
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

17:44 · section reference included

Removing the immediate compute hurdle

The final question asks about plans to open source model settings. Hooker answers by pointing to the beta and saying that GPUs are being offered for free to remove the compute hurdle. That is the concrete access offer made in the talk, not an explicit open-source commitment or a promise of permanently free compute. The ending puts the participation argument into practical terms: make it possible for someone with a domain question to begin an experiment.

20:0620:10
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

20:06 · section reference included

Resources

From the talk

Updates since the talk

Read the complete timestamped transcript
  1. 0:00

    [upbeat music] Amazing. Um, it is-- Oh, sorry. Pardon me.

  2. 0:18

    Um, it is so lovely to be here. So I wanted to share today, uh, some thoughts that I have around who gets to be at the frontier of discovery.

  3. 0:27

    So modern computer science as a field has only existed for the last seventy-seven years. It's kind of bizarre when you think about it. So World War II, uh, all the transistor technology that was developed for radio, we finally had our first versions of the computer.

  4. 0:42

    But when you think about it, that's only two generations of people working on these tools. However, within that time, even for computer science, who and what and what topics we work on has dramatically changed.

  5. 0:57

    And I think it's an interesting setting because actually if you look back across science as a whole, how we do discovery has been markedly different, uh, at different points in time.

  6. 1:06

    So when we started, the whole idea of a researcher was what we call, like, a [REDACTED:gender] scientist, typically someone with adequate wealth to dabble in a discovery, and these were all individuals, independent researchers.

  7. 1:21

    Uh, when we, uh, see, like, the first associations emerge with the Rural Society in the sixteen hundreds, the idea of being a scientist as a full-time job was very special.

  8. 1:32

    And these became the predominant spaces for discovery. Why am I talking about this? Because to be honest, like, the professionalization of science, uh, led to what I would call, and you know, my good friend Rosan Lu calls, the unreasonably narrow path.

  9. 1:49

    So I'm an AI researcher. Uh, this is Yann's actual career. Uh, and it's interesting, if you were to be an AI researcher at the forefront, you basically had to follow this exact narrow path.

  10. 1:59

    You had to get into the right PhD program. You had to then go to the right industry lab. You had to do sufficiently interesting work. And then finally, you got to contribute to the frontier.

  11. 2:09

    This was my story too. So a lot of my work has been on efficiency at scale. Uh, I did my PhD, uh, and worked at DeepMind and a lot of different frontier labs, but this was in many ways, um, a very aggressively filtered system.

  12. 2:25

    If you did not make it or you were not curious about the right problem at the right time, you didn't have, um, a place to play at a frontier lab.

  13. 2:33

    And this is, like, the standard successful scientist. Like, you have a famous advisor, hopefully. Uh, you hopefully get one or two important internships. And what's interesting about this is computer science was really about representing the world, and it was, like, all the tools that do that.

  14. 2:49

    But the reason why most people got into computer scientist was w-- the question at the end of it. Like, if you can represent the world, what questions can you answer?

  15. 2:56

    So today, I'm gonna talk about what I think is, like, one of the most profound and interesting topics, which is, like, why this is so important from computer science that this is changing.

  16. 3:07

    So I'll also speak to this. It was double compounded in computer science because of the need for compute. [chuckles] So this resulted in jokes. Um, it's fun that Merve was here.

  17. 3:16

    This is her tweet about GPU poor versus GPU rich. Uh, it led to barriers of entry on who can contribute frontier AI. So I put here company A, company B, company C, but to be honest, if we polled, I think there would be significant majority votes about who those companies are.

  18. 3:33

    But basically, a handful of frontier labs have been able to build the technology we use. Um, it's also determined who gets to participate in breakthroughs and who doesn't. So, uh, this is a map of, like, what Stanford calls, uh, where statistically or significant breakthroughs have come through-- come from.

  19. 3:50

    And you can see whole sections of the world are completely left out. And so for me, uh, this is a very important question worth answering. Who gets to shape the frontier?

  20. 4:00

    Who gets to answer the questions at the end of the pursuit? We've seen that the shift has dramatically changed from academia to industry, and it's also meant that we ship the same model to everyone.

  21. 4:11

    Uh, why that's particularly interesting is that most people intuitively understand that you shouldn't ship the same model to billions of people, and they also understand that it's not a particularly good use of compute, right?

  22. 4:23

    You're spending the same amount of compute on everything, and some problems are hard, and some are very easy. So where does that leave us? What's my talk for today?

  23. 4:31

    Um, I would like to say that we are ripe for a revolution, and we are ripe for a revolution in who gets to participate at the frontier of AI.

  24. 4:39

    Uh, I'll tell you two reasons why I'm bullish on this. Um, I'll definitely cover one, and then I'll actually see interest, uh, and timing because I want to leave plenty of time for questions.

  25. 4:49

    I think that's-- You know, unless you have a few questions and a bit of banter, these things can be kind of boring, so we'll see. But I'll cover one definitely that I'm actively thinking about.

  26. 4:59

    And this is what if we could allow anyone to build the same frontier intelligence, um, as that in labs? And I've been in a few labs. I've done my tour of duty, and this is the core question I care about now, is, like, how do you build intelligence that continuously adapts and that builders everywhere can have more

  27. 5:14

    control? So instead of taking years of training to learn how to build the tools, scientists just skip to the questions. So a few weeks ago, we released AutoScientist, and AutoScientist is really about how do you automate the training of models itself.

  28. 5:29

    Um, I'll share a few things that are really interesting about this, is that, one, it's, um, co-optimized the entire loop, so it's, like, from data to alignment, uh, and it, it chooses and self-evolves based upon the domain and the type of data.

  29. 5:44

    Um, what's interesting as well is that it actually outperforms research staff, and mainly because, like, a lot of our research staff has experience with certain model types, and we're testing it across many different model architectures, different, different size models, um, as well as, like, dense and mixture of experts, and that search space is a lot broader.

  30. 6:01

    And so exploiting it using, like, how do you, how do you self-improve from experience and scale is very effective. Um, I think this is very interesting. This only worked when we co-optimize the data.

  31. 6:13

    Uh, so there's a lot of auto-research projects right now which basically treat data as, like, um, the agent is-- it decides whether to create data or not or what to do.

  32. 6:23

    Frankly, we did not get the returns for, like, how much you can squeeze out of performance until you control for data quality. So we actually co-optimize based on all the adaptation we did to the data exactly what we would do to the model, and that was super interesting.

  33. 6:37

    It speaks to, like, the need to control the entire flow. Um, what's fun about this is, like, really what AutoScientist is doing is it combines all the knowledge it gained from the adaptive data component with also the knowledge of the domain and also the ability to self-improve for a domain and to learn from other components of that

  34. 6:54

    domain. Um, what, what is a cheeky fact, and this is quite fun, you'll notice all these percentages for win rates are like- 60 plus. Um, that's because we put the budget stopping it, [laughs] stopping it above 60.

  35. 7:06

    So, like, once it was above 60, the-- our, our agentic flow could exit. But we since, like, removed that barrier and, like, you can see it just go up over time, which is super fascinating.

  36. 7:16

    Um, and then I think what's interesting is, like, it changes a lot of the hyperparameters. Typically, the humans are much more wary about changing all at once, and so you get massive exploitation of the search base.

  37. 7:27

    I see this as crucial for, like, how do you reduce the amount of compute you use for customization because you train with much more predictability, but also, how do you, um, leverage, like, your domain knowledge to really unlock how you build frontier AI?

  38. 7:42

    Um, and this was fun. We, we did, uh-- We announced a beta, like, four weeks ago. The excitement is most acute for, like, medical and sciences, and that's largely, I think-- and legal and, and code as well, but these are, like, domains where typically current models fall short and also domains where, um, in many ways, like, the

  39. 8:01

    degree of last mile customization is really acute. Um, and this is the core point. I, you know, I think this is fun. I think I might even have time to cover the other point I wanted to make about why now is very important for, like, changing who shapes.

  40. 8:15

    But this really-- the main factor that this does is it increases your i-i-innovation cycle. Like, and it also increases the likelihood that when you train and spend compute, you'll succeed.

  41. 8:26

    And those combined factors are super interesting. Like, one thing that we're doing next is extending that, so even your test time compute should be adaptive based on your task.

  42. 8:34

    Um, so this kind of brings me back to where I started and, like, kind of the grumpy statement I said, which is like, you know, we have this verified super narrow compounding issue of barriers to entry.

  43. 8:47

    One is, like, that you need to do this, um, very narrow funnel of who gets to build frontier AI, and the other is that, um, typically compute and cost really dominate.

  44. 8:57

    Um, we want to change that. Like, we decided, okay, we're gonna cover languages from day one, two hundred and forty-two languages. And also, like, a big interest for us is actually non-verifiable tasks.

  45. 9:07

    I think this is super interesting because, um, this is really the bulk of, like, everyday tasks that people do, and, um, it's really where the meat of, like, what is interesting for progress is gonna be over the next year.

  46. 9:21

    Um, and this leads me into our mandate. We care deeply about how do you accelerate learning in a way that models should be able to, um, learn from their environment.

  47. 9:31

    So right now, we've moved from a era of, like, the, the model is monolithic. You know, when I was at, um, different parts of my research career, basically your whole team would be around building a model.

  48. 9:42

    You give it to someone else to serve, and, like, you have someone else do the front end. And actually now, like, the most important intelligence is a model who interacts.

  49. 9:50

    And so this idea of how efficiently are you going to interact, how will you continuously learn from the environment is pretty core, and, um, I think about it a lot.

  50. 9:58

    So, um, let's see. I think I do have time, right? How are we doing for time? Oh, I do. I have plenty. This is lovely. So we'll have time for questions, and I'll share a little bit about what I think, um, the next, uh, component is.

  51. 10:13

    I think core to this-- So if we just did AutoScientist but it still took enormous compute to do frontier AI trainings, I think we'd be in a bit of a pickle, right?

  52. 10:22

    Like, I'd be saying, "Oh, great, you can use this agent, but don't worry, just bring your, uh, ten thousand GPUs with you." [laughs] But I think there's another trend which I think makes this very important timing and rooms like this probably much more optimistic than, like, have been in a few years ago about who can build frontier AI.

  53. 10:40

    Um, and one of that is, like, the rules of, like, where you get rate of return for compute are totally changing. So, um, I wrote a very, uh, paper about this called So Death of Scaling.

  54. 10:51

    Um, but empirically, we do now know that, um, pre-training size in particular is not your most lucrative axis of scale. And what does this mean? Like, if pre-training scale isn't gonna dominate performance, it actually really greatly changes who can create the best recipes for innovation because pre-training compute typically has to be co-located.

  55. 11:11

    Um, it has to be, uh, in many ways large volume to accommodate for redundancy. Inference compute and other places where you actually apply compute, typically you can have much more, like, distributed.

  56. 11:23

    It's also much more higher return given the amount of flops. And so it's interesting when we talk about what is the state of pre-training compute, we know it's not giving the same returns largely because our architecture is saturated.

  57. 11:35

    So, um, we see much smaller models outperforming much larger ones. Uh, this is, like, the OpenLLM leaderboard, and this is, like, the daily submission of, like, the best small model under [REDACTED:age] versus all the larger models. [laughs]

  58. 11:49

    Um, and you can see over time that ratio totally flips. Um, and also there's kind of the grumpy assessment that most recent models that have severely, um, played with just increasing model size haven't prover-provided the same stepwise change, um, as their predecessors.

  59. 12:08

    And a lot of that is because where the most returns for performance are now are on a broader action space. Um, and this is really what I was getting at when we move from an algorithm to we are expanding optimization space to new places.

  60. 12:24

    And what's fun about that is that these are new places where, um, the barriers to entry are much more nimble and where recipe and algorithm and research matters again.

  61. 12:36

    Um, and things like how do you automate that discovery. Um, and so this is what I'll state, and I think then we should open up for questions. Um, and I would encourage good grumpy questions or fun positions.

  62. 12:49

    Let's make the use of the time. I know I was told earlier that almost no talks have time for questions. I find that so disappointing. So, um, so we'll need some brave people to start the conversation.

  63. 12:59

    Um, but I will say this means all bets are off. And I would say it's a very good time to be, like, working on intelligence because instead of just a handful of people getting to sh- getting to create it, it's much more now about the question you wanna answer at the end of the day.

  64. 13:14

    The reason why people did a computer science PhD was to learn the tools to get to the question, and now-Now you can just get to the question, which is super meaningful.

  65. 13:23

    Um, okay, let me open up. Where should we start? We, um, have an abundance. Uh, I hear there's no microphone, so if you wanna ask a question, if you wanna make a statement, I will indulge a statement if it's interesting.

  66. 13:35

    Um, and, uh, yeah, go for it. Just raise your hand and I'll, I'll repeat it afterwards. Let me just get to the end of this in case people wanna reach me afterwards.

  67. 13:45

    Nice. Um, yes, go ahead, [REDACTED:gender] in the fourth row. Go for it.

  68. 13:49

    You, you mentioned, uh, you know, uh, AI frontier will be more democratized. Can you point to, like, how?

  69. 13:58

    So I think how is twofold. One is, um, there's very few people who know how to train frontier models. I would say realistically, probably less than five thousand in the world at scale.

  70. 14:08

    I think that type of knowledge, that's a very exploitable search base, and actually as humans, all those configurations we're not particularly good at. It's kinda like secret knowledge we pass as if, you know, we're apprentices.

  71. 14:20

    Um, so that's one. Like, i- once you, um, automate a, a lot of that knowledge, you just accelerate innovation cycles, which means that you can explore and do more questions.

  72. 14:30

    Typically, what people I think often miss is that the cost of, um, uh, asking something informs what is asked, and if you make it cheaper to ask something, you change, like, the volume of things that are asked, which is super interesting.

  73. 14:43

    The other reason though, I do think it's very much a facet of, like, the changing nature of compute. So, um, agentic compute, post-training compute matters a significant amount for performance.

  74. 14:54

    That does not require the same type of, um,

  75. 14:58

    dare I say hoarding [laughs] of GPUs. But, like, I think it, it, it's very different compute purchasing dynamics, and again, it means that the person with the best idea has a higher chance of winning, um, which is fun.

  76. 15:10

    Nice. What else? Who wants to go? I see, uh, a-- Yeah, we can go up here, and then I saw a, a hand back there. Okay. Yes, I do see you.

  77. 15:17

    The glare is, uh, high, but you go first and then we'll come up here.

  78. 15:20

    So frontier labs care a lot about safety. So one of the challenges in scripting an adaptable model is somebody will take your safe model and adapt those to be unsafe.

  79. 15:30

    Uh, how do you see that playing out?

  80. 15:32

    Yeah. So the question, I'll just repeat it, so 'cause I think there's, um, probably people who wanna know who aren't in the room. So the question was, um, one of the, I guess, uh, it-- the counterpoints from some frontier labs about not, uh, enabling frontier AI outside is a, is a safety question.

  81. 15:49

    So I think it would be, uh, I definitely am not one of those people who, who says that, um, open source doesn't carry any risk. So when you make a tool more readily available, there's a profile of risk associated with it.

  82. 16:01

    Um, AutoScientist is, to be fair, like, it's about enabling people to customize their models. You can think of that as, like, a slightly different question from whether those are open source.

  83. 16:10

    It's giving people way more control, whether that's local or private or within their company. It's about, like, how do they own their own intelligence. Um, what do I think broadly about the impact of, um, open source on safety?

  84. 16:25

    You can do so much. Uh, the dynamic has often conflated, like, that real risk of, like, wider access with, um, a slight sense that,

  85. 16:36

    that it, it, it restrains who can actually participate, and I think that's a delicate balance. And I think you have to acknowledge risk by also navigating that and acknowledging that it limits who can participate.

  86. 16:46

    Yeah. So nuanced answer, so I, I guess I should be more bombastic on that one. But I, I guess, uh, I have been in this discussion a few times, and I find the binary views on other sides, I feel like they miss a lot.

  87. 16:57

    But anyways. Okay, go ahead.

  88. 16:59

    Uh, are there any specific, uh, research ideas or technologies that kind of, you know, uh, fit into this paradigm that you're excited about?

  89. 17:08

    Oh, I think for, for automating and speeding up learning, one of the core questions is: How do you balance what you store in the parametric space and the non-parametric space?

  90. 17:17

    And actually, one of the most interesting things, I mentioned that this only worked because we co-optimized data and model. Um, it will only work to do o- like an, uh, AutoScientist for harnesses if you also co-optimize it with a model.

  91. 17:31

    And so it's interesting. It's actually a long horizon problem, and that's super fascinating to think about, where you're optimizing the choices for each and co-training, which is cool. Nice.

  92. 17:39

    Uh, I think we have time for maybe two more, and then we can-- I'll pass on to the next speaker. Nice. Go ahead.

  93. 17:44

    Uh, so you talked a little bit about this, um, actually working on the post-training side of models is, like, cheaper than doing pre-training, obviously. But, like, still, especially talking, like, really large models, like reinforcement learning, even fine-tuning is still pretty, like, GPU intensive.

  94. 18:01

    So, like, you talked a little bit about, like, smaller models, but I still think, like, most, like, frontier smaller models still rely on, like, the bigger model to distill knowledge, like, downwards in order for them to be trained.

  95. 18:13

    So how do you see this, like, actually, like, for the future, how to work, like, with the smaller models? How they can start working, how they retrain, how depending on these larger models?

  96. 18:24

    Yeah. Actually, that's an excellent point. I think the question amounts to two points. One, are larger models necessary for distillation benefits? And then second, so frontier models are still pretty large. [laughs]

  97. 18:35

    Um, so I think for the second one, frontier models are still pretty large. Yes. I don't think I'm arguing that you, um... I, I-- My argument is slightly different.

  98. 18:44

    My argument is that no frontier AI lab is gonna four X the size of their model again for pre-training. So it's almost like we know we're at an upper ceiling for this architecture.

  99. 18:52

    If someone comes out with a new architecture, that's totally different. You can-- The architecture determines your ceiling, and I'm saying we are probably at the ceiling of size, which means that that's fun because it means, okay, it's what you innovate within that.

  100. 19:07

    Um, so, so size does matter. I think that's, uh, that's a very good point to bring up. Um, meaning I'm not advocating everyone use a zero point AP, but I am saying that we now have a more equal feeling-- uh, playing field at the, the top.

  101. 19:20

    Second point is interesting. Distillation, like, um, uh, the impact, certainly. So data quality in general means you use capacity a lot more. So you, uh, what you will see in pre-training is instead of, uh, the size, people are just moving post-training further back, which is very fascinating and a bigger lever.

  102. 19:39

    So, um, I agree distillation is helpful. It's just that, again, we've hit the ceiling and so, uh, it's, uh, almost like no one is gonna supersize their model. Um, or if they do, it's not clear it's beneficial except for a small size of the distribution, which is, um, very much the long tail, and that's kind of interesting,

  103. 19:58

    like, where that trade-off is wor-worth that much pre-training compute. So very good question. Uh, one more, and then I think we are done. Yes, go ahead.

  104. 20:06

    Um, any plans to open source model settings?

  105. 20:10

    Yeah, it's actually in beta. So you can, um... I shared here. You can try it in beta. So we actually are offering the GPUs for free. Um, okay. Oh, that's a nice question. [laughs]

  106. 20:19

    I, I promise I don't know this [REDACTED:gender]. [laughs] Um, but yes, I think, uh, actually, we're trying to remove the compute hurdle, and I think it's quite cool to see.

  107. 20:27

    So, um, feel free to take a look at the beta. Nice. Lovely. Thank you so much. Really nice. Thank you. [clapping] [outro jingle]