-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.ini
45 lines (38 loc) · 1007 Bytes
/
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
[standard]
experiment = dev
task = train
seed = 1234
[logging]
verbose = True
log_dir = Logs
output_dir = Outputs
[dataset]
dataset = ISIC
dataset_dir = ../../Datasets/ISIC_2019
image_x = 224
image_y = 224
val_split = 0.2
test_split = 0.2
[performance]
use_gpu = True
data_workers = 4
mixed_precision = True
[model]
binary = False
model_dir = Models
efficient_net = 7
resnet_model = True
resnet_layers = 101
[training]
epochs = 40
batch_size = 16
minimum_lr = 0.00001
maximum_lr = 0.01
[calibration]
calibration_method = None
boundary_calibration = False
calibration_verbose = True
[debug]
warning = False
detect_anomaly = False
batches_per_epoch = 0