Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Fix for SDK regression bug, minor doc updates #475

Merged
merged 19 commits into from
Jun 4, 2021
Prev Previous commit
Next Next commit
reduce dataload_workers
  • Loading branch information
ant0nsc committed Jun 3, 2021
commit ee3e7b65b15896e75ba644fdb96bcdee90edb7b9
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self, covid_dataset_id: str = COVID_DATASET_ID, **kwargs: Any):
non_image_feature_channels=[],
numerical_columns=[],
use_mixed_precision=False,
num_dataload_workers=12,
num_dataload_workers=2,
multiprocessing_start_method=MultiprocessingStartMethod.fork,
train_batch_size=64,
optimizer_type=OptimizerType.Adam,
Expand Down
2 changes: 1 addition & 1 deletion InnerEye/ML/configs/segmentation/GbmBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self, **kwargs: Any) -> None:
colours=[(255, 255, 255)] * len(fg_classes),
fill_holes=[False] * len(fg_classes),
roi_interpreted_types=["ORGAN"] * len(fg_classes),
num_dataload_workers=8,
num_dataload_workers=2,
mask_id=None,
norm_method=PhotometricNormalizationMethod.MriWindow,
trim_percentiles=(1, 99),
Expand Down
2 changes: 1 addition & 1 deletion InnerEye/ML/configs/segmentation/Lung.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, **kwargs: Any) -> None:
fill_holes=[False] * len(fg_classes),
roi_interpreted_types=["ORGAN"] * len(fg_classes),
largest_connected_component_foreground_classes=["lung_r", "lung_l", "heart"],
num_dataload_workers=8,
num_dataload_workers=2,
norm_method=PhotometricNormalizationMethod.CtWindow,
level=40,
window=400,
Expand Down