-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.txt
More file actions
48 lines (27 loc) · 1.33 KB
/
Copy pathconfig.txt
File metadata and controls
48 lines (27 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#define paths for folders that contain patches of images and masks for training
train_images_patch_dir=/mnt/hdd_2A/datasets/monuseg_patches_augm/images/
train_masks_patch_dir=/mnt/hdd_2A/datasets/monuseg_patches_augm/masks/
#define paths for numpy monuseg_test_patches_arrays that contain patches of images and masks for testing
test_images_patch_dir=/mnt/hdd_2A/datasets/monuseg_test_patches_arrays/monuseg_org_X_test.npy
test_masks_patch_dir=/mnt/hdd_2A/datasets/monuseg_test_patches_arrays/monuseg_org_y_test.npy
#define paths for folders that contain full size images and masks for testing
image_full_test_directory=/mnt/hdd_2A/datasets/monuseg_org/test/image/
mask_full_test_directory=/mnt/hdd_2A/datasets/monuseg_org/test/mask/
################################################################
#Training parameters
training=False
gpu_device=0
num_epochs=200
batch_size=8
imgz_size=256
################################################################
#Evaluation parameters
##parameters to process patches of images and masks
patch_img_size=256
patch_step_size=128
### make it false when full image size have different width and height
resize_img=True
resize_height_width=1024
##parameters to process full size images and masks
###if it is false then full size images are not scale down and evaluation takes more time
resize_full_images=True