ProEval: Proactive Failure Discovery and Efficient Performance Estimation for Generative AI Evaluation
Google DeepMind's ProEval uses Bayesian modeling to estimate a generative AI model's performance and surface its failure cases with 8 to 65 times fewer samples than existing methods.
It offers a concrete, tested method for cutting the cost of evaluating large generative models by an order of magnitude while surfacing a wider variety of failure modes than existing red-teaming or benchmark-pruning techniques.
Yizheng Huang · Wenjun Zeng · Aditi Kumaresan · Zi Wang — meet the researchers →
Two readings, equal authority
How to choose: The paper’s words is verbatim — use it when you need to quote, or to judge how they write. Plain language is a paraphrase written for comprehension — use it when you want the idea fast. Neither is a summary of the other; they are two doors into the same room.
“Evaluating generative AI models is increasingly resource-intensive due to slow inference, expensive raters, and a rapidly growing landscape of models and benchmarks. We propose ProEval, a proactive evaluation framework that leverages transfer learning to efficiently estimate performance and identify failure cases. ProEval employs pre-trained Gaussian Processes (GPs) as surrogates for the performance score function, mapping model inputs to metrics such as the severity of errors or safety violations. By framing performance estimation as Bayesian quadrature (BQ) and failure discovery as superlevel set sampling, we develop uncertainty-aware decision strategies that actively select or synthesize highly informative inputs for testing. Theoretically, we prove that our pre-trained GP-based BQ estimator is unbiased and bounded. Empirically, extensive experiments on reasoning, safety alignment, and classification benchmarks demonstrate that ProEval is significantly more efficient than competitive baselines. It requires 8–65x fewer samples to achieve estimates within ±1% of the ground truth, while simultaneously revealing more diverse failure cases under a stricter evaluation budget. Our open-sourced code and data can be found at https://github.com/google-deepmind/proeval.”
DeepMind built ProEval, a system that uses a pre-trained Gaussian Process model to predict how a generative AI model will score on a benchmark, instead of running every single test question. It picks (or has another AI write) new test questions that are most likely to sharpen its performance estimate or expose a failure, using Bayesian statistics to know how confident it should be. Across reasoning, knowledge, and safety benchmarks, this let the authors match ground-truth accuracy with far fewer evaluated examples, and turn up a wider variety of failure cases than existing methods.
What this paper defines
Every definition below is the paper’s own sentence, with its locator. The plain gloss is a reading aid and is marked as one.
superlevel set (failure region)
“aiming to characterize the region { 𝑥 | 𝑓 ( 𝑥 ) ≥ 𝜆 } where the model likely fails”§1 Introduction
In plain terms: The set of inputs where the model's error or severity score is at or above a chosen failure threshold.
negative transfer
“This assumption fails when evaluating an out-of-distribution target model, leading to negative transfer.”§2.2.3 Selecting source data
In plain terms: When the historical model data used to build the prior doesn't actually resemble the target model, so borrowing from it hurts rather than helps the estimate.
GMM (Gaussian Mixture Model) source-selection clustering
“To automate and optimize this selection while preventing negative transfer, ProEval employs Gaussian Mixture Model (GMM) Clustering.”§2.2.3 Selecting source data
In plain terms: A method that groups historical models by how similar their score patterns are, so only models that behave like the target model are used to build its prior.
abstention rule
“the framework uses an abstention rule: it abstains from estimation if the target’s cluster contains fewer than three models, as sparse clusters indicate a lack of sufficient source data to form an informative prior.”§2.2.3 Selecting source data
In plain terms: A built-in refusal to make a prediction when too few similar historical models exist to trust the resulting estimate.
Number of Samples (@1% MAE)
“we measure the Number of Samples (@1% MAE), which tracks the minimum number of samples required to achieve an MAE of ≤ 1%.”§3.1.2 Evaluation Metrics
In plain terms: How many test examples had to be evaluated before the estimated performance score came within 1% of the true score.
Samples to First Failure (SFF)
“Efficiency is captured by the Samples to First Failure (SFF), denoting the number of queries required to identify the initial failure case.”§3.1.2 Evaluation Metrics
In plain terms: How many test cases it took before the method found even one input that made the model fail.
Overall Diversity
“Overall Diversity summarizes both semantic and topical variety via a composite … Intuitively, this composite diversity score penalizes near-duplicates and mode collapse.”§3.1.2 Evaluation Metrics
In plain terms: A single score combining how spread out the discovered failures are across topics and across meaning, so it's low when a method just finds many near-copies of the same failure.
What they actually did
Each step is a synthesis. Open any step to see the paper’s own sentence it was derived from, with its locator — so nothing here floats free of the source.
- Formalize model evaluation as a single problem with two goals: estimate the model's aggregate performance score, and identify the region of inputs where it fails.
Trace this step to the paper
“We formalize model evaluation as a dual-objective problem over the input space X.”§2.1 Bayesian Formulation of Evaluation
- Place a Gaussian Process prior over the unknown performance function and derive its posterior mean and variance from observed evaluation results.
Trace this step to the paper
“To address these objectives sample-efficiently, we place a GP prior 𝑓 ∼ 𝐺𝑃 ( 𝜇, 𝑘).”§2.1 Gaussian Process (GP) Surrogate
- Build the GP prior through transfer learning rather than learning it from scratch for each new model.
Trace this step to the paper
“Instead of learning this function from scratch, we employ transfer learning to construct a highly informed Gaussian process (GP) prior, and we design active selection and synthesis strategies to strategically target which inputs to evaluate.”§1 Introduction
- Select which historical models' data may inform the prior using GMM clustering on a held-out benchmark, and abstain from estimating when fewer than three similar historical models exist.
Trace this step to the paper
“The prior is then constructed exclusively from historical models within the target model’s cluster.”§2.2.3 Selecting source data
- Estimate overall performance via Bayesian quadrature by actively picking, at each round, the next test input that most reduces the posterior variance of the aggregate estimate.
Trace this step to the paper
“We adopt a greedy acquisition strategy, selecting the next input 𝑥𝑡+1 that maximizes the reduction in posterior variance”§2.3 Active Performance Estimation
- Discover failure cases within a fixed pool of unlabeled inputs (Strategy 1: superlevel set sampling) by targeting inputs the GP predicts are likely failures while favoring unexplored, high-uncertainty regions.
Trace this step to the paper
“We design an acquisition function that, when maximized, targets inputs within the probable failure region, Equation (6), while ensuring high information gain”§2.4 Strategy 1: Superlevel set sampling (SS)
- Extend failure discovery beyond the fixed pool (Strategy 2) by feeding the highest-scoring 'anchor' failure examples to an LLM as in-context prompts asking it to generate new, harder test cases.
Trace this step to the paper
“This strategy selects 𝑚 “anchor” inputs from 𝐷pool with the highest 𝛼SS values and use them as in-context examples for an LLM generator: “These test cases likely cause the target model to fail. Analyze their common features and generate a new, more challenging test case.””§2.4 Strategy 2: Generative synthesis (SS-Gen)
- Force topical diversity in generated failures (Strategy 3: TSS) by clustering the input space into topics, selecting a target topic with a multi-armed-bandit rule independent of the anchors used, then instructing the LLM to transpose the anchors' failure pattern into that topic.
Trace this step to the paper
“We treat topics as arms in a multi-armed bandit problem and select a target topic 𝑠𝑡 using UCB1 (Auer et al., 2002) to balance the reward of finding a failure case and exploration.”§2.4 Strategy 3: Topic-aware exploration (TSS)
- Prove theoretically that the transfer-learned, GP-based Bayesian Quadrature estimator is unbiased and that its deviation from the ground-truth estimate is bounded with high probability.
Trace this step to the paper
“Theoretically, we prove that our BQ estimator based on pre-trained GPs is unbiased and bounded under mild assumptions.”§1 Introduction
- Evaluate the framework empirically across 16 LLMs and VLMs and 9 benchmarks spanning reasoning, general knowledge, and safety alignment, under three scenarios (Default, New Model, New Bench) against random sampling and four active-testing baselines.
Trace this step to the paper
“We evaluate 16 LLMs and VLMs, assigning symbols for brevity.”§3.1.1 Datasets and models
- Run a small human-verification study on generated failure-discovery questions to check whether the query generator's own mistakes were inflating the measured failure rate.
Trace this step to the paper
“To quantify the accuracy of the query generator’s answers for its generated queries, we conducted a small human verification study on 80 randomly sampled questions from the failure discovery task”§3.3 Results on Failure Case Discovery
Exactly what was run, and how
| Model | Developer | Temp | Effort / reasoning | Deployment | Other settings |
|---|---|---|---|---|---|
| Gemini 2.5 Flash | Google DeepMind | 0 (deterministic decoding) | not reported | unstated | Used as the target model being evaluated in the failure-discovery experiments. |
| Gemini 3 Pro | Google DeepMind | 0.7 | not reported | unstated | Used as the LLM query generator that synthesizes new test cases in the SS-Gen and TSS failure-discovery strategies. |
Source for Gemini 2.5 Flash settings
“We employ Gemini 2.5 Flash as the target model (deterministic decoding, temperature 𝜏 = 0) and Gemini 3 Pro as the query generator (temperature 𝜏 = 0.7).”§3.3 Results on Failure Case Discovery
Source for Gemini 3 Pro settings
“We employ Gemini 2.5 Flash as the target model (deterministic decoding, temperature 𝜏 = 0) and Gemini 3 Pro as the query generator (temperature 𝜏 = 0.7).”§3.3 Results on Failure Case Discovery
What they reported — and what they left out
The paper names all 16 evaluated LLMs/VLMs by lab and short code (Gemma-3-12B/27B, Gemini 2.5 Flash/Pro, Gemini 3 Flash/Pro, GPT-3.5 Turbo, GPT-4o, GPT-5/5.1/5.2, Claude 3.5 Haiku, Claude 3.7 Sonnet, Claude 4.5 Sonnet/Opus, Qwen3-32B) but gives explicit temperature settings only for the two models used in the failure-discovery case study (Gemini 2.5 Flash as target at temperature 0, Gemini 3 Pro as generator at temperature 0.7); it does not report deployment mode, sampling settings, or system prompts for the other 14 models, nor for the additional query-generator models compared in Table 5 (GPT-5, GPT-4o, Gemini 3 Flash, Qwen3-32B, Gemma3-27B).
The numbers they report
ProEval needs far fewer evaluated samples than baseline methods to reach an accurate performance estimate.
8-65x fewer samples for estimates within ±1% of ground truth
See it in the paper
“It requires 8–65x fewer samples to achieve estimates within ±1% of the ground truth, while simultaneously revealing more diverse failure cases under a stricter evaluation budget.”Abstract
Performance estimates often reach within 1% error using very few evaluated inputs.
1 to 27 evaluated inputs for ≤1% estimation error
See it in the paper
“often reaches within 1% estimation error with only 1 to 27 evaluated inputs, significantly surpassing the performance of competitive baselines.”§1 Introduction
ProEval's failure-discovery strategies find substantially more failure cases than other LLM-based generation baselines.
about 2-5x higher failure detection rate
See it in the paper
“For failure discovery, ProEval achieves about 2-5x higher failure detection rates and better diversity in the semantic space, compared to other LLM-based generation methods.”§1 Introduction
The score-feature variant of Bayesian Quadrature (BQ-SF) reaches 1% estimation error almost immediately.
1-2 evaluations to reach 1% estimation error
See it in the paper
“Figure 6 quantifies this, showing that it often requires only 1–2 evaluations to reach 1% estimation error.”§3.2 Results on Performance Estimation
Baseline active-testing methods need far more samples than ProEval's Bayesian Quadrature approach to reach the same error threshold.
baselines require 8-65x more samples than BQ
See it in the paper
“BQ achieves 1% MAE in a few samples while baselines (RF+LURE, RF+IS, Random) require 8–65× more samples.”Figure 6 caption
Including mismatched historical models in the GP prior (failing to filter for negative transfer) can inflate estimation error by up to two orders of magnitude.
up to 100x higher MAE from unfiltered pre-training pairs
See it in the paper
“failing to filter these models and blindly selecting pre-training pairs can increase the estimation MAE by up to 100×, whereas our selection strategy successfully identifies the optimal, low-error pairs.”§3.2 Case study on negative transfer
Transferring knowledge across modalities (from a text safety dataset to an image safety dataset) substantially reduced estimation error compared to no transfer.
MAE reduced from 0.111 (no transfer) to 0.055 (with cross-modality transfer)
See it in the paper
“The results show that, compared with the no knowledge transfer, the cross-modality knowledge contributes significantly, reducing the MAE from 0.111 to 0.055.”§3.2 Modality transfer
Topic-aware generation found substantially more failures than undirected random generation on a strong, hard-to-break target model.
TSS-TPF: 18.9% failures on StrategyQA vs. 5.1% for Rand-Gen on GPT-5 (3.7x improvement)
See it in the paper
“on GPT 5, TSS-TPF discovers 18.9% failures on StrategyQA versus 5.1% for Rand-Gen, a 3.7× improvement.”§3.3 Results on Failure Case Discovery
Weaker target models have far higher failure rates than stronger ones under the same generation method, though guided generation still helps at every difficulty level.
TSS-TPF failure rate on StrategyQA: Gemma3 67.8% vs. GPT-5 18.9%
See it in the paper
“weaker target models yield higher overall failure rates (e.g., Gemma3 at 67.8% vs. GPT 5 at 18.9% for TSS-TPF on StrategyQA), but the relative benefit of guided generation remains substantial across all difficulty levels.”§3.3 Results on Failure Case Discovery
Active/guided failure-discovery strategies find the first failure case much faster than random methods, especially on math problems.
<8 samples to first failure for math (active strategies) vs. 11-27 samples (random methods)
See it in the paper
“the Samples to First Failure (SFF) in Table 3 show that active strategies identify the first failure significantly faster—requiring less than 8 samples for math problems, compared to 11–27 samples for random methods.”§3.3 Results on Failure Case Discovery
A human check found the LLM query-generator answered the large majority of its own generated failure-discovery questions correctly.
90% of 80 sampled questions answered correctly by Gemini 3 Pro
See it in the paper
“We found that Gemini 3 Pro answered 90% of these questions correctly.”§3.3 A note on query generator validity
A stronger query-generator model discovers substantially more failures than weaker ones using the same discovery method.
TSS-RPF on StrategyQA: 41.5% (GPT-5) vs. 28.7% (Qwen3-32B) vs. 26.3% (Gemma3-27B)
See it in the paper
“TSS-RPF discovers 41.5% failures on StrategyQA with GPT 5, compared to 28.7% with Qwen3 (32b) and 26.3% with Gemma3 (27b).”§3.3 Results on Failure Case Discovery
Using a prompt embedding model with a larger embedding dimension tends to give more accurate performance estimates.
BQ MAE: 0.0425 (gemini_embedding_001, dim 3072) vs. 0.0900 (all_minilm_l6_v2, dim 384)
See it in the paper
“A preliminary experiment shows that ProEval using embedding models with larger embedding dimensions tend to yield lower MAEs.”Table 22 caption, §C.3.2
Among source-data-selection methods, GMM clustering with a minimum-of-three-models abstention rule gave the lowest median error while abstaining on about a fifth of cases.
Median MAE 0.0109 (22% abstain) for GMM+min≥3, vs. 0.0316 (0% abstain) for random selection
See it in the paper
“GMM + min≥3 abstention is the optimal choice for combining good selection with explicit failure detection.”Table 28, §E.4 Recommendations
What they assert, beside what they showed
Left is the claim in the paper’s own words. Right is the data offered for it. Where the two do not fully meet, a gold band names the distance.
ProEval's active, transfer-learning-based approach needs far fewer evaluated samples than existing baselines to reach an accurate performance estimate.
“It requires 8–65x fewer samples to achieve estimates within ±1% of the ground truth, while simultaneously revealing more diverse failure cases under a stricter evaluation budget.”
“BQ achieves 1% MAE in a few samples while baselines (RF+LURE, RF+IS, Random) require 8–65× more samples.”
Figure 6 captionProEval's active-selection acquisition function is generally better than random selection for Bayesian Quadrature, validating the variance-reduction approach.
“our active selection approach for BQ-SF and BQ-TPF is almost always better than random selection, highlighting the usefulness of considering the variance reduction in BQ.”
“ProEval variants, especially BQ-SF and BQ SF Rounded performed especially well in the Default and NM scenarios, highlighting the effectiveness of both transfer learning and active selection.”
Table 1 captionBecause ProEval's active selection reduces how many queries the LLM generator needs to discover a new failure, it can be worth using a more expensive, more capable generator model even under a limited budget.
“Note that our approach reduces the number of queries necessary for the LLM generator to discover a new … failure. So even under a limited budget, one may select a more expensive model as LLM generator to be used with our method.”
“TSS-RPF discovers 41.5% failures on StrategyQA with GPT 5, compared to 28.7% with Qwen3 (32b) and 26.3% with Gemma3 (27b).”
Table 5, §3.3The paper's measured failure-discovery rates should be read as a lower bound on the model's true failure rate, since the query generator itself sometimes errs when synthesizing 'harder' questions.
“Overall, this human study demonstrates that our estimated failure rate is a lower bound of the true failure rate.”
“We found that Gemini 3 Pro answered 90% of these questions correctly. For the 8 questions it answered incorrectly, we inspected the answers given by the target model Gemini 2.5 Flash. On 5 of those questions, the target model gave the same incorrect answer as Gemini 3 Pro; on 2 questions, it gave a different but still incorrect answer; and on 1 question (where the answer should be yes or no), it gave the correct answer but used flawed reasoning.”
§3.3 A note on query generator validityDepending on a strong, transfer-learned GP prior is a strength of ProEval's design rather than a weakness, because it avoids learning from scratch and has a built-in check for when the prior would be unreliable.
“The ability to leverage strong GP priors is a core advantage of our approach rather than a weakness.”
“In the absence of such priors, a surrogate model would be forced to learn from scratch through direct observations of the function , which is undesirable given that querying is highly expensive. Additionally, as noted regarding G0 and O1, ProEval incorporates a mechanism to evaluate the quality of available priors; by verifying the sufficiency of source data, the system can strategically abstain from making predictions when a reliable prior is missing.”
§4 Discussion and ConclusionGMM clustering with a minimum-of-three-source-models abstention rule is the best overall method for selecting which historical models should inform the GP prior.
“Based on the verified results, GMM + min≥3 abstention is the optimal choice for combining good selection with explicit failure detection.”
“GMM with abstention achieves best overall performance: GMM + min≥3 yields the best median MAE (0.0109). It abstains when the cluster has fewer than 3 models (22% of cases).”
§E.3 Experimental Results, Key ObservationsHow they frame it, and what they want next
Their framing
The authors frame ProEval as 'a critical step towards efficient, effective, and economical evaluation of modern generative AI models,' presenting both its sample-efficiency gains and its diversity of discovered failures as evidence of that. They pre-empt a natural objection (that leaning on historical priors is a fragile crutch) by explicitly arguing reliance on strong priors is a designed-in advantage rather than a weakness, pointing to the abstention mechanism as the safeguard. Remaining weak points — embedding quality, the discrete/Gaussian mismatch in binary scoring, and generator-model quality — are framed as factors to account for and directions for future work rather than as flaws undermining the main results.
Register: The abstract, introduction, and conclusion are written confidently and somewhat promotionally (a numbered contributions list, phrases like 'remarkable sample efficiency,' 'critical step'), but the results and discussion sections repeatedly flag specific conditions under which a component underperforms (BQ Rounded's instability, the GP classifier's underperformance, generator-quality dependence, and out-of-distribution negative transfer) rather than presenting the method as uniformly reliable.
Where they hedge
“A limitation of SS-Gen is that the generated inputs often semantically mimic the anchors (e.g., if anchors are math problems about "counting apple", the LLM generates more "counting apple" problems).”§2.4 Strategy 3: Topic-aware exploration (TSS)
“As a result, BQ Rounded can introduce noise and exhibits less stability than the standard BQ variant, especially when the posterior mean is near 0.5.”§3.2 Binary data in the experiments and the Gaussian observation model
“In the settings of Table 1 at a 1% budget, GPC often underperforms, yielding an MAE of 0.1653 on StrategyQA and 0.0516 on SVAMP. More investigations on transfer learning for GPC is required to make concrete claims about how to best use GPC for our tasks.”§3.2 Binary data in the experiments and the Gaussian observation model
“The LLM generator’s quality impacts the effectiveness of the methods SS-Gen and TSS. For example, if an LLM keeps generating the same token, methods like SS-Gen and TSS will certainly not work.”§3.3 Results on Failure Case Discovery
“The reported failure rates could be influenced by mistakes made by the query generator when synthesizing “harder” problems.”§3.3 A note on query generator validity
“This assumption fails when evaluating an out-of-distribution target model, leading to negative transfer.”§2.2.3 Selecting source data
What they say it means
- Model performance patterns generalize through a learned embedding space well enough that ProEval can transfer knowledge even to entirely new, previously unseen benchmarks.
the paper’s words
“The success of transfer via learned embeddings suggests that models share underlying performance patterns that can be captured in a latent space, even when evaluating entirely new datasets.”§4 Discussion and Conclusion
- Because ProEval needs fewer total generator queries to surface a failure, teams can afford to pay for a more capable (and more expensive) generator model within the same budget.
the paper’s words
“Note that our approach reduces the number of queries necessary for the LLM generator to discover a new … failure. So even under a limited budget, one may select a more expensive model as LLM generator to be used with our method.”§3.3 Results on Failure Case Discovery
- Cheaper, more thorough evaluation is expected to speed up GenAI iteration cycles and improve transparency about model limitations while lowering the energy cost of testing.
the paper’s words
“Ultimately, we anticipate several positive societal outcomes: enhanced transparency regarding model limitations, reduced energy consumption through optimized testing, and the development of safer, more equitable models by prioritizing diverse and challenging test cases.”Impact Statement
What they call for next
- Future work should reduce ProEval's reliance on high-quality embeddings and develop better acquisition functions, surrogate models, and variance-reduction techniques, including accounting for differing rater and generation costs.
the paper’s words
“Future work includes reducing the reliance on high-quality embeddings, developing better acquisition functions, surrogate models, variance reduction techniques, and strategies to take into account the different rater costs and costs for generating model responses based on different inputs.”§4 Discussion and Conclusion
- Future work on source-data selection should learn adaptive abstention thresholds per benchmark, ensemble multiple selection methods, adapt online as evaluations arrive, and derive theoretical regret bounds.
the paper’s words
“Future Directions: Future improvements could include learning adaptive abstention thresholds per benchmark category, ensembling multiple selection methods, online adaptation as evaluations arrive, and deriving theoretical regret bounds for these selection strategies.”§E.4 Recommendations
- Further investigation is needed into transfer learning for GP classifiers (the Bernoulli/probit alternative to the Gaussian observation model) before concrete recommendations can be made for binary evaluation data.
the paper’s words
“More investigations on transfer learning for GPC is required to make concrete claims about how to best use GPC for our tasks.”§3.2 Binary data in the experiments and the Gaussian observation model
Limitations they state
“A limitation of SS-Gen is that the generated inputs often semantically mimic the anchors (e.g., if anchors are math problems about "counting apple", the LLM generates more "counting apple" problems).”§2.4 Strategy 3: Topic-aware exploration (TSS)
“This assumption fails when evaluating an out-of-distribution target model, leading to negative transfer.”§2.2.3 Selecting source data
“As a result, BQ Rounded can introduce noise and exhibits less stability than the standard BQ variant, especially when the posterior mean is near 0.5.”§3.2 Binary data in the experiments and the Gaussian observation model
“GPC often underperforms, yielding an MAE of 0.1653 on StrategyQA and 0.0516 on SVAMP.”§3.2 Binary data in the experiments and the Gaussian observation model
“The LLM generator’s quality impacts the effectiveness of the methods SS-Gen and TSS. For example, if an LLM keeps generating the same token, methods like SS-Gen and TSS will certainly not work.”§3.3 Results on Failure Case Discovery
“The reported failure rates could be influenced by mistakes made by the query generator when synthesizing “harder” problems.”§3.3 A note on query generator validity
Moves worth stealing
Follows the intro's narrative setup with a short numbered contributions list that restates the paper's claims as discrete, checkable bullets before any method detail is given.
“Our contributions are as follows: 1. A unified evaluation framework that grounds performance estimation in Bayesian quadrature and failure discovery in superlevel set sampling.”
Names a plausible objection to the method's own design explicitly, then answers it directly rather than letting a reader raise it first.
“The ability to leverage strong GP priors is a core advantage of our approach rather than a weakness.”
Introduces short symbolic codes for a large roster of compared models once, up front, so dense multi-model figures and tables stay legible without repeating full names.
“We evaluate 16 LLMs and VLMs, assigning symbols for brevity.”
Runs a small human-verification study specifically to pressure-test whether the automated pipeline's own metric (an LLM judging another LLM's failures) could be trusted, rather than only reporting the automated metric.
“we conducted a small human verification study on 80 randomly sampled questions from the failure discovery task”
States a design choice as a deliberate trade-off, naming the standard alternative it rejected and why, instead of presenting the chosen method as the only option.
“The choice of the observation model is a deliberate trade-off to ensure computational tractability and analytical updates in BQ with pre-trained GPs. While a Bernoulli/probit link is standard for binary data, it precludes a closed-form posterior for the integral and the pre-training objective.”
Where else this leads
Same people
- Visual prompt engineering for video models Google DeepMind
shares Zi Wang
Published alongside it
The nearest publications in time, across all three labs.
- Dynamic Reflections: Probing Video Representations with Text Alignment Google DeepMind
2026-04-23 - Where the goblins came from OpenAI
2026-04-29 - Did US Worker Retraining Reduce Participant Automation Exposure? Google DeepMind
2026-05-06 - HeadVis Anthropic
2026-05-15
What this page was built from
Working from a full plain-text extraction of the arXiv PDF (50 pages including appendices, per the corpus manifest's 'full' text grade); dense numeric tables and multi-panel figures with PDF-extraction line-wrapping artifacts are represented here via their captions and surrounding prose rather than cell-by-cell transcription.