aspartate
commited on
Commit
·
63637b0
1
Parent(s):
0066b71
bugfix
Browse files- Patho-Bench.py +1 -5
Patho-Bench.py
CHANGED
|
@@ -39,10 +39,6 @@ class PathoBenchDataset(datasets.GeneratorBasedBuilder):
|
|
| 39 |
]
|
| 40 |
BUILDER_CONFIG_CLASS = PathoBenchConfig
|
| 41 |
|
| 42 |
-
@property
|
| 43 |
-
def repo_id(self):
|
| 44 |
-
return "MahmoodLab/patho-bench"
|
| 45 |
-
|
| 46 |
def _info(self):
|
| 47 |
return datasets.DatasetInfo(
|
| 48 |
description="PathoBench: collection of canonical computational pathology tasks",
|
|
@@ -54,7 +50,7 @@ class PathoBenchDataset(datasets.GeneratorBasedBuilder):
|
|
| 54 |
)
|
| 55 |
|
| 56 |
def _split_generators(self, dl_manager):
|
| 57 |
-
repo_id =
|
| 58 |
dataset_to_download = self.config.dataset_to_download
|
| 59 |
local_dir = self._cache_dir_root
|
| 60 |
force_download = self.config.force_download
|
|
|
|
| 39 |
]
|
| 40 |
BUILDER_CONFIG_CLASS = PathoBenchConfig
|
| 41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
def _info(self):
|
| 43 |
return datasets.DatasetInfo(
|
| 44 |
description="PathoBench: collection of canonical computational pathology tasks",
|
|
|
|
| 50 |
)
|
| 51 |
|
| 52 |
def _split_generators(self, dl_manager):
|
| 53 |
+
repo_id = "MahmoodLab/patho-bench"
|
| 54 |
dataset_to_download = self.config.dataset_to_download
|
| 55 |
local_dir = self._cache_dir_root
|
| 56 |
force_download = self.config.force_download
|