(self, task_name)
| 217 | |
| 218 | class KG(TaskHandler): |
| 219 | def match(self, task_name) -> bool: |
| 220 | task_name = task_name.lower() |
| 221 | return task_name.startswith("kg") or task_name.startswith("knowledge") |
| 222 | |
| 223 | def get_main_metric(self, overall_result): |
| 224 | return overall_result["custom"]["main"] |
nothing calls this directly
no outgoing calls
no test coverage detected