(self, task_name)
| 241 | |
| 242 | class WB(TaskHandler): |
| 243 | def match(self, task_name) -> bool: |
| 244 | task_name = task_name.lower() |
| 245 | return task_name.startswith("m2w") or task_name.startswith("mind2web") |
| 246 | |
| 247 | def get_main_metric(self, overall_result): |
| 248 | return overall_result["custom"]["step_sr"] / 100 |
nothing calls this directly
no outgoing calls
no test coverage detected