Table of Contents

When Google acquired DeepMind in 2014 for £500 million, many thought they’d bought “a company that makes game-playing AI.” Ten years later, its research earned a Nobel Prize in Chemistry. This wasn’t luck. It was a coherent strategy.

TL;DR

Demis Hassabis’s core strategy: use games and simulated environments (which have clear evaluation functions) to train powerful generalized reasoning, then apply the same methods to scientific problems that also have evaluation functions. AlphaGo proved the concept; AlphaFold was the full flowering of the strategy; AlphaGeometry, AlphaDev, and GNoME extend this framework into different domains.

What It Is

Google DeepMind (formed in 2023 by merging Google Brain and DeepMind) is arguably the most scientifically impactful AI research institution in the world. Hassabis’s background before founding DeepMind was as a video game designer and research neuroscientist — context that’s crucial for understanding his research philosophy.

DeepMind’s research methodology has one consistent feature: they don’t solve the easiest problems. They solve problems where solving them unlocks a large amount of downstream value.

Why It Matters

AlphaFold: Nobel Prize in Chemistry 2024

The protein folding problem — predicting a protein’s 3D structure from its amino acid sequence — was molecular biology’s core unsolved problem for 50 years. It mattered because protein function is determined by structure, and understanding structure is the foundation of drug design.

AlphaFold2 solved it at experimental-accuracy precision at the 2020 CASP14 competition. In 2024, Demis Hassabis and John Jumper won the Nobel Prize in Chemistry.

The AlphaFold database now contains over 200 million predicted protein structures, covering nearly all known protein sequences — the largest structural biology resource ever created, freely available.

AlphaGeometry: Solving Olympiad Geometry Problems

In early 2024, DeepMind released AlphaGeometry — a system that solves International Mathematical Olympiad geometry problems at near-gold-medalist level. The significance isn’t just the solving ability; it’s that the system produces step-by-step proofs that humans can verify.

AlphaDev: Fastest Sorting Algorithm in 49 Years

In 2023, DeepMind used reinforcement learning to have AI autonomously design CPU assembly instruction sequences, discovering a sorting algorithm faster than any previously known — which was subsequently adopted into LLVM’s C++ standard library sort implementation.

GNoME: 2.2 Million New Materials Discovered

In late 2023, DeepMind’s GNoME (Graph Networks for Materials Exploration) predicted 2.2 million potentially stable crystal structures — equivalent to 45 times the total number of materials humanity discovered over the past 800 years. About 380,000 are considered highly stable candidates for future research.

How It Works

DeepMind’s research path has a clear architecture:

Step 1: Choose a difficult problem with a clear evaluation function. Chess has win/loss; protein folding has GDT_TS accuracy scores; geometry problems have correct/incorrect. The evaluation function is what makes RL work.

Step 2: Generate large training datasets (often synthetic). AlphaFold trained on the Protein Data Bank; AlphaGeometry used AI-generated geometry problems at massive scale; AlphaDev evolved in a simulated CPU environment.

Step 3: Let the model self-improve driven by the evaluation function, exceeding human knowledge boundaries. AlphaGo Zero learned purely from self-play with zero human game data and surpassed all human players. AlphaDev discovered sorting instruction sequences humans never thought of.

How It Differs from OpenAI’s Approach

OpenAI’s path: build a general large language model, then extend from language capabilities to other tasks.

DeepMind’s path: for each domain with a clear evaluation function, design a specialized system to solve one specific, scientifically significant problem.

These aren’t mutually exclusive, but they represent different research philosophies. GPT changed how humans interact with AI; the Alpha series changed the boundaries of scientific research.

Bottom Line

Hassabis has said in multiple interviews that he’s drawn to “hard questions” — those that, if solved, enable a large amount of subsequent progress. From AlphaGo to AlphaFold, DeepMind has consistently executed this strategy.

For engineers, DeepMind’s research path offers a borrowable methodology: in your problem domain, find the core bottleneck that, if automated, would unlock a cascade of subsequent value — then design a system with a quantifiable evaluation function to attack it.

References

Ask this article

Answers come from this article only. Click any prompt below or open the chat at the bottom right.

🇺🇸 English

When Google bought DeepMind back in 2014 for five hundred million pounds, a lot of people figured they'd just paid a fortune for a company that makes AI to play games. Ten years later, that same lab won a Nobel Prize in Chemistry. And here's the thing — that wasn't luck. It was the payoff of a very deliberate strategy. So let's talk about the playbook behind it.

The person to understand first is Demis Hassabis, DeepMind's founder. And his background is unusual in a way that matters. Before he ran an AI lab, he was two things: a video game designer, and a research neuroscientist. Hold onto that, because it explains everything about how he thinks.

