File size: 16,632 Bytes
fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa fe406e9 afe67aa | 1 2 3 4 5 6 7 8 9 10 11 12 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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 | """
Reward computation for IndicScriptureQA β LLM-as-a-Judge.
Uses an LLM (via OpenAI client) to evaluate both factual accuracy and
semantic structure quality. Falls back to lightweight token heuristics
if the LLM call fails.
Environment variables (shared with inference.py):
API_BASE_URL LLM endpoint
MODEL_NAME Model identifier
HF_TOKEN API key
"""
from __future__ import annotations
import json
import os
import re
from typing import List, Optional, Tuple
from openai import OpenAI
from models import ActionType, EnvState, StructuralMeta
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# LLM CLIENT
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_client: Optional[OpenAI] = None
def _get_client() -> OpenAI:
global _client
if _client is None:
_client = OpenAI(
base_url=os.getenv("API_BASE_URL", "https://router.huggingface.co/v1"),
api_key=os.getenv("HF_TOKEN") or os.getenv("API_KEY", ""),
)
return _client
def _get_model() -> str:
return os.getenv("MODEL_NAME", "Qwen/Qwen2.5-72B-Instruct")
def _llm_judge(system: str, user_prompt: str) -> Optional[dict]:
"""Call the LLM and parse a JSON response. Returns None on any failure."""
try:
client = _get_client()
resp = client.chat.completions.create(
model=_get_model(),
messages=[
{"role": "system", "content": system},
{"role": "user", "content": user_prompt},
],
temperature=0.1,
max_tokens=500,
)
raw = (resp.choices[0].message.content or "").strip()
if raw.startswith("```"):
raw = raw.split("\n", 1)[-1].rsplit("```", 1)[0].strip()
return json.loads(raw)
except Exception as exc:
print(f"[JUDGE] LLM call failed, using fallback: {exc}", flush=True)
return None
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# JUDGE PROMPTS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
JUDGE_SYSTEM = (
"You are an expert judge evaluating answers about Indic scriptures "
"(Vedas, Upanishads, Ramayana, Mahabharata, Bhagavad Gita, Puranas). "
"You evaluate both factual accuracy and semantic structure quality.\n\n"
"Respond with ONLY a valid JSON object. No markdown fences, no "
"explanation, no text outside the JSON braces."
)
def _terminal_accept_prompt(state: EnvState) -> str:
return json.dumps({
"task": "Score the candidate answer against the reference on all axes.",
"question": state.question,
"candidate_answer": state.current_answer,
"reference_answer": state.ground_truth_answer,
"candidate_citations": state.current_citations,
"expected_citations": state.ground_truth_citations,
"structural_requirements": {
"required_terms": state.structural_meta.required_terms,
"required_sections": state.structural_meta.required_sections,
"expected_order": state.structural_meta.expected_order,
"banned_terms": state.structural_meta.banned_terms,
},
"output_format": {
"factual_score": "0.0-1.0: semantic accuracy of candidate vs reference",
"citation_score": "0.0-1.0: fraction of expected citations covered",
"terminology_score": "-0.5 to 1.0: correct Sanskrit/domain terms present; NEGATIVE if banned terms found",
"completeness_score": "0.0-1.0: all required conceptual sections covered",
"ordering_score": "0.0-1.0: concepts appear in expected logical sequence",
"coherence_score": "0.0-1.0: smooth transitions, balanced structure, readable flow",
"feedback": "one-sentence summary of quality",
},
}, indent=2)
def _terminal_reject_prompt(state: EnvState) -> str:
return json.dumps({
"task": "Judge whether this answer deserves rejection.",
"question": state.question,
"candidate_answer": state.current_answer,
"reference_answer": state.ground_truth_answer,
"structural_requirements": {
"required_terms": state.structural_meta.required_terms,
"banned_terms": state.structural_meta.banned_terms,
},
"output_format": {
"answer_is_flawed": "boolean: true if the answer has significant factual or structural problems",
"feedback": "one-sentence explanation",
},
}, indent=2)
def _step_delta_prompt(
state: EnvState,
action_type: ActionType,
old_answer: str,
new_answer: str,
) -> str:
if action_type == ActionType.EDIT:
focus = "Focus on FACTUAL improvement (60%) and STRUCTURAL improvement (40%)."
else:
focus = (
"Focus primarily on STRUCTURAL improvement (ordering, terminology, "
"coherence). Penalise heavily if factual content was lost."
)
return json.dumps({
"task": f"Evaluate whether this {action_type.value} improved the answer.",
"focus": focus,
"question": state.question,
"old_answer": old_answer,
"new_answer": new_answer,
"reference_answer": state.ground_truth_answer,
"structural_requirements": {
"required_terms": state.structural_meta.required_terms,
"required_sections": state.structural_meta.required_sections,
"expected_order": state.structural_meta.expected_order,
"banned_terms": state.structural_meta.banned_terms,
},
"output_format": {
"factual_delta": "-1.0 to 1.0 (positive = factual improvement)",
"structural_delta": "-1.0 to 1.0 (positive = structural improvement)",
"feedback": "one-sentence explanation of what changed",
},
}, indent=2)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# FALLBACK HEURISTICS (used when LLM is unavailable)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _tokenize(text: str) -> List[str]:
return [t for t in re.split(r"[^a-zA-Z0-9\u0900-\u097F]+", text.lower()) if t]
def _token_f1(candidate: str, reference: str) -> float:
cand = set(_tokenize(candidate))
ref = set(_tokenize(reference))
if not cand or not ref:
return 0.0
common = cand & ref
if not common:
return 0.0
p, r = len(common) / len(cand), len(common) / len(ref)
return 2 * p * r / (p + r)
def _citation_recall_heuristic(predicted: List[str], ground_truth: List[str]) -> float:
if not ground_truth:
return 1.0
norm = lambda s: re.sub(r"\s+", " ", s.strip().lower())
gt = [norm(g) for g in ground_truth]
pr = [norm(p) for p in predicted]
matched = sum(1 for g in gt if any(g in p or p in g for p in pr))
return matched / len(gt)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# PER-STEP REWARD
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def step_reward(
state: EnvState, action_type: ActionType, payload: str | None,
) -> Tuple[float, str]:
"""Compute per-step reward and feedback. Uses LLM judge for EDIT/RESTRUCTURE."""
# ββ RETRIEVE ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if action_type == ActionType.RETRIEVE:
if state.retrieval_count >= 3:
return -0.15, "Redundant retrieval β already retrieved 3 times."
elif state.available_passages:
return 0.05, "Passages retrieved."
else:
return -0.05, "No passages available for retrieval."
# ββ CITE ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if action_type == ActionType.CITE:
if not payload:
return -0.05, "Empty citation."
cr = _citation_recall_heuristic([payload], state.ground_truth_citations)
if cr > 0:
return 0.15, "Correct citation added."
return -0.05, "Citation does not match expected sources."
# ββ ACCEPT / REJECT ββββββββββββββββββββββββββββββββββββββββββββββββββ
if action_type in (ActionType.ACCEPT, ActionType.REJECT):
return 0.0, ""
# ββ EDIT / RESTRUCTURE β LLM judge βββββββββββββββββββββββββββββββββββ
if not payload:
return -0.10, f"Empty {action_type.value.lower()} β no content provided."
old_answer = state.current_answer
result = _llm_judge(
JUDGE_SYSTEM,
_step_delta_prompt(state, action_type, old_answer, payload),
)
if result is not None:
fd = max(-1.0, min(1.0, float(result.get("factual_delta", 0.0))))
sd = max(-1.0, min(1.0, float(result.get("structural_delta", 0.0))))
fb = result.get("feedback", "")
if action_type == ActionType.EDIT:
combined = 0.6 * fd + 0.4 * sd
if combined > 0.03:
return 0.20 + combined, f"Edit improved (fact Ξ{fd:+.2f}, struct Ξ{sd:+.2f}). {fb}"
elif combined < -0.03:
return -0.20, f"Edit degraded (fact Ξ{fd:+.2f}, struct Ξ{sd:+.2f}). {fb}"
else:
return -0.05, f"Edit had negligible effect. {fb}"
else: # RESTRUCTURE
if fd < -0.10:
return -0.25, f"Restructure lost factual content (fact Ξ{fd:+.2f}). {fb}"
elif sd > 0.05:
return 0.25 + sd, f"Restructure improved structure (Ξ{sd:+.2f}). {fb}"
elif sd < -0.03:
return -0.15, f"Restructure degraded structure (Ξ{sd:+.2f}). {fb}"
else:
return -0.05, f"Restructure had negligible effect. {fb}"
# ββ Fallback: token-F1 delta ββββββββββββββββββββββββββββββββββββββββββ
old_sim = _token_f1(old_answer, state.ground_truth_answer)
new_sim = _token_f1(payload, state.ground_truth_answer)
delta = new_sim - old_sim
label = action_type.value
if delta > 0.03:
return 0.20 + delta, f"{label} improved (Ξ{delta:+.2f}, fallback scoring)."
elif delta < -0.03:
return -0.20, f"{label} degraded (Ξ{delta:+.2f}, fallback scoring)."
return -0.05, f"{label} negligible effect (fallback scoring)."
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# TERMINAL REWARD
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def terminal_reward(
state: EnvState, action_type: ActionType,
) -> Tuple[float, str]:
"""Terminal reward using LLM-as-a-judge, with heuristic fallback."""
# ββ REJECT ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if action_type == ActionType.REJECT:
result = _llm_judge(JUDGE_SYSTEM, _terminal_reject_prompt(state))
if result is not None:
is_flawed = result.get("answer_is_flawed", True)
fb = result.get("feedback", "")
if is_flawed:
return 0.30, f"Correctly rejected a flawed answer. {fb}"
else:
return -0.50, f"Incorrectly rejected a valid answer. {fb}"
if not state.answer_is_correct:
return 0.30, "Correctly rejected a flawed answer (fallback)."
return -0.50, "Incorrectly rejected a valid answer (fallback)."
# ββ ACCEPT β LLM judge ββββββββββββββββββββββββββββββββββββββββββββββββ
result = _llm_judge(JUDGE_SYSTEM, _terminal_accept_prompt(state))
if result is not None:
fs = max(0.0, min(1.0, float(result.get("factual_score", 0.0))))
cs = max(0.0, min(1.0, float(result.get("citation_score", 0.0))))
ts = max(-0.5, min(1.0, float(result.get("terminology_score", 0.0))))
comp = max(0.0, min(1.0, float(result.get("completeness_score", 0.0))))
os_ = max(0.0, min(1.0, float(result.get("ordering_score", 0.0))))
coh = max(0.0, min(1.0, float(result.get("coherence_score", 0.0))))
fb = result.get("feedback", "")
# structural composite
struct_score = 0.30 * max(ts, 0.0) + 0.25 * comp + 0.25 * os_ + 0.20 * coh
if ts < 0:
struct_score += 0.15 * ts
struct_score = max(0.0, min(1.0, struct_score))
efficiency = 0.20 * (state.steps_remaining / state.max_steps)
terminal = 0.90 * fs + 0.30 * cs + 0.70 * struct_score + efficiency
if fs < 0.3 and struct_score < 0.3:
terminal -= 0.50
quality = "poor"
elif fs < 0.5:
quality = "mediocre"
else:
quality = "good"
feedback = (
f"Accepted a {quality} answer "
f"(fact={fs:.2f}, cite={cs:.2f}, struct={struct_score:.2f} "
f"[term={ts:.2f} comp={comp:.2f} ord={os_:.2f} coh={coh:.2f}]). {fb}"
)
return terminal, feedback
# ββ Fallback: heuristic scoring βββββββββββββββββββββββββββββββββββββββ
fs = _token_f1(state.current_answer, state.ground_truth_answer)
cs = _citation_recall_heuristic(
state.current_citations, state.ground_truth_citations,
)
efficiency = 0.20 * (state.steps_remaining / state.max_steps)
terminal = 0.90 * fs + 0.30 * cs + efficiency
if fs < 0.3:
terminal -= 0.50
quality = "poor"
elif fs < 0.5:
quality = "mediocre"
else:
quality = "good"
return terminal, f"Accepted a {quality} answer (fact={fs:.2f}, cite={cs:.2f}, fallback)."
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SCORE NORMALISATION
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
MAX_REASONABLE_REWARD = 2.80
def normalize_score(cumulative_reward: float) -> float:
"""Clamp cumulative reward into [0, 1]."""
return max(0.0, min(1.0, cumulative_reward / MAX_REASONABLE_REWARD))
|