---
title: 'InnoEval: Multi-Criteria Idea Evaluation'
url: https://www.emergentmind.com/topics/innoeval
type: topic
---

# InnoEval: Multi-Criteria Idea Evaluation

InnoEval is a framework for research idea evaluation that treats assessment as a knowledge-grounded, multi-perspective reasoning problem with decoupled, multi-criteria decision-making. In its principal formulation, an idea is represented as a structured object, evaluated against dynamically retrieved evidence from literature, web discourse, and code repositories, reviewed by multiple academic personas across five criteria—Clarity, Novelty, Feasibility, Validity, and Significance—and then synthesized into a meta-review with a final score and decision in $\{\text{Reject}, \text{Poster}, \text{Spotlight}, \text{Oral}\}$ [2602.14367]. The term has also been used more broadly for innovation-oriented evaluation in information retrieval, AI-agent benchmarking, and platform design, but the most explicit and unified technical formulation is the 2026 research-idea evaluation framework [2602.14367].

## 1. Conceptual basis

InnoEval is motivated by the claim that scientific idea evaluation should be grounded in a living ecosystem of theory and practice, should reflect collective deliberation among diverse expert perspectives, and should follow multi-criteria decision-making rather than compressing judgments into a single dimension [2602.14367]. The framework is positioned against three recurrent limitations in automated idea assessment: narrow knowledge horizons, flattened evaluation dimensions, and the bias of treating a single LLM as an all-purpose judge.

The system formalizes an idea as a structured tuple
$$
I = (\mathrm{TLDR}, \mathrm{Motis}, \mathrm{ResQues}, \mathrm{Meths}, \mathrm{ExpSets}, \mathrm{ExpRes})
$$
with timestamp $t$. A point-wise evaluation returns
$$
P_{\text{point}} = \{K, V, E_{\text{point}}\} = F(I),
$$
where $K$ is background knowledge, $V$ is revision suggestions, and $E_{\text{point}}$ contains the meta-review, final score $s_{\text{point}}$, and final decision $d_{\text{point}}$. For sets of ideas, the framework produces
$$
P_{\text{group}} = \{\{P_{\text{point}}^{I_i}\}_{i=1}^{n}, E_{\text{group}}\} = F(\{I_i\}_{i=1}^{n}),
$$
where $E_{\text{group}}$ contains comparative analyses and a final ranking [2602.14367].

This design makes idea evaluation explicitly evidential rather than purely parametric. Knowledge available before timestamp $t$ is used for evaluation, whereas knowledge after $t$ is reserved for revision suggestions. The separation is intended to preserve temporal fairness while still allowing forward-looking feedback [2602.14367].

## 2. Knowledge retrieval and grounding pipeline

The first major subsystem is a heterogeneous deep knowledge search engine. An Extraction Agent $\mathcal{M}_e$ converts the raw proposal into the structured representation $I$, after which a Search Agent $\mathcal{M}_s$ performs multi-round, source-specific retrieval over literature, web opinions, and code. The literature sources are arXiv, Semantic Scholar, and Google Scholar; web opinions are obtained through Google Search restricted to research discourse domains such as blogs and discussion forums; code sources are GitHub and Kaggle [2602.14367].

Fast retrieval issues tailored, synonym-expanded queries for each idea part $p$ and source $u$:
$$
\widetilde{\mathcal{K}}_{p,u} = u(\mathcal{Q}_{p,u}, t).
$$
The retrieved results are partitioned into literature, web, and code sets. These are then reranked by a hybrid scoring rule that combines semantic similarity with LLM-based relevance judgment:
$$
\mathcal{S}^{\mathrm{sem}}_j = \mathrm{Rerank}(\mathrm{Embed}(\mathcal{I}, \widetilde{\mathcal{K}}_j)),
$$
$$
\mathcal{S}^{\mathrm{llm}}_j = \mathcal{M}_s(\mathcal{I}, \widetilde{\mathcal{K}}_j),
$$
$$
\mathcal{S}_j = \alpha \mathcal{S}^{\mathrm{sem}}_j + (1-\alpha)\mathcal{S}^{\mathrm{llm}}_j,\quad
\widetilde{\mathcal{K}}^*_j = \mathrm{Top}_m(\widetilde{\mathcal{K}}_j, \mathcal{S}_j).
$$
In the reported setting, $\alpha = 0.2$ and $m = 10$ [2602.14367].

