-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest_config.json
More file actions
57 lines (57 loc) · 1.66 KB
/
test_config.json
File metadata and controls
57 lines (57 loc) · 1.66 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
49
50
51
52
53
54
55
56
57
{
"augmentation": {
"order": [
"Brightness transform",
"Contrast augmentation transform",
"Gamma transform",
"Gaussian noise transform",
"Rician noise transform",
"Mirror transform",
"Scale transform",
"Gaussian blur transform",
"Simulate low-resolution transform",
"Elastic deformation transform"
],
"p_rand": 1.0,
"augmentations": {
"Brightness transform": {
"value": 0.1,
"mode": "additive"
},
"Contrast augmentation transform": {
"factor": 1.2
},
"Gamma transform": {
"gamma": 0.8
},
"Gaussian noise transform": {
"variance": 0.05
},
"Rician noise transform": {
"variance": 0.05
},
"Mirror transform": {
"axes": "(1, 2)"
},
"Scale transform": {
"scale_factor": 0.9,
"interpolator_enum": "Linear_en"
},
"Gaussian blur transform": {
"sigma": 1.0,
"shape": "3D",
"kernel_size": 3,
"processing_unit": "CPU"
},
"Simulate low-resolution transform": {
"blur_sigma": 0.5,
"kernel_size": 3,
"downsample_scale": 0.5
},
"Elastic deformation transform": {
"strength": 0.1,
"interpolator_enum": "Linear_en"
}
}
}
}