Spaces:
Running on Zero
Running on Zero
File size: 7,293 Bytes
40b1357 b554e59 40b1357 b554e59 40b1357 b554e59 40b1357 b554e59 40b1357 b554e59 40b1357 | 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 | from __future__ import annotations
import argparse
import json
import time
from pathlib import Path
from .runtime import (
RUNTIME_VERSION,
EvaluationV2Run,
ShadowRunStatus,
safe_run_shadow_evaluation,
)
HERE = Path(__file__).resolve().parent
REPO_ROOT = HERE.parents[2]
TRANSCRIPT_ROOT = REPO_ROOT / "data" / "sentence_segments" / "banking"
LEGACY_ROOT = REPO_ROOT / "ml-services" / "evaluation" / "results"
SENTIMENT_ROOT = (
REPO_ROOT
/ "ml-services"
/ "outputs"
/ "backend"
/ "sentiment_calls_with_features"
/ "banking"
)
DEFAULT_OUTPUT = REPO_ROOT / "frontend" / "public" / "evaluation-v2"
DEFAULT_SUMMARY = HERE / "research" / "shadow_rollout_0_1.json"
def _load(path: Path) -> dict:
return json.loads(path.read_text(encoding="utf-8"))
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("--output-dir", type=Path, default=DEFAULT_OUTPUT)
parser.add_argument(
"--summary-output",
type=Path,
default=DEFAULT_SUMMARY,
)
parser.add_argument(
"--resume",
action="store_true",
help="Reuse existing succeeded artifacts and retry other calls.",
)
parser.add_argument(
"--rerun-call",
action="append",
default=[],
help="Call ID to rerun even when its existing artifact succeeded.",
)
parser.add_argument(
"--only-call",
action="append",
default=[],
help="Restrict the batch to one or more call IDs.",
)
parser.add_argument(
"--delay-seconds",
type=float,
default=0.0,
help="Pause between provider calls to respect token rate limits.",
)
args = parser.parse_args()
if args.delay_seconds < 0:
parser.error("--delay-seconds cannot be negative")
args.output_dir.mkdir(parents=True, exist_ok=True)
counts: dict[str, int] = {}
decision_statuses: dict[str, int] = {}
comparison_counts = {
"comparable": 0,
"not_comparable": 0,
"attention_agreement": 0,
"attention_disagreement": 0,
}
legacy_attention = 0
v2_attention = 0
rows = []
transcript_paths = sorted(TRANSCRIPT_ROOT.glob("*.json"))
if args.only_call:
selected = set(args.only_call)
transcript_paths = [
path for path in transcript_paths if path.stem in selected
]
missing = sorted(selected - {path.stem for path in transcript_paths})
if missing:
parser.error(f"unknown --only-call values: {missing}")
for transcript_index, transcript_path in enumerate(transcript_paths):
call_id = transcript_path.stem
legacy_path = LEGACY_ROOT / f"{call_id}_graph.json"
sentiment_path = (
SENTIMENT_ROOT
/ f"{call_id}_backend_sentiment_with_features.json"
)
output = args.output_dir / f"{call_id}.json"
run = None
if (
args.resume
and call_id not in args.rerun_call
and output.exists()
):
existing = EvaluationV2Run.model_validate(_load(output))
if existing.status == ShadowRunStatus.SUCCEEDED:
run = existing
if run is None:
run = safe_run_shadow_evaluation(
transcript=_load(transcript_path),
sentiment=(
_load(sentiment_path)
if sentiment_path.exists()
else None
),
legacy_evaluation=(
_load(legacy_path) if legacy_path.exists() else None
),
transcript_source=str(
transcript_path.relative_to(REPO_ROOT)
),
sentiment_source=(
str(sentiment_path.relative_to(REPO_ROOT))
if sentiment_path.exists()
else None
),
)
output.write_text(
json.dumps(run.model_dump(mode="json"), indent=2) + "\n",
encoding="utf-8",
)
if (
args.delay_seconds
and transcript_index < len(transcript_paths) - 1
):
time.sleep(args.delay_seconds)
counts[run.status.value] = counts.get(run.status.value, 0) + 1
if run.legacy_proxy and run.legacy_proxy.attention_required:
legacy_attention += 1
if run.decision:
status = run.decision.decision_status.value
decision_statuses[status] = decision_statuses.get(status, 0) + 1
v2_attention += int(run.decision.attention_required)
if run.comparison:
if run.comparison.comparable:
comparison_counts["comparable"] += 1
key = (
"attention_agreement"
if run.comparison.attention_agreement
else "attention_disagreement"
)
comparison_counts[key] += 1
else:
comparison_counts["not_comparable"] += 1
rows.append({
"call_id": call_id,
"status": run.status.value,
"decision_status": (
run.decision.decision_status.value
if run.decision
else None
),
"legacy_attention_proxy": (
run.legacy_proxy.attention_required
if run.legacy_proxy
else None
),
"v2_attention": (
run.decision.attention_required
if run.decision
else None
),
"comparable": (
run.comparison.comparable
if run.comparison
else False
),
"limitations": run.limitations,
})
summary = {
"schema_version": "1.0",
"runtime_version": RUNTIME_VERSION,
"population": "ten_banking_calls",
"call_count": len(rows),
"run_statuses": dict(sorted(counts.items())),
"decision_statuses": dict(sorted(decision_statuses.items())),
"legacy_attention_proxy_count": legacy_attention,
"v2_attention_count": v2_attention,
"comparison": comparison_counts,
"conclusion": (
f"{comparison_counts['comparable']} calls produced comparable "
"attention decisions: "
f"{comparison_counts['attention_agreement']} agreements and "
f"{comparison_counts['attention_disagreement']} disagreements. "
f"{comparison_counts['not_comparable']} calls remain "
"non-comparable because requirement coverage is partial."
),
"calls": rows,
}
args.summary_output.parent.mkdir(parents=True, exist_ok=True)
args.summary_output.write_text(
json.dumps(summary, indent=2) + "\n",
encoding="utf-8",
)
print(
f"Wrote {sum(counts.values())} shadow runs: "
+ ", ".join(
f"{status}={count}"
for status, count in sorted(counts.items())
)
)
print(f"Summary -> {args.summary_output}")
return 0
if __name__ == "__main__":
raise SystemExit(main())
|