Slow retrieval then enriches the top-ranked evidence. Papers are parsed from PDFs into structured representations, web pages are summarized, and repositories are analyzed through file/function graphs and synthesized core snippets. Query refinement proceeds iteratively:
$$
\widehat{\mathcal{Q}}_{p,u} = \mathcal{M}_s(p, u, \mathcal{Q}_{p,u}, \mathcal{K}_{p,u}),
$$
with $N=3$ refinement rounds by default [2602.14367]. The stated goal is to expand coverage without drifting off-topic.

Grounding is handled by a separate Grounding Agent $\mathcal{M}_g$. For each idea part $p$ and retrieved knowledge item $k_p$, it extracts evidence $e_p$ and a relevance analysis $s_p$:
$$
(e_p, s_p) = \mathcal{M}_g(p, k_p).
$$
The resulting grounded evidence set
$$
\mathcal{G} = \{(p, \mathcal{G}_p)\}
$$
serves as the citation-like factual substrate for downstream reviewers. This grounding step is central to the framework’s attempt to reduce noisy retrieval and unsupported judgments [2602.14367].

## 3. Multi-perspective review board and decoupled criteria

InnoEval’s second defining subsystem is an innovation review board composed of academic personas with distinct backgrounds, goals, constraints, and source-specific familiarity profiles. The paper gives examples such as a senior researcher, a creative-oriented reviewer, a theoretical scientist, an industry engineer, and an empirical experimentalist [2602.14367]. For each idea, five personas are sampled.

A notable design choice is familiarity-based evidence masking. Each persona carries a knowledge familiarity vector across literature, web, and code, and a proportion of grounded evidence from each source is randomly masked according to that familiarity. The example given is that Literature Familiarity $= 8$ implies 20% random masking of literature grounding. The intent is to simulate realistic partial knowledge rather than omniscient review [2602.14367].

Evaluation is decoupled across five metrics,
$$
\Psi = \{\text{Clarity}, \text{Novelty}, \text{Feasibility}, \text{Validity}, \text{Significance}\},
$$
and each metric is scored independently by a dedicated evaluator agent:
$$
\varphi_{\rho,\psi} = \mathcal{M}_{\psi}(\rho, \mathcal{I}, \mathcal{G}).
$$
Scores lie in $[0,10]$ and are accompanied by detailed rationales. A Report Agent $\mathcal{M}_r$ then synthesizes the full set of reviewer-dimension judgments into a meta-review, final score, and decision [2602.14367].

Consensus is therefore procedural rather than closed-form. The paper does not specify a weighted voting rule, Borda aggregation, or any other explicit formula for reviewer fusion. Instead, consensus emerges from diversity in personas, independent per-metric assessments, and the language-based meta-reviewer that integrates the set of $\varphi_{\rho,\psi}$ into the actionable outcome [2602.14367]. This distinguishes the framework from single-judge LLM pipelines and from scalar scoring schemes that flatten idea quality into one latent dimension.

## 4. Benchmark construction and evaluation tasks

The empirical evaluation relies on three datasets derived from authoritative, peer-reviewed OpenReview submissions. The point-wise dataset $D_{\text{point}}$ contains 217 ideas extracted from ICLR 2025 and NeurIPS 2025 submissions, manually corrected and verified for fidelity. The label distribution is Reject 138, Poster 66, Spotlight 9, and Oral 4, with “Highlight” defined as Spotlight plus Oral [2602.14367].

| Dataset | Composition | Tasks and metrics |
|---|---|---|
| $D_{\text{point}}$ | 217 ideas from ICLR 2025 (136) and NeurIPS 2025 (81) | Binary and ternary classification; Accuracy and macro-F1 |
| $D_{\text{pair}}$ | 372 pairs from $D_{\text{group}}$: 172 easy and 200 hard | Pair-wise preference Accuracy |
| $D_{\text{group}}$ | 172 grouped instances built from topically similar papers across label strata | Best selection Accuracy; full ranking via LIS and Accuracy |

