MCPcopy Create free account
hub / github.com/OpenRaiser/PaperFlow / build_label_map

Function build_label_map

experiments/baselines/knowledge_entity/runner.py:681–689  ·  view source on GitHub ↗
(label_rows: Sequence[Dict[str, Any]])

Source from the content-addressed store, hash-verified

679
680
681def build_label_map(label_rows: Sequence[Dict[str, Any]]) -> Dict[Tuple[str, str], Dict[str, Any]]:
682 labels: Dict[Tuple[str, str], Dict[str, Any]] = {}
683 for row in label_rows:
684 labels[label_key(row)] = {
685 "selected": bool(row.get("selected")),
686 "oracle_score": row.get("oracle_score", 0.0),
687 "oracle_label": row.get("oracle_label", "irrelevant"),
688 }
689 return labels
690
691
692def load_clean_benchmark_inputs(input_dir: Path) -> Tuple[List[Dict[str, Any]], List[Dict[str, Any]]]:

Callers 1

rerank_episodesFunction · 0.70

Calls 2

getMethod · 0.80
label_keyFunction · 0.70

Tested by

no test coverage detected