-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsys_config.py
More file actions
22 lines (15 loc) · 824 Bytes
/
sys_config.py
File metadata and controls
22 lines (15 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
### SET THESE PATHS MANUALLY #####################################################
# Full paths are required because otherwise the code will not know where to look
# when it is executed on one of the clusters.
import os
project_root = os.getcwd()
data_root = '/home/nhat/ACDC-dataset'
test_data_root = '/home/nhat/ACDC-test'
local_hostnames = ['e5-gpu-server'] # used to check if on cluster or not,
# enter the name of your local machine
##################################################################################
log_root = os.path.join(project_root, 'acdc_logdir')
preproc_folder = os.path.join(project_root,'preproc_data')
##################################################################################
image_size = (212, 212)
target_resolution = (1.36719, 1.36719)