(label_rows: Sequence[Dict[str, Any]])
| 602 | |
| 603 | |
| 604 | def build_label_map(label_rows: Sequence[Dict[str, Any]]) -> Dict[Tuple[str, str], Dict[str, Any]]: |
| 605 | labels: Dict[Tuple[str, str], Dict[str, Any]] = {} |
| 606 | for row in label_rows: |
| 607 | labels[label_key(row)] = { |
| 608 | "selected": bool(row.get("selected")), |
| 609 | "oracle_score": row.get("oracle_score", 0.0), |
| 610 | "oracle_label": row.get("oracle_label", "irrelevant"), |
| 611 | } |
| 612 | return labels |
| 613 | |
| 614 | |
| 615 | def load_clean_benchmark_inputs(input_dir: Path) -> Tuple[List[Dict[str, Any]], List[Dict[str, Any]]]: |
no test coverage detected