diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index f4c58d422eb122139abf27c05d543c3a5ca184dd..f552edb2d6b5d57ab08e2e346977263545dad8f8 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -414,6 +414,7 @@ def process_2(ice_dct, no_ice_dct, neg_ice_dct):
         new_ice_dct[key] = ice_dct[key]
 
     no_ice_keys = np.array(no_ice_keys)
+    print('no ice total: ', no_ice_keys.shape)
     np.random.seed(42)
     np.random.shuffle(no_ice_keys)
     no_ice_keys = no_ice_keys[0:50000]
@@ -425,6 +426,7 @@ def process_2(ice_dct, no_ice_dct, neg_ice_dct):
         new_no_ice_dct[key] = no_ice_dct[key]
 
     neg_ice_keys = np.array(neg_ice_keys)
+    print('neg ice total: ', neg_ice_keys.shape)
     np.random.seed(42)
     np.random.shuffle(neg_ice_keys)
     neg_ice_keys = neg_ice_keys[0:5000]