Загрузка видео...

Не удалось загрузить видео

На главную

Reasoning from scratch round 3: This time, I cover generating a verifier for... a) ...evaluation (base model versus any future model improvement) b) ...the reinforcement learning with verifiable rewards (RLVR) training later on 00:00 Introduction 01:21 Four approaches to LLM evaluation 07:20 Verifiers and reinforcement learning with verifiable rewards...

40,226 просмотров • 10 дней назад •via X (Twitter)

Комментарии: 37

Фото профиля Sebastian Raschka
Sebastian Raschka10 дней назад

And the YouTube version:

Фото профиля Victor Akinode
Victor Akinode9 дней назад

Glad you gave the verifier this much attention, Sebastian. For anyone following along, keep a few deliberately wrong answers in your tests too. It is reassuring to see the grader reject something you already know should fail.

Фото профиля Sebastian Raschka
Sebastian Raschka9 дней назад

Yes I recommend that too. In the demo I have a couple of both

Фото профиля Victor Akinode
Victor Akinode9 дней назад

Amazing!

Фото профиля BullBear.News
BullBear.News10 дней назад

four approaches to RLVR verification is a dense framing

Фото профиля Sebastian Raschka
Sebastian Raschka10 дней назад

4 approaches to LLM *evaluation*

Фото профиля Jeremy Bosma
Jeremy Bosma9 дней назад

Verifiers make reasoning improvements measurable.

Фото профиля Raghu
Raghu10 дней назад

verifier before rlvr. otherwise the reward just learns your eval bug

Фото профиля Sebastian Raschka
Sebastian Raschka10 дней назад

Verifiers are also quite useful for establishing performance baselines and comparing different models

Фото профиля John Rood
John Rood10 дней назад

the verifier needs its own eval set. if the same check grades progress and supplies the reward, one bug can make both dashboards agree while the model gets worse.

Фото профиля Sebastian Raschka
Sebastian Raschka10 дней назад

That is totally true. The RLVR chapters uses a non-overlapping dataset

Фото профиля Tom Leroy
Tom Leroy10 дней назад

The verifier starts as a referee and ends up inside the game. Keep adversarial holdouts outside the training loop, version every rule, and track disagreement with human graders—or RLVR may just get better at pleasing the scoreboard.

Фото профиля Crio Songo
Crio Songo9 дней назад

这个从零搭推理验证器的内容太实用了,刚好最近在做大模型推理优化,正需要这种从环境到实现的完整教程。

Фото профиля Carol Rehor
Carol Rehor9 дней назад

Building the math verifier before the RLVR loop is the order that keeps the training honest. Eval scaffolding that can grade future models beats another leaderboard screenshot.

Фото профиля Ryu1TS
Ryu1TS10 дней назад

The verifier-first framing holds outside training too. Once generation is cheap, the scarce part is a check you can run without a human reading everything. Most teams I see still have a reviewer, not a verifier.

Фото профиля Kisson
Kisson9 дней назад

The part that's underrated: verifier-as-evaluator and verifier-as-reward-signal fail in opposite directions. A weak eval verifier just gives you noisy numbers; a weak reward verifier actively teaches the policy to game it.

Фото профиля Mira Synth Tech
Mira Synth Tech10 дней назад

Deep dive Verifiers RLVR next level eval

Фото профиля Karthik Varma
Karthik Varma9 дней назад

A verifier that serves both evaluation and RLVR creates a clean bridge between measuring progress and training for it. The verifier quality becomes the whole game.

Фото профиля AI Quanting
AI Quanting10 дней назад

The evaluation verifier is the harder half. A reward verifier only has to be right on the distribution you train on, while a scorer has to keep holding as the policy drifts away from it.

Фото профиля Jurly
Jurly9 дней назад

the edge cases around answer extraction may matter more than the grader logic itself

Фото профиля Chen Yang
Chen Yang9 дней назад

Do you track answer-extraction failures separately from mathematical errors? With a verifier used for both RLVR and evaluation, a gain could partly reflect more parseable outputs. A small audit of unparseable answers would help distinguish the two.

Фото профиля Oussama
Oussama10 дней назад

The gap between those two at 1:10:47 often tells you more about your eval than your model does.

Фото профиля 青雲
青雲10 дней назад

