-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.ini
48 lines (40 loc) · 1.03 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
[standard]
task = cnn
seed = 1234
experiment = multialt
[logging]
log_dir = Logs/
tensorboard = True
log_intervals = 1
[performance]
gpu = 0
precision = 16
data_workers = 4
[model]
model_dir = Models/
batch_size = 258
learning_rate = 1e-4
[dataset]
val_split = 0.2
image_size = 96
dataset_dir = ../Datasets/pcam/
augmentation = True
[early_stopping]
window = 5
target = 0.5
min_epochs = 50
max_epochs = 50
[cpc]
cpc_alt_mask = True
cpc_code_size = 128
cpc_patch_size = 24
cpc_patch_stride = 12
cpc_random_patches = 16
cpc_multi_directional = True
[cnn]
pretrained = cpc
hidden_layer = 256
training_examples = 100
representation_dir = Representations/
[debug]
batches_per_epoch = -1