(values: List[Any])
| 113 | |
| 114 | |
| 115 | def mean_defined(values: List[Any]) -> float: |
| 116 | defined = [float(value) for value in values if value is not None] |
| 117 | return mean(defined) |
| 118 | |
| 119 | |
| 120 | def evaluate_episode(rows: List[Dict[str, Any]], ks: List[int]) -> Dict[str, Any]: |
no test coverage detected