diff --git a/modules/deeplearning/srcnn_l1b_l2.py b/modules/deeplearning/srcnn_l1b_l2.py index e61b9be7b27aaed65cea817e8be0afbee82f3828..eddc2f0a9365da2619614bb9a0035f01c72bc003 100644 --- a/modules/deeplearning/srcnn_l1b_l2.py +++ b/modules/deeplearning/srcnn_l1b_l2.py @@ -803,9 +803,15 @@ def analyze(file='/Users/tomrink/cld_opd_out.npy'): bin_edges = [] bin_ranges = [] - bin_ranges.append([0.1, 1.0]) + bin_ranges.append([0.01, 0.1]) + bin_edges.append(0.01) + + bin_ranges.append([0.1, 0.5]) bin_edges.append(0.1) + bin_ranges.append([0.5, 1.0]) + bin_edges.append(0.5) + bin_ranges.append([1.0, 2.0]) bin_edges.append(1.0)