--- a +++ b/config.py @@ -0,0 +1,13 @@ +#%% +''' +Copyright (c) Microsoft Corporation. All rights reserved. +Licensed under the MIT License. +''' +import os + +LYMPHOMA_SEGMENTATION_FOLDER = '' # path to the directory containing `data` and `results` (this will be created by the pipeline) folders. + +DATA_FOLDER = os.path.join(LYMPHOMA_SEGMENTATION_FOLDER, 'data') +RESULTS_FOLDER = os.path.join(LYMPHOMA_SEGMENTATION_FOLDER, 'results') +os.makedirs(RESULTS_FOLDER, exist_ok=True) +WORKING_FOLDER = os.path.dirname(os.path.abspath(__file__))