in src/smclarify/bias/report.py [0:0]
def fetch_metrics_to_run(full_metrics: List[Callable[..., Any]], metric_names: List[str]):
"""
Validates the list of metric names passed and returns the callable methods for them
:param full_metrics:
:param metric_names:
:return: List[Callable..] methods
"""
full_metrics_names = [f.__name__ for f in full_metrics]
if not (set(metric_names).issubset(set(full_metrics_names))):
raise ValueError("Invalid metric_name: metrics should be one of the registered metrics" f"{full_metrics_names}")
metrics_to_run = [metric for metric in full_metrics if metric.__name__ in metric_names]
return metrics_to_run