Diff of /config.py [000000] .. [18498b]

Switch to unified view

a b/config.py
1
#%%
2
'''
3
Copyright (c) Microsoft Corporation. All rights reserved.
4
Licensed under the MIT License.
5
'''
6
import os 
7
8
LYMPHOMA_SEGMENTATION_FOLDER = '' # path to the directory containing `data` and `results` (this will be created by the pipeline) folders.
9
10
DATA_FOLDER = os.path.join(LYMPHOMA_SEGMENTATION_FOLDER, 'data')
11
RESULTS_FOLDER = os.path.join(LYMPHOMA_SEGMENTATION_FOLDER, 'results')
12
os.makedirs(RESULTS_FOLDER, exist_ok=True)
13
WORKING_FOLDER = os.path.dirname(os.path.abspath(__file__))