@@ -40,6 +40,9 @@ def generate_splits(datasets: Union[List[str], str]) -> None:
4040 "segpath_lymphocytes" ,
4141 "mhist" ,
4242 "spider_breast" ,
43+ "spider_colorectal" ,
44+ "spider_skin" ,
45+ "spider_thorax" ,
4346 ]
4447 elif datasets [0 ] == "classification" :
4548 datasets = [
@@ -56,6 +59,9 @@ def generate_splits(datasets: Union[List[str], str]) -> None:
5659 "wilds" ,
5760 "mhist" ,
5861 "spider_breast" ,
62+ "spider_colorectal" ,
63+ "spider_skin" ,
64+ "spider_thorax" ,
5965 ]
6066 elif datasets [0 ] == "segmentation" :
6167 datasets = [
@@ -92,7 +98,8 @@ def generate_splits_for_dataset(dataset_name: str) -> None:
9298 create_splits_segpath_lymphocytes ,
9399 create_splits_tcga_crc_msi , create_splits_tcga_tils ,
94100 create_splits_tcga_uniform , create_splits_wilds ,
95- create_splits_spider_breast )
101+ create_splits_spider_breast , create_splits_spider_colorectal ,
102+ create_splits_spider_skin , create_splits_spider_thorax )
96103
97104 DATASET_TO_FUNCTION = {
98105 # Classification
@@ -109,6 +116,9 @@ def generate_splits_for_dataset(dataset_name: str) -> None:
109116 "tcga_uniform" : create_splits_tcga_uniform ,
110117 "wilds" : create_splits_wilds ,
111118 "spider_breast" : create_splits_spider_breast ,
119+ "spider_colorectal" : create_splits_spider_colorectal ,
120+ "spider_skin" : create_splits_spider_skin ,
121+ "spider_thorax" : create_splits_spider_thorax ,
112122 # Segmentation
113123 "ocelot" : create_splits_ocelot ,
114124 "pannuke" : create_splits_pannuke ,
0 commit comments