-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSRCNN.config
43 lines (43 loc) · 896 Bytes
/
SRCNN.config
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
{
"optimization": {
"cost_function": "mse",
"class_weights": [],
"method": "adam",
"learning_rate": 1e-5,
"decrease_factor": 1,
"final_learning_rate": 1e-6,
"last_iter_to_decrease": 1000,
"momentum": 0.9,
"epsilon": 1e-6,
"rho": 0.95,
"beta1": 0.9,
"beta2": 0.999,
"nesterov": true,
"regularization": false,
"regularization_type": "L2",
"regularization_coeff": 1e-4
},
"model": {
"input_shape": [30, 30, 3],
"output_shape": [30, 30, 3],
"num_patches": 4,
"dropout": false,
"augmentation": true
},
"training": {
"n_epochs": 500,
"batch_size": 500,
"continue": false,
"display_cost": true,
"save_path": "training_curves",
"validation_frequency": 117,
"validation_batch_size": 500,
"extract_params": true,
"param_file": "srcnn_4000_x2.npz",
"multi_gpus": false
},
"testing": {
"batch_size": 100
},
"summary_dir": ""
}