-
Notifications
You must be signed in to change notification settings - Fork 517
Add AA-Omniscience eval recipe; harden judge/run conventions in the eval skill #1834
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
adc36eb
Add AA-Omniscience eval recipe; harden judge/run conventions
cjluo-nv e5861d6
Address PR #1834 review comments
cjluo-nv ac56f2c
Report Omniscience Index + non-hallucination rate in recipe
cjluo-nv 07cc217
Make Omniscience Index the primary reported metric
cjluo-nv File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| # AA-Omniscience | ||
|
|
||
| ## Task Details | ||
|
|
||
| - Reference: <https://docs.nvidia.com/nemo/evaluator/latest/evaluation/benchmarks/catalog/all/harnesses/nemo_skills.html#nemo-skills-ns-omniscience> | ||
|
|
||
| ## Params | ||
|
|
||
| Knowledge / hallucination benchmark, params aligned to Artificial Analysis Index | ||
| v2; judge-scored. The judge `model_id` is hardcoded in the fragment below | ||
| (**gcp/google/gemini-3-flash-preview**) — swap it for an equivalent on your own | ||
| endpoint if needed. The judge `url` comes from `.env` (`INFERENCE_JUDGE_URL`); only | ||
| `api_key` (`INFERENCE_API_KEY`) is exported and read by the harness. Keep the judge | ||
| fixed across comparable runs. | ||
|
|
||
| `++parse_reasoning=False` is required (golden knob — omniscience scores the final | ||
| answer, not the reasoning trace). | ||
|
|
||
| ## YAML Fragment | ||
|
|
||
| Use this inside the top-level `evaluation.tasks` list: | ||
|
|
||
| ```yaml | ||
| - name: nemo_skills.ns_omniscience | ||
| container: nvcr.io/nvidia/eval-factory/nemo-skills:26.05.1 | ||
| env_vars: | ||
| INFERENCE_API_KEY: host:INFERENCE_API_KEY | ||
| nemo_evaluator_config: | ||
| config: | ||
| params: | ||
| extra: | ||
| num_repeats: 10 | ||
| args: "++parse_reasoning=False" | ||
| judge: | ||
| api_key: INFERENCE_API_KEY | ||
| model_id: gcp/google/gemini-3-flash-preview # use an equivalent on your own endpoint if needed | ||
| url: <INFERENCE_JUDGE_URL> # from .env (/v1 base) | ||
| ``` | ||
|
|
||
| ## Score Extraction from mlflow | ||
|
|
||
| **Primary result — Omniscience Index** (-100 to 100): `omniscience_pass_at_1_avg-of-N_judge_omni_index`. This is AA's headline metric: accuracy net of hallucinations, rewarding abstention over guessing wrong (so it can be negative). Report this one. See the AA methodology: <https://artificialanalysis.ai/methodology/intelligence-benchmarking#aa-omniscience>. | ||
|
|
||
| Also report (same `pass_at_1_avg-of-N` aggregation): | ||
|
|
||
| - **Accuracy** (0-100): `omniscience_pass_at_1_avg-of-N_judge_correct` — % of questions answered correctly. | ||
| - **Non-hallucination rate** (0-100): `100 - omniscience_pass_at_1_avg-of-N_judge_omni_hallucination` — the `judge_omni_hallucination` key is the hallucination rate, so non-hallucination = `1 - hallucination`. | ||
|
|
||
| N is the repeat count (10). If the repeat count is unknown, use the highest available `avg-of-N`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You added
omniscienceto the AA Index v2 suite list here, and this line points readers toreferences/quantization-benchmarks.mdfor the suite. But that reference file wasn't updated in this PR — it still lists onlygpqa_diamond, hle, lcr, scicode, ifbench, mmmu_pro, tau2_bench_telecomin its recipe table, "Recommended sets", and judge-endpoint notes, with no mention of AA-Omniscience. Please add a row/entry for Omniscience there (and to the "AA suite (text LLM)" recommended set + the judge-endpoint note, since it's judge-scored) so the two docs stay in sync.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed in e5861d6 — added AA-Omniscience to
references/quantization-benchmarks.md: the task table, the "AA suite (text LLM)" recommended set, the repeat-count note (num_repeats=10), and the judge-endpoint note, so it's back in sync with the suite list in SKILL.md.