Steps 3.4 through 3.6 are where verifiers usually get lost: extract the box, normalize, then compare. Each of those steps buys coverage and spends the ability to say no. Normalize aggressively enough and two different answers compare equal — and the verifier still returns a number, it just is not measuring anything anymore. What keeps that honest is a negative control set: answers that must fail, each with a stated reason, plus an assertion that they failed for that reason. A cell that went red because the extractor threw is not evidence that equivalence checking works; it is a test that never exercised the check. The same question shows up one layer up, where the party being checked can also propose the checks. We put the verifier on the caller's side — orca exec --verifier "cargo test" "fix it" — so the agent cannot finish without passing something it did not choose and cannot renegotiate. Curious how you pick the leniency threshold in 3.5. That knob usually decides whether a verifier is real.

Фото профиля ethereagle · building
ethereagle · building10 дней назад

the boxed-answer grader is the whole eval. did MATH-500 scores hold when you swapped the prompt template, or is that the sensitivity bit?

Фото профиля Sebastian Raschka
Sebastian Raschka10 дней назад

Base models are super sensitive to prompt templates

Фото профиля ethereagle · building
ethereagle · building9 дней назад

yeah that's the sensitivity bit. a MATH-500 delta on a base model can be the template, not the verifier. freeze the template before you treat the boxed-answer score as the baseline

Фото профиля NotaDEV
NotaDEV10 дней назад

normalizing extracted answers before verifying is where most of these pipelines quietly break

Фото профиля VastPlan
VastPlan10 дней назад

评测口和 RLVR 口如果不是同一套 verifier,后面奖励会自己打架。从零做数学等价检查,比再堆一轮 SFT 更值钱。

Фото профиля ShadowAguy
ShadowAguy10 дней назад

everyone's chasing reasoning, nobody wants to build the verifier. the boring part is the whole game.

Фото профиля Nitish Kumar
Nitish Kumar9 дней назад

The base-model-versus-future-model use is the underrated half. Most teams only build a verifier once they're doing RL, so they have no way to answer "did last week's change help" — which is the question they get asked every week.

Фото профиля Balakrishna Nannaka
Balakrishna Nannaka9 дней назад

When reasoning model generates answer a verifier evaluates the answer and gives the evaluation score and generates the output Using Reinforcement learning with verifiable rewards (RLVR) it says that evaluate the answer and if it is correct give evaluation score as well as RL reward for it . This Reward helps model to generate more answers like that for that given input

Фото профиля Rivaldo A.
Rivaldo A.10 дней назад

why not start with a verifier for the *interview loop*? most models fail there because they can't handle the chaos of human feedback. how do you even define that?

Фото профиля Cup Head
Cup Head9 дней назад

This is the bit people skip. A verifier turns "looks good" into a pass/fail you can trust next week.

Фото профиля Pastor Soto
Pastor Soto9 дней назад

Wow this is so amazing!! Thanks for sharing

Фото профиля Adam Darin
Adam Darin10 дней назад

Interesting approach looking forward to how the verifier scales with future model updates. 🧠🚀

Фото профиля Akash
Akash9 дней назад

the verifier is doing double duty here: eval now, reward signal later. that bridge is where most RLVR demos get hand-wavy

Фото профиля James Walker
James Walker9 дней назад

I’d keep extraction failures visible beside the maths score. If a prompt change makes the answer easier to parse, the score can rise without the model getting better at the maths.

Похожие видео

one thing that has saved my projects more time than I can count is evals boy was I excited when florian, quite literally an expert in benchmarks, agreed to hop into a ~2h interview to do a walkthrough of what the eval landscape looks like in 2026 (and also answer my personal business questions on the subject) given that now running frontier model through benchmarks is a vector for hacking other systems in order to avoid doing work (looking at you sol), I think it's more important than ever to educate folks on the evals situation. had a lot of fun throughout this session and I hope that you learn a thing or two! enjoy! 🌹 table of content: 0:00:00: are AI Benchmark broken? 0:05:45: Florian Brand background 0:09:00: what motivates florian to work on evaluation? 0:13:33: what is the mirrorcode benchmark about? 0:18:20: cheating in agent benchmark is insaneeeee 0:24:08: LLM benchmarks in era of agents 0:26:30: what’s up with the pelican man 0:28:27: evals are about capabilities 0:31:46: components of running evals 0:35:30: the volume of things to audit is huge!!! 0:40:20: expert answers are wrong hahahaha 0:46:00: api providers aren’t the same 0:48:00: benchmark narrow capabilities (synthetically) 0:50:56: link between eval and environment 0:53:45: small validated benchmark or massive bench? 0:56:11: what is your flow to review a benchmark? 0:58:30: tracking work capabilities with evaluation 1:00:20: slide deck in industry is all vibecoded 1:03:30: harness impact in the evaluation 1:07:39: hardware/sandboxes impact evaluation too! 1:11:00: “is it going to get worse?” 1:12:40: all components influence the final score 1:13:50: training models on different harnesses? 1:17:20: is the model just the weights or it’s all of it? 1:19:30: how to craft benchmark that prevent to cheating and undereliciting models in 2026 1:23:19: ways agents cheat and steal 1:26:00: correct elicitation of capabilities is important 1:36:00: building evaluation on prime intellect 1:45:10: how do you design interactivity benchmarks? 1:48:40: do you think evals are well set to reflect real world performance? 1:52:50: what will the benchmarking landscape will look like in 1 year

