diff --git a/DLICV/__main__.py b/DLICV/__main__.py index ffab865..af8f444 100644 --- a/DLICV/__main__.py +++ b/DLICV/__main__.py @@ -143,17 +143,17 @@ def main() -> None: "-npp", type=int, required=False, - default=3, + default=2, help="Number of processes used for preprocessing. More is not always better. Beware of " - "out-of-RAM issues. Default: 3", + "out-of-RAM issues. Default: 2", ) parser.add_argument( "-nps", type=int, required=False, - default=3, + default=2, help="Number of processes used for segmentation export. More is not always better. Beware of " - "out-of-RAM issues. Default: 3", + "out-of-RAM issues. Default: 2", ) parser.add_argument( "-prev_stage_predictions", diff --git a/setup.py b/setup.py index ae53bad..2645e53 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="DLICV", - version="1.0.2", + version="1.0.3", description="DLICV - Deep Learning Intra Cranial Volume.", long_description=long_description, long_description_content_type="text/markdown",