Index
ipw.evaluation
¶
EvaluationHandler
¶
Bases: ABC
Base class for per-dataset evaluation strategies.
Source code in intelligence-per-watt/src/ipw/evaluation/base.py
evaluate(*, problem, reference, model_answer, metadata)
abstractmethod
¶
Evaluate a single model answer.
Returns:
| Type | Description |
|---|---|
Optional[bool]
|
(is_correct, metadata) |
Dict[str, object]
|
|
Tuple[Optional[bool], Dict[str, object]]
|
|
Source code in intelligence-per-watt/src/ipw/evaluation/base.py
FRAMESHandler
¶
Bases: EvaluationHandler
LLM-as-judge evaluation for FRAMES multi-hop factual retrieval.
Source code in intelligence-per-watt/src/ipw/evaluation/frames.py
GAIAHandler
¶
Bases: EvaluationHandler
GAIA evaluation: exact match with normalization + LLM fallback.
Source code in intelligence-per-watt/src/ipw/evaluation/gaia.py
GPQAHandler
¶
Bases: BaseMCQHandler
Evaluation for GPQA tasks.
Source code in intelligence-per-watt/src/ipw/evaluation/gpqa.py
SuperGPQAHandler
¶
Bases: BaseMCQHandler
Evaluation for SuperGPQA tasks.
Source code in intelligence-per-watt/src/ipw/evaluation/gpqa.py
HLEHandler
¶
Bases: EvaluationHandler
LLM-as-judge evaluation for Humanity's Last Exam (CORRECT / INCORRECT / NOT_ATTEMPTED).
Source code in intelligence-per-watt/src/ipw/evaluation/hle.py
Math500Handler
¶
Bases: EvaluationHandler
Evaluation for MATH-500-style problems.
Two-stage approach: 1. First, uses LLM to verify mathematical equivalence (with retry logic) 2. If LLM verification fails, falls back to extraction + normalization
Source code in intelligence-per-watt/src/ipw/evaluation/math500.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | |
evaluate(*, problem, reference, model_answer, metadata)
¶
Two-stage evaluation: 1. Try LLM-based verification (with retries) 2. Fall back to extraction + normalization if LLM fails
Source code in intelligence-per-watt/src/ipw/evaluation/math500.py
BaseMCQHandler
¶
Bases: EvaluationHandler
Shared logic for multiple-choice (letter-based) evaluations.
Source code in intelligence-per-watt/src/ipw/evaluation/mcq.py
MMLUProHandler
¶
Bases: BaseMCQHandler
Evaluation for MMLU-Pro multiple-choice tasks.
Source code in intelligence-per-watt/src/ipw/evaluation/mmlu_pro.py
NaturalReasoningHandler
¶
Bases: EvaluationHandler
LLM-based evaluation comparing a response to a ground-truth answer.
Source code in intelligence-per-watt/src/ipw/evaluation/natural_reasoning.py
SimpleQAHandler
¶
Bases: EvaluationHandler
LLM-as-judge evaluation for SimpleQA (CORRECT / INCORRECT / NOT_ATTEMPTED).
Source code in intelligence-per-watt/src/ipw/evaluation/simpleqa.py
TerminalBenchHandler
¶
Bases: EvaluationHandler
LLM-as-judge evaluation for TerminalBench tasks.
Source code in intelligence-per-watt/src/ipw/evaluation/terminalbench.py
WildChatHandler
¶
Bases: EvaluationHandler
LLM-based semantic equivalence check for free-form chat responses.
Source code in intelligence-per-watt/src/ipw/evaluation/wildchat.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | |