-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
34 lines (34 loc) · 709 Bytes
/
config.json
File metadata and controls
34 lines (34 loc) · 709 Bytes
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
{
"dataset_dir" : "/content/project-tomato/PlantVillage-Tomato",
"checkpoint_filepath": "NoCLAHE-NoAug-Dense",
"add_dense": false,
"img_height": 224,
"img_width": 224,
"batch_size": 16,
"epochs": 8,
"n_classes": 10,
"seed": 42,
"fig_format": ".pdf",
"data_augmentations":
{
"TRAIN_AUG": false,
"VALID_AUG": false,
"TEST_AUG": false,
"rotation_range": 20,
"horizontal_flip": true,
"width_shift_range": 0.2,
"height_shift_range": 0.2,
"shear_range": 0.2
},
"model_configuration":
{
"backbone_name": "mobilenetv2",
"optimizer": "adam"
},
"learning_rates":
{
"initial_lr" : 0.00001,
"max_lr" : 0.0001
},
"version": "1.0.0"
}