The pair-wise dataset $D_{\text{pair}}$ distinguishes easy cases, such as Reject versus Highlight, from hard cases, such as Poster versus Highlight. The group-wise dataset $D_{\text{group}}$ is formed by retrieving topically similar papers and selecting one per label stratum, then ranking the group by the papers’ ground-truth labels [2602.14367].

For full ranking, the framework uses the longest increasing subsequence metric:
$$
\mathrm{LIS\ score} = \frac{l}{n},
$$
where $l$ is the length of the longest increasing subsequence relative to the predicted order and $n$ is the gold ranking length [2602.14367].

The paper also defines retrieval-quality measures for the search module—Relevance Density, Topic Coverage, Diversity, and Quality—to compare search engines and retrieval pipelines. These metrics are not the main end-task targets, but they are used to analyze whether the retrieval subsystem balances topical focus with breadth [2602.14367].

## 5. Empirical performance, ablations, and alignment

In the main quantitative evaluation, InnoEval outperforms the reported baselines across point-wise, pair-wise, and group-wise tasks. Its point-wise binary results are $\mathrm{Acc}_2 = 75.58$ and $\mathrm{F1}_2 = 75.74$, while its point-wise ternary results are $\mathrm{Acc}_3 = 73.73$ and $\mathrm{F1}_3 = 74.56$ [2602.14367]. On pair-wise evaluation, it achieves 80.81 on easy pairs and 63.00 on hard pairs. On group-wise evaluation, it reaches 65.12 for Best, 76.03 for LIS, and 22.09 for Accuracy [2602.14367].

Relative to the strongest baseline, ScholarEval, the reported gains are substantial: $+16.18$ F1 points on ternary point-wise evaluation, $+6.39$ Accuracy points on easy pair-wise comparisons, $+3.00$ on hard pair-wise comparisons, $+15.70$ on group-wise Best selection, $+5.90$ on LIS, and $+7.56$ on group-wise Accuracy [2602.14367]. The paper attributes part of this advantage to multi-source evidence and decoupled criteria, noting that several baselines exhibit label collapse, with F1 materially below Accuracy.

Qualitative comparison using o4-mini as judge reports that InnoEval’s reviews beat CoT, RAG, ResearchAgent, InternAgent, and ScholarEval on Overall Quality in 90.70%, 90.32%, 89.86%, 85.71%, and 71.89% of cases, respectively. The advantages are also reported along Rationality, Supportiveness, Depth, and Constructiveness [2602.14367].

Human evaluation on 60 sampled instances finds strong positive Pearson correlations of at least 0.5 between InnoEval’s scores and both human scores and LLM-extracted scores from peer-review comments. Clarity shows the highest correlation, whereas Significance is lower, which the paper attributes to the inherent difficulty of estimating broad impact [2602.14367].

The ablation studies identify three components as especially consequential. Removing the grounding agent degrades performance, indicating that fine-grained evidence selection matters. Disabling persona personalization reduces both point-wise and group-wise performance, supporting the claim that multi-perspective review mitigates single-judge subjectivity. Restricting retrieval to literature only also harms results, particularly for pair-wise and group-wise comparisons, where web and code evidence add discriminative context [2602.14367]. Additional analysis reports that multi-perspective test-time scaling improves results more than vanilla test-time scaling without personas, and that the main setting of five personas balances effectiveness and inference cost.

The system is also used as feedback for idea generation. When its reviews are inserted into ResearchAgent’s idea iteration pipeline, idea quality improves across problem formulation, methodology, and experimental design, more than with ScholarEval’s feedback. Linear regression on point-wise predictions further suggests that Novelty is the most decisive predictor of acceptance, while Feasibility becomes more important when distinguishing Poster from Highlight; Clarity has the weakest effect among the five dimensions for accept/highlight outcomes [2602.14367].

## 6. Operational characteristics, limitations, and safeguards

The reported reference configuration uses DeepSeek-V3.2 as backbone, with bge-base-en-v1.5 embeddings and bge-reranker-base for retrieval and reranking. Mean per-sample cost is reported as \$0.42, and runtime is about half an hour per idea, although parallel processing is said to support approximately 100 samples per hour [2602.14367]. Code and data are open-sourced, and a live demo is provided.

