Spaces:
Sleeping
Sleeping
File size: 9,803 Bytes
6a1cba7 | 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 | from __future__ import annotations
import math
import re
from statistics import mean, pstdev
from typing import Any
REASONING_VERSION = "stem-bio-ai-reasoning-v1.3.2"
MODEL_STATUS = "diagnostic_only_uncalibrated_initial_prior"
def required_bits(confidence: float) -> float:
"""Return the evidence budget required for a confidence value in [0, 1]."""
value = _clip(float(confidence), 0.0, 1.0)
return max(0.0, -math.log2(1 - value + 1e-6))
def unique_token_count(text: str) -> int:
"""Deterministic evidence token count; no model tokenizer or locale rules."""
return len(set(re.findall(r"[A-Za-z0-9]+", str(text).lower())))
def observed_bits(text: str) -> float:
return math.log2(1 + unique_token_count(text))
def evidence_budget(
confidence: float,
evidence_text: str,
budget_deficit_max: float = 1.0,
) -> dict[str, Any]:
required = required_bits(confidence)
observed = observed_bits(evidence_text)
deficit = required - observed
return {
"confidence": round(_clip(confidence, 0.0, 1.0), 4),
"required_bits": round(required, 4),
"observed_bits": round(observed, 4),
"unique_token_count": unique_token_count(evidence_text),
"deficit": round(deficit, 4),
"budget_deficit_max": round(budget_deficit_max, 4),
"flagged": deficit > budget_deficit_max,
"status": "under_supported" if deficit > budget_deficit_max else "supported",
"basis": MODEL_STATUS,
}
def confidence_envelope(confidence: float, evidence_count: int) -> dict[str, Any]:
value = _clip(float(confidence), 0.0, 1.0)
count = max(0, int(evidence_count))
# Initial deterministic prior: more evidence narrows the diagnostic interval.
margin = min(0.35, 0.50 / math.sqrt(count + 1))
return {
"confidence": round(value, 4),
"evidence_count": count,
"lower": round(_clip(value - margin, 0.0, 1.0), 4),
"upper": round(_clip(value + margin, 0.0, 1.0), 4),
"margin": round(margin, 4),
"basis": MODEL_STATUS,
}
def lane_coherence(stage_scores: dict[str, float | int | None]) -> dict[str, Any]:
normalized = {key: _normalize_score(value) for key, value in stage_scores.items()}
pair_specs = [
("stage_1_readme_evidence", "stage_3_code_bio"),
("stage_3_code_bio", "stage_4_replication"),
]
pairs: list[dict[str, Any]] = []
for left, right in pair_specs:
left_score = normalized.get(left)
right_score = normalized.get(right)
if left_score is None or right_score is None:
continue
coherence = _clip(1 - abs(left_score - right_score), 0.0, 1.0)
pairs.append({
"pair": f"{left}:{right}",
"left": round(left_score, 4),
"right": round(right_score, 4),
"coherence": round(coherence, 4),
})
overall = mean([item["coherence"] for item in pairs]) if pairs else None
return {
"stage_scores": {k: (round(v, 4) if v is not None else None) for k, v in normalized.items()},
"pairs": pairs,
"overall": round(overall, 4) if overall is not None else None,
"status": _coherence_status(overall),
"basis": MODEL_STATUS,
}
def uncertainty_budget(
stage_scores: dict[str, float | int | None],
detector_counts: dict[str, int],
) -> dict[str, Any]:
values = [score for score in (_normalize_score(v) for v in stage_scores.values()) if score is not None]
stage_std = pstdev(values) if len(values) > 1 else 0.0
total = max(1, int(detector_counts.get("total", 0)))
manual_ratio = int(detector_counts.get("manual_review_required", 0)) / total
error_ratio = int(detector_counts.get("error", 0)) / total
uncertainty = (
0.50 * _clip(stage_std / 0.35, 0.0, 1.0)
+ 0.35 * _clip(manual_ratio, 0.0, 1.0)
+ 0.15 * _clip(error_ratio, 0.0, 1.0)
)
return {
"stage_std": round(stage_std, 4),
"manual_review_required_ratio": round(manual_ratio, 4),
"error_ratio": round(error_ratio, 4),
"uncertainty": round(uncertainty, 4),
"status": _uncertainty_status(uncertainty),
"basis": MODEL_STATUS,
}
def evidence_risk_gate(
risk_components: dict[str, float | int],
risk_gate: float = 0.60,
) -> dict[str, Any]:
missing = _clip(float(risk_components.get("missing_required_boundary_ratio", 0.0)), 0.0, 1.0)
contradiction = _clip(float(risk_components.get("contradiction_ratio", 0.0)), 0.0, 1.0)
manual = _clip(float(risk_components.get("manual_review_required_ratio", 0.0)), 0.0, 1.0)
parse_error = _clip(float(risk_components.get("parse_error_ratio", 0.0)), 0.0, 1.0)
evidence_risk = 0.40 * missing + 0.30 * contradiction + 0.20 * manual + 0.10 * parse_error
gate = max(0.0, float(risk_gate))
gate_factor = 0.0 if gate == 0 else max(0.0, 1 - evidence_risk / gate)
return {
"components": {
"missing_required_boundary_ratio": round(missing, 4),
"contradiction_ratio": round(contradiction, 4),
"manual_review_required_ratio": round(manual, 4),
"parse_error_ratio": round(parse_error, 4),
},
"evidence_risk": round(evidence_risk, 4),
"risk_gate": round(gate, 4),
"risk_gate_factor": round(gate_factor, 4),
"status": "heuristic_review_gate" if evidence_risk >= gate else "within_heuristic_gate",
"basis": MODEL_STATUS,
}
def benchmark_alignment(stem_tiers: list[int], manual_tiers: list[int]) -> dict[str, Any]:
if len(stem_tiers) != len(manual_tiers):
raise ValueError("stem_tiers and manual_tiers must have the same length")
count = len(stem_tiers)
deltas = [int(stem) - int(manual) for stem, manual in zip(stem_tiers, manual_tiers)]
exact = sum(1 for delta in deltas if delta == 0)
within_one = sum(1 for delta in deltas if abs(delta) <= 1)
return {
"count": count,
"exact_tier_agreement": exact,
"within_one_tier_agreement": within_one,
"major_disagreement_count": sum(1 for delta in deltas if abs(delta) > 1),
"mean_abs_delta": round(mean([abs(delta) for delta in deltas]), 4) if deltas else 0.0,
"deltas": deltas,
}
def build_reasoning_model(result: dict[str, Any]) -> dict[str, Any]:
score = result.get("score", {})
stage_scores = {
"stage_1_readme_evidence": score.get("stage_1_readme_intent"),
"stage_2_repo_local_consistency": score.get("stage_2_repo_local_consistency"),
"stage_3_code_bio": score.get("stage_3_code_bio"),
"stage_4_replication": result.get("replication_score"),
}
ledger = list(result.get("evidence_ledger", []))
detector_summary = result.get("detector_summary", {})
status_counts = detector_summary.get("by_status", {})
total_findings = int(detector_summary.get("total_findings", len(ledger)))
detector_counts = {
"total": total_findings,
"manual_review_required": int(status_counts.get("manual_review_required", 0)),
"error": int(status_counts.get("error", 0)),
}
evidence_text = _evidence_text(ledger)
confidence = _clip(float(score.get("final_score", 0)) / 100, 0.0, 1.0)
coherence = lane_coherence(stage_scores)
contradiction = 0.0 if coherence["overall"] is None else 1 - float(coherence["overall"])
manual_ratio = detector_counts["manual_review_required"] / max(1, total_findings)
error_ratio = detector_counts["error"] / max(1, total_findings)
classification = result.get("classification", {})
missing_boundary = (
1.0
if classification.get("clinical_adjacent") and not classification.get("has_explicit_clinical_boundary")
else 0.0
)
return {
"version": REASONING_VERSION,
"policy": {
"mode": "diagnostic_only",
"final_score_override": False,
"uses_ai": False,
"weights": "uncalibrated_initial_priors_pending_benchmark_calibration",
},
"evidence_budget": evidence_budget(confidence, evidence_text),
"confidence_envelope": confidence_envelope(confidence, total_findings),
"lane_coherence": coherence,
"uncertainty_budget": uncertainty_budget(stage_scores, detector_counts),
"evidence_risk_gate": evidence_risk_gate({
"missing_required_boundary_ratio": missing_boundary,
"contradiction_ratio": contradiction,
"manual_review_required_ratio": manual_ratio,
"parse_error_ratio": error_ratio,
}),
"benchmark_alignment": None,
}
def _evidence_text(ledger: list[dict[str, Any]], limit: int = 200) -> str:
chunks: list[str] = []
for finding in ledger[:limit]:
chunks.extend([
str(finding.get("detector", "")),
str(finding.get("status", "")),
str(finding.get("snippet", "")),
str(finding.get("explanation", "")),
])
return " ".join(chunks)
def _normalize_score(value: float | int | None) -> float | None:
if value is None:
return None
number = float(value)
if number > 1:
number = number / 100
return _clip(number, 0.0, 1.0)
def _coherence_status(value: float | None) -> str:
if value is None:
return "not_available"
if value >= 0.80:
return "heuristic_consistent"
if value >= 0.55:
return "heuristic_mixed"
return "heuristic_divergent"
def _uncertainty_status(value: float) -> str:
if value < 0.20:
return "low_spread"
if value <= 0.45:
return "review_advised"
return "manual_review_required"
def _clip(value: float, lower: float, upper: float) -> float:
return max(lower, min(upper, value))
|