Yacine Mahdid

12,923 просмотров • 1 месяц назад

*Major* open source AI drop today. Can America win the Open AI race? My conversation with Nathan Lambert and Luca Soldaini 🎀 of Ai2 about the launch of Olmo 3 00:00 – Cold Open 00:39 – Welcome & today’s big announcement 01:18 – Introducing the Olmo 3 model family 02:07 – What “base models” really are (and why they matter) 05:51 – Dolma 3: the data behind Olmo 3 08:06 – Performance vs Qwen, Gemma, DeepSeek 10:28 – What true open source means (and why it’s rare) 12:51 – Intermediate checkpoints, transparency, and why AI2 publishes everything 16:37 – Why Qwen is everywhere (including U.S. startups) 18:31 – Why Chinese labs go open source (and why U.S. labs don’t) 20:28 – Inside ATOM: the U.S. response to China’s model surge 22:13 – The rise of “thinking models” and inference-time scaling 35:58 – The full Olmo pipeline, explained simply 46:52 – Pre-training: data, scale, and avoiding catastrophic spikes 50:27 – Mid-training (tail patching) and avoiding test leakage 52:06 – Why long-context training matters 55:28 – SFT: building the foundation for reasoning 1:04:53 – Preference tuning & why DPO still works 1:10:51 – The hard part: RLVR, long reasoning chains, and infrastructure pain 1:13:59 – Why RL is so technically brutal 1:18:17 – Complexity tax vs AGI hype 1:21:58 – How everyone can contribute to the future of AI 1:27:26 – Closing thoughts

Matt Turck

37,531 просмотров • 10 месяцев назад

Full episode of the first-ever Math Academy podcast with Jason Roberts: 0:00 - Introduction 4:00 - Applying the MA Way to X Growth 7:40 - Status of the ML Course and its Kick-Ass Coding Projects (Part 1) 25:50 - Jason's Near-Infinite List of Important Things 34:20 - The ML Course Has Been a Massive Undertaking 42:10 - Breadth-First Development 44:30 - Status of the ML Course and its Kick-Ass Coding Projects (Part 2) 50:15 - Why Math Academy Needs To Do a CS Course 56:45 - The Never-Ending Stream of Confusion 1:00:30 - The Story of Eurisko, the Most Advanced Math/CS Track in the USA 1:24:20 - Intuition Through Repetition: Machine Learning Edition 1:29:40 - The Importance of Spaced Review 1:43:30 - Upcoming Course Roadmap 1:47:40 - Spaced Repetition 2.0: Accounting For and Discouraging Reference Reliance 1:54:45 - Overhelping: A Pathology of the Over-Involved Parent/Tutor 1:59:21 - Yes, You Need to be Automatic on Math Facts (and Yes, Rapid-Fire Training is Coming) 2:04:55 - What Happens When Students Don't Know Their Math Facts 2:05:50 - The Horror of Attempting to Teach a Class When Students Have Multi-Year Deficits in Fundamental Skills 2:11:30 - Integrating Coding Into the Math Curriculum 2:18:00 - Combining Math and Coding is the Closest Thing to a Real-Life Superpower 2:18:55 - Creating a Full Math Degree and Getting Full College Credit 2:22:15 - The Power of Pre-Learning: The Greatest Educational Life Hack

Justin Skycak

66,588 просмотров • 10 месяцев назад