forked from aminrd/LineamentLearning
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig_example.json
More file actions
48 lines (48 loc) · 1.33 KB
/
config_example.json
File metadata and controls
48 lines (48 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
{
"model": {
"architecture": "UNet",
"window_size": 64,
"layers": 8,
"learning_rate": 0.001,
"batch_size": 32,
"epochs": 100,
"use_batch_normalization": true,
"use_dropout": true,
"dropout_rate": 0.3,
"use_mixed_precision": false,
"use_early_stopping": true,
"early_stopping_patience": 10,
"use_augmentation": true,
"rotation_range": 360,
"flip_horizontal": false,
"flip_vertical": false
},
"data": {
"mask_threshold": 0.9,
"radian_threshold": 0.2618,
"dataset_dir": "./Dataset/Australia/Rotations/",
"results_dir": "./Results/",
"callbacks_dir": "./CallBacks/Rotate/",
"figures_dir": "./Figures/Rotate/",
"filters_dir": "./Filters/",
"pmap_dir": "./Pmaps/",
"train_ratio": 0.7,
"val_ratio": 0.15,
"test_ratio": 0.15,
"normalize_inputs": true
},
"inference": {
"threshold": 0.5,
"cutoff": 0.3,
"eps": 0.3,
"min_cluster_size": 20,
"use_clustering": true,
"clustering_method": "DBSCAN",
"line_fitting_method": "BestCurve",
"polynomial_degrees": [1, 3, 5]
},
"debug_mode": true,
"random_seed": 42,
"num_workers": 4,
"device": "auto"
}