(self, no_metric=False)
| 134 | PRUNE_NUM_PROC = None |
| 135 | |
| 136 | def __init__(self, no_metric=False): |
| 137 | super().__init__() |
| 138 | self.metric = load_metric(_download_metric(), config_name=self.DATASET_NAME) if not no_metric else None |
| 139 | |
| 140 | def has_training_docs(self): |
| 141 | return True |
no test coverage detected