Here's the core idea in one breath. Games and simulated environments have something precious — a clear way to measure whether you did well or badly. Win or lose. Score goes up or down. That clear scoreboard is what lets a machine train itself to get better and better. Hassabis's insight was: use games to build powerful, general reasoning ability, and then point that exact same machinery at scientific problems that *also* have a clear scoreboard. AlphaGo proved it could work. AlphaFold is where the whole strategy fully bloomed. And then AlphaGeometry, AlphaDev, and GNoME carried the idea into brand new territory.

There's one consistent thread in how DeepMind picks its battles. They don't go after the easiest problems. They go after the problems where *solving one thing* unlocks a huge amount of downstream value. Crack the bottleneck, and a hundred other doors swing open.

Let me give you the concrete wins, because they're genuinely staggering.

Start with AlphaFold — the one that won the Nobel. There's a problem in molecular biology called protein folding. A protein starts life as a string of amino acids, but it crumples up into a specific three-dimensional shape, and that shape is everything — it determines what the protein actually *does* in your body. Figuring out the shape from just the sequence had been biology's great unsolved puzzle for fifty years. And it matters enormously, because if you understand a protein's structure, you have the foundation for designing drugs. In 2020, at a competition called CASP14, AlphaFold2 basically solved it — hitting the kind of accuracy you'd normally only get from painstaking lab experiments. Four years later, Hassabis and his colleague John Jumper took home the Nobel Prize in Chemistry. And today the AlphaFold database holds over two hundred million predicted protein structures — nearly every known protein sequence on Earth — and it's free for anyone to use. That's the largest structural biology resource ever built.

Next, AlphaGeometry. In early 2024, DeepMind put out a system that solves geometry problems from the International Mathematical Olympiad at nearly gold-medalist level. But the really impressive part isn't just that it gets the right answer. It produces step-by-step proofs that a human can actually read and verify. It shows its work.

Then there's AlphaDev, and this one is delightfully nerdy. In 2023, DeepMind used reinforcement learning to have an AI design sequences of raw CPU instructions from scratch — and it discovered a sorting algorithm faster than anything humans had come up with in decades. Sorting is one of the most studied, most optimized problems in all of computer science, and the AI found a better way. That algorithm got adopted into the LLVM C++ standard library. It's running in real software right now.

And GNoME — this one's about materials. Late 2023, DeepMind's system predicted 2.2 million potentially stable crystal structures. To put that in perspective: that's roughly forty-five times the total number of stable materials humanity had discovered across the previous eight hundred years. About three hundred and eighty thousand of them look like strong candidates for real-world research.

So how does the machinery actually work? The recipe has three steps, and it's the same recipe every time.

Step one: pick a hard problem that has a clear evaluation function. Chess has win or lose. Protein folding has an accuracy score you can compute. Geometry has right or wrong. That scoreboard is the non-negotiable ingredient — it's what makes the whole learning process possible.

Step two: generate a mountain of training data, and often you generate it artificially. AlphaFold learned from the existing database of known protein structures. AlphaGeometry trained on geometry problems the AI generated itself, at massive scale. AlphaDev evolved inside a simulated CPU.

Step three — and this is the magic — let the model improve itself, driven relentlessly by that scoreboard, until it pushes past the limits of human knowledge. The clearest example is AlphaGo Zero: it learned Go purely by playing against itself, with zero human game data, and it blew past every human player. AlphaDev found instruction sequences no programmer had ever imagined.

Now, it's worth contrasting this with OpenAI, because they represent a genuinely different philosophy. OpenAI's path is: build one giant general-purpose language model, then stretch it from language out into every other task. DeepMind's path is the opposite: for each domain that has a clear scoreboard, hand-design a specialized system to crack one specific, scientifically important problem. These aren't enemies — they can coexist. But you can feel the difference in what they changed. GPT changed how humans *interact* with AI. The Alpha series changed the boundaries of what science can *discover*.

So let me leave you with the three things worth remembering.

First: the whole strategy hinges on one ingredient — a clear evaluation function, a scoreboard. Games have it naturally, and DeepMind's genius was spotting which scientific problems secretly have it too.

Second: they deliberately hunt for bottleneck problems — the ones where solving a single hard thing unleashes a cascade of downstream value. Protein folding wasn't just a puzzle; it was a key that unlocked drug design for everyone.

And third, the takeaway you can actually borrow. In your own domain, look for the core bottleneck — the thing that, if you could automate it, would open a flood of value behind it. Then build a system around a measurable scoreboard and go attack it. That's the playbook. From a game board, all the way to a Nobel Prize.

🇹🇼 中文