The framework includes several explicit safeguards. Hybrid ranking is intended to reduce both embedding-only fragility and LLM-judge bias. Grounding is used to suppress irrelevant or noisy retrieval. Persona diversity addresses single-judge subjectivity. Timestamp-aware retrieval separates fair historical evaluation from future-oriented revision suggestions [2602.14367].

The stated limitations are equally explicit. The current scope is AI-focused, and generalization to biology, medicine, physics, and other sciences is left to future work. The system is text-only rather than multimodal. Its deep heterogeneous search and multi-perspective review are computationally heavier than simpler evaluators. The paper also emphasizes that InnoEval should augment, not replace, human expert judgment, since hallucinations and uneven source quality remain risks even under grounding and reviewer diversification [2602.14367].

These limitations define the framework’s present boundary conditions. A plausible implication is that InnoEval is best understood not as an autonomous referee but as a structured, evidence-heavy decision support layer for idea screening, comparison, and revision.

## 7. Broader usages of the term and related evaluation paradigms

Outside research-idea evaluation, “InnoEval” and closely related formulations have been used to denote innovation-oriented evaluation in several adjacent literatures. In the InnoGym framework, InnoEval refers to evaluating the innovation potential of AI agents through two complementary quantities: performance gain,
$$
G(s) = V(s) - V^*_{\mathrm{known}},
$$
and novelty,
$$
N(s) = C(s)\cdot \min_{h \in S_{\mathrm{known}}} D_{\mathrm{AGENT}}(s,h),
$$
with 18 curated Improvable Tasks and a unified execution environment called iGym [2512.01822]. That formulation emphasizes the joint assessment of creativity and effectiveness rather than idea review.

In information retrieval, innovation-oriented evaluation has been operationalized through rareness-based modifications of classical ranking metrics. The document rareness function is defined as
$$
R(d) = 1 - \frac{S_d}{S},
$$
leading to
$$
P@K_{\mathrm{Rareness}} = \frac{1}{k}\sum_{i=1}^{k} \mathrm{Rel}(d_i)\bigl(1+\alpha R(d_i)\bigr)
$$
and
$$
AP_{\mathrm{Rareness}} = \frac{1}{N_R}\sum_{i=1}^{k}\mathrm{Rel}(d_i)\,P@K_{\mathrm{Rareness}}(i).
$$
These metrics reward systems that retrieve rare relevant documents missed by most competing runs, thereby encouraging methodological diversity across participants [2301.08062].

A separate line of work uses “InnoEval” as the name of a proposed evaluation infrastructure rather than a fixed metric. A synthesis based on EvalAI describes such a framework as a containerized, queue-decoupled platform supporting static tasks, interactive agents, human-in-the-loop evaluation, remote evaluation, arbitrary phases and splits, and public/private leaderboards [1902.03570]. Another proposal, derived from a blockchain-based decentralized framework for collaborative LLM evaluation, argues that InnoEval should use multi-run, multi-environment evaluation, commit-reveal protocols, median-based consensus, staking, redundancy, and confidence intervals. In that setting, the reported standard deviation on HumanEval drops from 1.67 in centralized repeated runs to 0.28 under the decentralized framework [2602.08229].

TaskEval, implemented as GenValidator, is also presented as relevant to an InnoEval initiative for foundation-model applications. It contributes a task-agnostic meta-model, an interaction protocol for eliciting evaluation requirements, and an eval synthesiser that selects or generates task-specific evaluators and UIs. Its preliminary “evaluating the eval” results report 93% accuracy for chart data extraction and 90% for document question answering [2512.04442].

Taken together, these usages reveal that “InnoEval” has become an umbrella label for evaluation schemes that try to reward innovation, recover methodological diversity, or improve evidential and statistical rigor. The 2026 research-idea framework remains the most direct and fully specified use of the name, but the broader family shares a common orientation: evaluation should not reduce to a single score produced by a single judge under a single source of evidence [2602.14367].

Source: https://www.emergentmind.com/topics/innoeval