File size: 12,427 Bytes
60b21d3 | 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 | # SPDX-FileCopyrightText: 2025 Stanford University, ETH Zurich, and the project authors (see CONTRIBUTORS.md)
# SPDX-FileCopyrightText: 2025 This source file is part of the OpenTSLM open-source project.
#
# SPDX-License-Identifier: MIT
import re
import sys
import io
import base64
import os
from datetime import datetime
from typing import Dict, Any, List, Optional
import matplotlib.pyplot as plt
from common_evaluator_plot import CommonEvaluatorPlot
from opentslm.time_series_datasets.ecg_qa.ECGQACoTQADataset import ECGQACoTQADataset
def extract_answer(text: str) -> str:
"""
Extract the final answer from model text, following the parser rules:
- If "Answer: " present, take substring after the last occurrence
- Strip any special end tokens like <|...|> or <eos>
- Trim trailing periods and whitespace
"""
if text is None:
return ""
if "Answer: " not in text:
return text.strip()
answer = text.split("Answer: ")[-1].strip()
answer = re.sub(r"<\|.*?\|>|<eos>$", "", answer).strip()
answer = re.sub(r"\.$", "", answer).strip()
return answer
def normalize_label(label: str) -> str:
"""Lowercase, strip, and remove trailing punctuation to match parser behavior."""
if label is None:
return ""
return label.lower().strip().rstrip(".,!?;:")
def evaluate_ecg_metrics(
ground_truth: str, prediction: str, sample: Optional[Dict[str, Any]] = None
) -> Dict[str, Any]:
"""
Evaluate ECG-QA CoT predictions using per-template answers from CSV.
Normalization matches the parser used in evaluate_ecg_qa.py.
"""
# Extract answers
pred_raw = extract_answer(prediction)
gt_raw = extract_answer(ground_truth)
# Normalize
pred_norm = normalize_label(pred_raw)
gt_norm = normalize_label(gt_raw)
# Per-template supported answers (strict)
if not isinstance(sample, dict):
raise ValueError(
"Sample must be a dict containing 'template_id' for ECG-QA evaluation"
)
template_id = sample.get("template_id") or sample.get("cot_template_id")
if template_id is None:
raise ValueError("Missing 'template_id' in sample for ECG-QA evaluation")
possible_answers = ECGQACoTQADataset.get_possible_answers_for_template(
int(template_id)
)
if not possible_answers:
raise ValueError(f"No possible answers found for template_id={template_id}")
possible_answers_lower = [a.lower().strip() for a in possible_answers]
# Supported flags: restrict to template answers strictly
pred_supported = pred_norm in possible_answers_lower
gt_supported = gt_norm in possible_answers_lower
# Exact match
is_correct = int(pred_norm == gt_norm)
# For single-label exact-match, precision=recall=F1=accuracy per-sample
f1 = float(is_correct)
return {
"accuracy": is_correct,
"f1_score": f1,
"precision": f1,
"recall": f1,
"prediction_normalized": pred_norm,
"ground_truth_normalized": gt_norm,
"prediction_supported": pred_supported,
"ground_truth_supported": gt_supported,
"template_id": template_id,
"possible_answers": possible_answers,
}
def generate_ecg_plot(time_series: List[List[float]]) -> str:
"""
Create a base64 PNG plot for multi-lead ECG time series.
- Accepts a list of 1D lists/arrays, one per ECG lead.
- Renders each lead as a separate subplot with grid and title.
"""
if time_series is None:
return None
ts_list = list(time_series)
if not ts_list:
return None
num_series = len(ts_list)
lead_names = [
"I",
"II",
"III",
"aVR",
"aVL",
"aVF",
"V1",
"V2",
"V3",
"V4",
"V5",
"V6",
]
# Limit to a reasonable number of subplots; if more, still plot all with generic names
fig_height = max(3, min(2 + 0.9 * num_series, 20))
fig, axes = plt.subplots(num_series, 1, figsize=(12, fig_height), sharex=True)
if num_series == 1:
axes = [axes]
for i, series in enumerate(ts_list):
axes[i].plot(series, linewidth=1.0)
axes[i].grid(True, alpha=0.3)
name = lead_names[i] if i < len(lead_names) else f"Lead {i + 1}"
axes[i].set_title(f"ECG Lead {name}")
axes[i].set_ylabel("mV")
axes[-1].set_xlabel("Time (samples)")
plt.tight_layout()
# Save plot to disk instead of showing it
current_dir = os.path.dirname(os.path.abspath(__file__))
results_dir = os.path.join(current_dir, "..", "results", "baseline", "plots")
os.makedirs(results_dir, exist_ok=True)
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S_%f")
filename = f"ecg_plot_{timestamp}.png"
file_path = os.path.join(results_dir, filename)
plt.savefig(file_path, format="png", bbox_inches="tight", dpi=110)
# Also save to buffer for returning base64 to caller
img_buffer = io.BytesIO()
plt.savefig(img_buffer, format="png", bbox_inches="tight", dpi=110)
plt.close()
img_buffer.seek(0)
image_data = base64.b64encode(img_buffer.getvalue()).decode("utf-8")
return image_data
def _calculate_template_f1_stats(data_points: List[Dict[str, Any]]) -> Dict[str, Any]:
if not data_points:
return {}
from collections import defaultdict
template_groups: Dict[int, List[Dict[str, Any]]] = defaultdict(list)
for point in data_points:
template_id = point.get("template_id")
if template_id is None:
raise ValueError(f"Missing template_id in data point: {point}")
template_groups[int(template_id)].append(point)
template_stats: Dict[int, Dict[str, Any]] = {}
total_samples = 0
total_correct = 0
total_f1_sum = 0.0
for template_id, points in template_groups.items():
if not points:
continue
possible_answers = points[0].get("possible_answers", [])
if not possible_answers:
raise ValueError(f"No possible answers found for template {template_id}")
# Initialize per-class counts
class_predictions: Dict[str, Dict[str, int]] = {}
for answer in possible_answers:
class_predictions[answer.lower()] = {"tp": 0, "fp": 0, "fn": 0}
# Count TP/FP/FN
for p in points:
gt_class = p.get("ground_truth_normalized", "")
pred_class = p.get("prediction_normalized", "")
pred_supported = p.get("prediction_supported", False)
if gt_class in class_predictions:
if pred_class == gt_class:
class_predictions[gt_class]["tp"] += 1
else:
class_predictions[gt_class]["fn"] += 1
if pred_supported and pred_class in class_predictions:
class_predictions[pred_class]["fp"] += 1
# Per-class and macro-F1
class_f1_scores: Dict[str, Dict[str, float]] = {}
template_f1_sum = 0.0
valid_classes = 0
for class_name, counts in class_predictions.items():
tp = counts["tp"]
fp = counts["fp"]
fn = counts["fn"]
precision = tp / (tp + fp) if (tp + fp) > 0 else 0.0
recall = tp / (tp + fn) if (tp + fn) > 0 else 0.0
f1 = (
2 * (precision * recall) / (precision + recall)
if (precision + recall) > 0
else 0.0
)
class_f1_scores[class_name] = {
"f1": f1,
"precision": precision,
"recall": recall,
"tp": tp,
"fp": fp,
"fn": fn,
}
template_f1_sum += f1
valid_classes += 1
macro_f1 = template_f1_sum / valid_classes if valid_classes > 0 else 0.0
template_correct = sum(1 for p in points if p.get("accuracy", False))
template_accuracy = template_correct / len(points) if points else 0.0
template_avg_f1 = (
sum(p.get("f1_score", 0.0) for p in points) / len(points) if points else 0.0
)
template_stats[template_id] = {
"num_samples": len(points),
"accuracy": template_accuracy,
"average_f1": template_avg_f1,
"macro_f1": macro_f1,
"class_f1_scores": class_f1_scores,
"num_classes": valid_classes,
"correct_predictions": template_correct,
}
total_samples += len(points)
total_correct += template_correct
total_f1_sum += template_avg_f1 * len(points)
template_macro_f1s = [stats["macro_f1"] for stats in template_stats.values()]
overall_macro_f1 = (
sum(template_macro_f1s) / len(template_macro_f1s) if template_macro_f1s else 0.0
)
overall_accuracy = total_correct / total_samples if total_samples > 0 else 0.0
overall_avg_f1 = total_f1_sum / total_samples if total_samples > 0 else 0.0
return {
"overall": {
"total_samples": total_samples,
"total_templates": len(template_stats),
"accuracy": overall_accuracy,
"average_f1": overall_avg_f1,
"macro_f1": overall_macro_f1,
},
"per_template": template_stats,
}
def _build_data_points_from_results(
detailed_results: List[Dict[str, Any]],
) -> List[Dict[str, Any]]:
data_points: List[Dict[str, Any]] = []
for r in detailed_results:
m = r.get("metrics", {})
template_id = m.get("template_id", r.get("template_id"))
if template_id is None:
raise ValueError("Missing template_id in detailed result")
dp = {
"template_id": int(template_id),
"accuracy": m.get("accuracy", 0),
"f1_score": m.get("f1_score", 0.0),
"precision": m.get("precision", 0.0),
"recall": m.get("recall", 0.0),
"prediction_normalized": m.get("prediction_normalized", ""),
"ground_truth_normalized": m.get("ground_truth_normalized", ""),
"prediction_supported": m.get("prediction_supported", False),
"ground_truth_supported": m.get("ground_truth_supported", False),
"possible_answers": m.get("possible_answers", []),
}
if not dp["possible_answers"]:
raise ValueError(
f"No possible answers in metrics for template {template_id}"
)
data_points.append(dp)
return data_points
def main():
"""Main function to run ECG-QA CoT evaluation with plotting."""
if len(sys.argv) != 2:
print("Usage: python evaluate_ecqqa_plot.py <model_name>")
print("Example: python evaluate_ecqqa_plot.py meta-llama/Llama-3.2-1B")
sys.exit(1)
model_name = sys.argv[1]
evaluator = CommonEvaluatorPlot()
# Run single evaluation to keep detailed results for F1 aggregation
results = evaluator.evaluate_model_on_dataset(
model_name=model_name,
dataset_class=ECGQACoTQADataset,
evaluation_function=evaluate_ecg_metrics,
plot_function=generate_ecg_plot,
max_samples=10000,
max_new_tokens=400,
)
# Build data points and compute parser-matching F1 stats
detailed_results = results.get("detailed_results", [])
data_points = _build_data_points_from_results(detailed_results)
f1_stats = _calculate_template_f1_stats(data_points)
# Print parser-like summary
overall = f1_stats.get("overall", {})
print("\n" + "=" * 80)
print("FINAL RESULTS SUMMARY (Parser-matching)")
print("=" * 80)
print(f"Total templates: {overall.get('total_templates', 0)}")
print(f"Average F1 Score: {overall.get('average_f1', 0):.4f}")
print(f"Macro-F1 Score: {overall.get('macro_f1', 0):.4f}")
per_template = f1_stats.get("per_template", {})
if per_template:
print(f"\nPer-Template Statistics:")
for template_id, stats in sorted(per_template.items()):
print(f" Template {template_id}:")
print(f" Samples: {stats['num_samples']}")
print(f" Accuracy: {stats['accuracy']:.4f}")
print(f" Average F1: {stats['average_f1']:.4f}")
print(f" Macro-F1: {stats['macro_f1']:.4f}")
return f1_stats
if __name__ == "__main__":
main()
|