forked from wolny/pytorch-3dunet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_config_boundary.yaml
executable file
·53 lines (51 loc) · 1.92 KB
/
test_config_boundary.yaml
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
49
50
51
52
53
# path to the checkpoint file containing the model
model_path: 3dunet/best_checkpoint.pytorch
# use a fixed random seed to guarantee that when you run the code twice you will get the same outcome
manual_seed: 0
model:
name: UNet3D
# number of input channels to the model
in_channels: 1
# number of output channels
out_channels: 1
# determines the order of operators in a single layer (crg - Conv3d+ReLU+GroupNorm)
layer_order: gcr
# initial number of feature maps
f_maps: 16
# number of groups in the groupnorm
num_groups: 8
# apply element-wise nn.Sigmoid after the final 1x1x1 convolution, otherwise apply nn.Softmax
final_sigmoid: true
is_segmentation: true
# predictor configuration
predictor:
# standard in memory predictor
name: 'StandardPredictor'
# specify the test datasets
loaders:
# batch dimension; if number of GPUs is N > 1, then a batch_size of N * batch_size will automatically be taken for DataParallel
batch_size: 1
# mirror pad the raw data for sharper prediction near the boundaries of the volume
mirror_padding: [16, 32, 32]
# path to the raw data within the H5
raw_internal_path: raw
# how many subprocesses to use for data loading
num_workers: 8
test:
# paths to the test datasets; if a given path is a directory all H5 files ('*.h5', '*.hdf', '*.hdf5', '*.hd5')
# inside this this directory will be included as well (non-recursively)
file_paths:
- '../resources/sample_ovule.h5'
# SliceBuilder configuration, i.e. how to iterate over the input volume patch-by-patch
slice_builder:
# SliceBuilder class
name: SliceBuilder
# train patch size given to the network (adapt to fit in your GPU mem, generally the bigger patch the better)
patch_shape: [64, 128, 128]
# train stride between patches
stride_shape: [32, 80, 80]
transformer:
raw:
- name: Standardize
- name: ToTensor
expand_dims: true