多數人講到 DeepMind,第一個想到的都是 AlphaFold 拿諾貝爾獎這種級別的里程碑。但在這場跟 Demis Hassabis 的輕鬆對談裡,我覺得更有意思的是另一個層次的問題:這些模型,在日常生活裡到底怎麼被用?不只是一般人,還包括 Demis 自己。

先講一個很打動人的例子。對談中有個提問者分享,他媽媽做完健康掃描,拿到一個很大的影像檔,但正式報告要等好幾週,全家人在等待期間非常焦慮。他後來想到 Gemini 的長脈絡能力,就把整個掃描檔丟進去分析,Gemini 判斷「不用擔心,沒問題」,而後來醫師的正式判讀,也證實了這個結果。

Demis 回應說,這類故事他們聽過很多。人們把 Gemini 用在健康問題上,某些情況下甚至能救命,他認為這是個很了不起的使用情境。他也提到,DeepMind 釋出的 Gemma 4 是免費的本地模型,理論上也能做到類似的事,算是「給一般人的一份禮物」。

不過這裡要特別提醒:這是對談中分享的個人經驗,不是醫療建議。模型的判讀,不能取代專業醫師的正式評估。

接著聊到 Demis 自己怎麼用 Gemini。提問者引用了 Nvidia 黃仁勳的說法——黃仁勳說他把大型語言模型當成做決策時的知己、參謀——然後問 Demis 會不會也這樣用。

Demis 的回答很具體。他說目前還沒把它當成知己,主要是拿來腦力激盪:想專案點子、想專案名字、發想各種創意。他很喜歡把它當成這件事的「對練夥伴」。另一個主要用途,是快速掌握陌生領域——當他想了解一個自己不太熟的新研究方向時,就用它來彙整、摘要,快速抓到重點。

至於「請它批評自己的想法」這件事,Demis 說他確實會用 Deep Think,來幫他把已經在想的一些步驟從頭再走一遍。但他傾向用比較協作的框架,而不是叫它「更嚴厲一點、把這個想法的缺陷全找出來」。他自己也承認,也許可以試著讓它更狠一點,但整體來說,他把它當成一種對練夥伴。

這裡有個對工程師很實用的觀察:同一個模型,你用「協作對練」還是「找碴挑錯」的框架去 prompt,得到的產出會很不一樣。

對談中也聊到諾貝爾獎。真正有意思的,是 John Jumper 講的一句話:他期待有一天,有人用你的技術去發明出某個東西,然後那個東西再去拿一次諾貝爾獎。提問者把這個概念命名為「二階諾貝爾」。Demis 認為這是有可能的——他提到目前已經有超過三百萬名研究者在用 AlphaFold,這些人都在做非常有影響力的工作。以這個規模來看,Jumper 說的那一天,總會到來。

再來是這場對談的另一個重點:co-scientist。Demis 的說明很清楚——你可以把它想成 Gemini 的一個微調版本,在上面加掛了額外的工具跟 harness,專門用來協助研究工作。它的定位,是一個很好的研究助理,主要幫忙三件事:生成假設、分析資料、彙整文獻。換句話說,它不是要取代研究者,而是接手研究流程裡那些耗時、又可以被輔助的環節。

那實際用起來體感如何?對談中有人真的拿 co-scientist 的假設生成器來測,分享了三個很具體的觀察。第一,它會要你把想法收窄——你只是丟出一個籠統的說法,系統會反過來引導你把想法講得更明確。第二,它會花時間跑——這位使用者提到,他等了大約八小時才拿到結果。第三,也是最關鍵的,它在冷門領域也管用。他把它用在自己的老本行,ray tracing 裡的 global illumination,這是一個訓練資料很少、做的人也很少的方向。即便如此,系統跑出來的結果讓他覺得「這太驚人了」,回饋了一些有道理、有幫助的想法,而不只是在熱門主題上表現漂亮。

這一點對評估研究型 AI 很關鍵:真正的價值,不在於它能在資料充足的熱門題目上答得漂亮,而在於它能不能在資料稀薄、少人涉足的角落,給出合理的方向。

好,把這場對談收攏起來,我想留三個重點。第一,DeepMind 的產品其實橫跨兩端:一端是給大眾的通用能力,像 Gemini 的長脈絡、免費的 Gemma 4,讓一般人在高焦慮情境裡也能得到即時協助;另一端是給研究者的專用工具,也就是 co-scientist。第二,co-scientist 的本質,是 Gemini 微調再加掛工具,變成能生成假設、願意花八小時跑、還能在冷門領域給方向的研究助理。第三,Demis 自己的用法示範了一種很務實的中間態:不神化,也不當知己,就是把模型當成隨叫隨到的腦力激盪與對練夥伴,用它快速補齊自己不熟的領域。

Tags

Related Articles