From 7dba5087ab04804709e102e95059199a656dbd6d Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 5 Dec 2022 14:00:13 -0600 Subject: [PATCH] snapshot.. --- modules/deeplearning/icing_fcn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/deeplearning/icing_fcn.py b/modules/deeplearning/icing_fcn.py index 90b1b222..232fec74 100644 --- a/modules/deeplearning/icing_fcn.py +++ b/modules/deeplearning/icing_fcn.py @@ -317,11 +317,11 @@ class IcingIntensityFCN: data_alt_lr = np.copy(data_alt) label_lr = np.copy(label) - data_r1 = np.rot90(data, k=1) + data_r1 = np.rot90(data, k=1, axes=(1, 2)) data_alt_r1 = np.copy(data_alt) label_r1 = np.copy(label) - data_r2 = np.rot90(data, k=1) + data_r2 = np.rot90(data, k=1, axes=(1, 2)) data_alt_r2 = np.copy(data_alt) label_r2 = np.copy(label) -- GitLab