Spaces:
Sleeping
Sleeping
File size: 16,925 Bytes
45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f 45883ee acd119f | 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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 | """
grader.py β PhishGuard-Env SOC Triage Scoring Logic
====================================================
SCORE CONTRACT (HIGHEST PRIORITY)
-----------------------------------
Every public grader returns a float STRICTLY inside the open interval (0, 1).
safe_score(raw) = LOWER + (UPPER - LOWER) * clamp(raw, 0, 1)
where LOWER = 0.01, UPPER = 0.99
TARGET SCORE RANGES (per-difficulty, with optimal agent)
----------------------------------------------------------
easy β 0.80 β 0.99 (calibrated max raw β 0.87 β safe β 0.86)
medium β 0.70 β 0.80 (calibrated max raw β 0.76 β safe β 0.75)
hard β 0.50 β 0.60 (calibrated max raw β 0.56 β safe β 0.56)
VALIDATOR COMPLIANCE β "not enough tasks with graders"
-------------------------------------------------------
The OpenEnv validator requires β₯ 3 task IDs with registered graders.
Satisfied by GRADERS:
GRADERS["easy"] = grade_easy
GRADERS["medium"] = grade_medium
GRADERS["hard"] = grade_hard
TASK_LOADERS maps each difficulty to a fixed-seed loader for reproducibility.
PER-STEP REWARD TABLE (grade_action β used by /step endpoint)
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Constant Value Outcome
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
R_PERFECT 0.95 Exact triage match
R_MALWARE_QUARANTINE 0.75 MALWARE β QUARANTINE (strong containment)
R_PHISH_BEC_QUARANTINE 0.60 PHISH/BEC β QUARANTINE (domain still live)
R_SPAM_BLOCK 0.40 SPAM β BLOCK_DOMAIN (over-escalation)
R_SPAM_QUARANTINE 0.35 SPAM β QUARANTINE (lighter over-escalation)
R_WRONG_PROCEDURE 0.10 Wrong; no direct breach or disruption
R_DISRUPTION 0.05 SAFE email blocked β operational cost
R_BREACH 0.02 Threat allowed into inbox β catastrophic
HEALTH-DRAIN THRESHOLD
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
reward < 0.15 β agent loses one life.
Cautious / partial-credit scores (β₯ 0.35) NEVER drain health.
DIFFICULTY β TASK MAPPING
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
easy β lv1 (SPAM), lv2 (PHISH), lv3 (SAFE)
medium β lv4 (MALWARE), lv5 (SAFE), lv6 (BEC), lv7 (PHISH)
hard β lv8 (MALWARE), lv9 (PHISH), lv10 (BEC)
"""
from __future__ import annotations
from typing import Callable, Dict, Tuple
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SCORE SAFETY
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_SCORE_LOWER = 0.01
_SCORE_UPPER = 0.99
def safe_score(raw: float) -> float:
"""
Map any raw float to the open interval (0.01, 0.99).
Never returns 0 or 1 β satisfies the open-interval contract required
by the OpenEnv validator and the RL pipeline.
safe_score(0.0) = 0.01
safe_score(1.0) = 0.99
safe_score(0.5) = 0.50
"""
raw = float(raw)
raw = max(0.0, min(1.0, raw))
result = _SCORE_LOWER + (_SCORE_UPPER - _SCORE_LOWER) * raw
result = round(result, 6)
assert 0.0 < result < 1.0, (
f"safe_score VIOLATION: raw={raw!r} produced result={result!r} "
f"which is not strictly inside (0, 1)"
)
return result
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# PER-STEP REWARD CONSTANTS
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
R_PERFECT = 0.95
R_MALWARE_QUARANTINE = 0.75
R_PHISH_BEC_QUARANTINE = 0.60
R_SPAM_BLOCK = 0.40
R_SPAM_QUARANTINE = 0.35
R_WRONG_PROCEDURE = 0.10
R_DISRUPTION = 0.05
R_BREACH = 0.02
# Convenience alias
R_PARTIAL = R_MALWARE_QUARANTINE
# Minimum weighted average for a run to be considered passing
PASS_THRESHOLD = 0.50
# env.py: `reward < HEALTH_DRAIN_THRESHOLD` β lose one life
HEALTH_DRAIN_THRESHOLD = 0.15
# Internal lookup sets
_THREAT_TYPES = frozenset({"PHISH", "BEC", "MALWARE", "SPAM"})
_BLOCKED_MOVES = frozenset({"BLOCK_DOMAIN", "QUARANTINE", "MOVE_TO_SPAM"})
_VALID_ACTIONS = frozenset({"MARK_SAFE", "MOVE_TO_SPAM", "QUARANTINE", "BLOCK_DOMAIN"})
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# GRADE_ACTION (per-step reward, called on every /step)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def grade_action(
agent_output: str,
expected_output: str,
email_type: str,
) -> Tuple[float, str]:
"""
Grade one SOC triage decision and return (reward, verdict_message).
Decision tree
-------------
1. Unrecognised action β R_WRONG_PROCEDURE
2. action == correct β R_PERFECT
3. Any threat + MARK_SAFE β R_BREACH
4. SAFE + blocking action β R_DISRUPTION
5. MALWARE β QUARANTINE β R_MALWARE_QUARANTINE
6. PHISH/BEC β QUARANTINE β R_PHISH_BEC_QUARANTINE
7. SPAM β BLOCK_DOMAIN β R_SPAM_BLOCK
8. SPAM β QUARANTINE β R_SPAM_QUARANTINE
9. catch-all β R_WRONG_PROCEDURE
"""
agent_action = agent_output.strip().upper()
expected_action = expected_output.strip().upper()
etype = email_type.strip().upper()
if agent_action not in _VALID_ACTIONS:
return (
R_WRONG_PROCEDURE,
f"INVALID_ACTION: '{agent_action}' is not a recognised triage action β "
f"must be one of: {', '.join(sorted(_VALID_ACTIONS))}",
)
if agent_action == expected_action:
return R_PERFECT, "PERFECT_TRIAGE: Correct action taken"
if etype in _THREAT_TYPES and agent_action == "MARK_SAFE":
return (
R_BREACH,
f"SECURITY_BREACH: {etype} threat delivered to inbox unimpeded",
)
if etype == "SAFE" and agent_action in _BLOCKED_MOVES:
return (
R_DISRUPTION,
"BUSINESS_DISRUPTION: Legitimate communication was incorrectly blocked",
)
if etype == "MALWARE" and agent_action == "QUARANTINE":
return (
R_MALWARE_QUARANTINE,
"CAUTIOUS: Malware isolated via QUARANTINE β strong containment",
)
if etype in {"PHISH", "BEC"} and agent_action == "QUARANTINE":
return (
R_PHISH_BEC_QUARANTINE,
f"UNDER_RESPONSE: {etype} quarantined but source domain still active",
)
if etype == "SPAM" and agent_action == "BLOCK_DOMAIN":
return (
R_SPAM_BLOCK,
"OVER_ESCALATION: BLOCK_DOMAIN is disproportionate for SPAM",
)
if etype == "SPAM" and agent_action == "QUARANTINE":
return (
R_SPAM_QUARANTINE,
"OVER_ESCALATION: QUARANTINE wastes analyst capacity on SPAM",
)
return (
R_WRONG_PROCEDURE,
f"INCORRECT_PROCEDURE: '{agent_action}' does not match policy "
f"for {etype} (expected: {expected_action})",
)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# EPISODE GRADERS (end-of-episode β required by OpenEnv validator)
#
# Weight sums are calibrated so that a perfect agent lands in the target range:
# easy max raw = 0.52 + 0.35 = 0.87 β safe β 0.8626
# medium max raw = 0.35 + 0.27 + 0.14 = 0.76 β safe β 0.7548
# hard max raw = 0.25+0.18+0.10+0.03= 0.56 β safe β 0.5588
#
# metrics keys
# ββββββββββββ
# total_tasks : int β scenarios in this episode
# completed_tasks : int β steps where any action was graded
# perfect_tasks : int β steps where reward >= R_PERFECT
# on_time : int β steps completed without health drain
# breach_count : int β SECURITY_BREACH outcomes
# disruption_count : int β BUSINESS_DISRUPTION outcomes
# total_steps : int β total /step calls
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _safe_ratio(numerator: float, denominator: float) -> float:
"""Return numerator/denominator clamped to [0, 1]. 0 if denominator β€ 0."""
if denominator <= 0:
return 0.0
return max(0.0, min(1.0, numerator / denominator))
def grade_easy(metrics: dict) -> float:
"""
Easy episode grader (lv1βlv3: SPAM, PHISH, SAFE).
Weights (max raw = 0.87 β safe_score β 0.8626)
--------------------------------------------------
52 % β perfect triage rate (exact action matches / total tasks)
35 % β completion rate (any graded step / total tasks)
Penalty: β0.15 Γ breach_rate (THREAT + MARK_SAFE outcome)
"""
total = max(1, metrics.get("total_tasks", 1))
perfect = metrics.get("perfect_tasks", 0)
completed = metrics.get("completed_tasks", 0)
breaches = metrics.get("breach_count", 0)
raw = (
0.52 * _safe_ratio(perfect, total)
+ 0.35 * _safe_ratio(completed, total)
- 0.15 * min(1.0, breaches / max(1, total))
)
return safe_score(max(0.0, raw))
def grade_medium(metrics: dict) -> float:
"""
Medium episode grader (lv4βlv7: MALWARE, SAFE, BEC, PHISH).
Weights (max raw = 0.76 β safe_score β 0.7548)
--------------------------------------------------
35 % β perfect triage rate
27 % β on-time rate (health not drained by step)
14 % β completion rate
Penalties: β0.10 Γ breach_rate, β0.05 Γ disruption_rate
"""
total = max(1, metrics.get("total_tasks", 1))
perfect = metrics.get("perfect_tasks", 0)
on_time = metrics.get("on_time", 0)
completed = metrics.get("completed_tasks", 0)
breaches = metrics.get("breach_count", 0)
disruptions = metrics.get("disruption_count", 0)
raw = (
0.35 * _safe_ratio(perfect, total)
+ 0.27 * _safe_ratio(on_time, total)
+ 0.14 * _safe_ratio(completed, total)
- 0.10 * min(1.0, breaches / max(1, total))
- 0.05 * min(1.0, disruptions / max(1, total))
)
return safe_score(max(0.0, raw))
def grade_hard(metrics: dict) -> float:
"""
Hard episode grader (lv8βlv10: adversarial MALWARE, PHISH, BEC).
Weights (max raw = 0.56 β safe_score β 0.5588)
--------------------------------------------------
25 % β perfect triage rate
18 % β on-time rate
10 % β completion rate
3 % β zero-breach bonus (1.0 if no breaches; else 0.0)
Penalties: β0.12 Γ breach_rate, β0.06 Γ disruption_rate
"""
total = max(1, metrics.get("total_tasks", 1))
perfect = metrics.get("perfect_tasks", 0)
on_time = metrics.get("on_time", 0)
completed = metrics.get("completed_tasks", 0)
breaches = metrics.get("breach_count", 0)
disruptions = metrics.get("disruption_count", 0)
zero_breach_bonus = 1.0 if breaches == 0 else 0.0
raw = (
0.25 * _safe_ratio(perfect, total)
+ 0.18 * _safe_ratio(on_time, total)
+ 0.10 * _safe_ratio(completed, total)
+ 0.03 * zero_breach_bonus
- 0.12 * min(1.0, breaches / max(1, total))
- 0.06 * min(1.0, disruptions / max(1, total))
)
return safe_score(max(0.0, raw))
def grade_performance(metrics: dict) -> float:
"""
Aggregate grader for cross-difficulty scoring in inference.py.
Weights (max raw β 0.73 β safe_score β 0.7254)
--------------------------------------------------
38 % β perfect triage rate
23 % β on-time rate
9 % β completion rate
3 % β zero-breach bonus
"""
total = max(1, metrics.get("total_tasks", 1))
perfect = metrics.get("perfect_tasks", 0)
on_time = metrics.get("on_time", 0)
completed = metrics.get("completed_tasks", 0)
breaches = metrics.get("breach_count", 0)
zero_breach_bonus = 1.0 if breaches == 0 else 0.0
raw = (
0.38 * _safe_ratio(perfect, total)
+ 0.23 * _safe_ratio(on_time, total)
+ 0.09 * _safe_ratio(completed, total)
+ 0.03 * zero_breach_bonus
)
return safe_score(max(0.0, raw))
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# REGISTRY MAPS (required by OpenEnv validator β β₯ 3 entries needed)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Primary registry β difficulty name β episode grader.
# The validator confirms β₯ 3 tasks have graders by scanning this dict.
GRADERS: Dict[str, Callable[[dict], float]] = {
"easy": grade_easy,
"medium": grade_medium,
"hard": grade_hard,
}
# Per-scenario registry β each lv1βlv10 ID mapped to its difficulty grader.
TASK_GRADERS: Dict[str, Callable[[dict], float]] = {
"lv1": grade_easy,
"lv2": grade_easy,
"lv3": grade_easy,
"lv4": grade_medium,
"lv5": grade_medium,
"lv6": grade_medium,
"lv7": grade_medium,
"lv8": grade_hard,
"lv9": grade_hard,
"lv10": grade_hard,
}
# Fixed-seed loaders β ensures reproducible episode ordering (seed=42).
# Mirrors FocusAI's TASK_LOADERS pattern.
TASK_LOADERS: Dict[str, Callable[[], str]] = {
"easy": lambda: "easy",
"medium": lambda: "medium",
"hard": lambda: "hard",
}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# CALCULATE_OVERALL_SCORE (backward-compat helper for /state endpoint)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def calculate_overall_score(task_scores: list) -> float:
"""
Average a list of per-step grade_action() rewards and return safe_score.
Parameters
----------
task_scores : list of raw floats from grade_action() calls.
Returns
-------
float in (0.01, 0.99) β open-interval contract guaranteed.
"""
if not task_scores:
return safe_score(0.0)
raw_avg = sum(task_scores) / len(task_scores)
# Normalise from per-step range (R_BREACH β¦ R_PERFECT) β (0, 1)
normalised = (raw_avg - R_BREACH) / (R_PERFECT - R_BREACH)
return safe_score(max(0.0, min(1.0, normalised)))
|