-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ini
52 lines (43 loc) · 1.05 KB
/
config.ini
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
[standard]
experiment = development
task = cnn
seed = 1234
output_dir = Outputs
[logging]
verbose = True
log_dir = Logs
log_interval = 10
tensorboard_dir = Tensorboard
[dataset]
dataset = ISIC
dataset_dir = ../../Datasets/ISIC_2019
val_split = 0.2
test_split = 0.2
[augmentation]
image_x = 256
image_y = 256
square_image = True
augmentation = True
[performance]
data_workers = 4
use_gpu = True
precision = 16
[model]
efficient_net = 7
model_dir = Models
[training]
epochs = 40
batch_size = 16
minimum_lr = 0.00001
maximum_lr = 0.1
[calibration]
label_smoothing = 0.0
focal_loss = False
focal_alpha = 0.25
focal_gamma = 2.0
temp_alpha = 0.5
[bayesian]
training_samples = 10
testing_samples = 100
[debug]
batches_per_epoch = 0