From f51b4d02cc93b8090a28392fc3f3cf2f7d93b289 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Mon, 11 Sep 2023 10:53:12 -0500
Subject: [PATCH] snapshot...

---
 modules/deeplearning/cloud_opd_fcn_abi.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/deeplearning/cloud_opd_fcn_abi.py b/modules/deeplearning/cloud_opd_fcn_abi.py
index 6f0e1648..ddf0c8ee 100644
--- a/modules/deeplearning/cloud_opd_fcn_abi.py
+++ b/modules/deeplearning/cloud_opd_fcn_abi.py
@@ -87,13 +87,13 @@ KERNEL_SIZE = 3
 X_LEN = Y_LEN = 128
 
 if KERNEL_SIZE == 3:
-    slc_x = slice(0, int(X_LEN/4) + 2)
-    slc_y = slice(0, int(Y_LEN/4) + 2)
+    slc_x = slice(0, X_LEN // 4 + 2)
+    slc_y = slice(0, Y_LEN // 4 + 2)
     x_64 = slice(4, X_LEN + 4)
     y_64 = slice(4, Y_LEN + 4)
 elif KERNEL_SIZE == 1:
-    slc_x = slice(4, X_LEN + 4)
-    slc_y = slice(4, Y_LEN + 4)
+    slc_x = slice(1, X_LEN // 4 + 1)
+    slc_y = slice(1, Y_LEN // 4 + 1)
     x_64 = slice(4, X_LEN + 4)
     y_64 = slice(4, Y_LEN + 4)
 # ----------------------------------------
-- 
GitLab