r"""Load the benchmark data. Args: force_download (bool): Whether to force download the data. Returns: BaseBenchmark: The benchmark instance.
(self, force_download: bool = False)
| 73 | |
| 74 | @abstractmethod |
| 75 | def load(self, force_download: bool = False) -> "BaseBenchmark": |
| 76 | r"""Load the benchmark data. |
| 77 | |
| 78 | Args: |
| 79 | force_download (bool): Whether to force download the data. |
| 80 | |
| 81 | Returns: |
| 82 | BaseBenchmark: The benchmark instance. |
| 83 | """ |
| 84 | pass |
| 85 | |
| 86 | @property |
| 87 | def train(self) -> List[Dict[str, Any]]: |
no outgoing calls
no test coverage detected