diff --git a/modules/deeplearning/icing_cnn.py b/modules/deeplearning/icing_cnn.py
index db717c416ba1dbeaafcf6222e45a7736811af678..1b5c34b8c93f3926f2535997d662827644874f86 100644
--- a/modules/deeplearning/icing_cnn.py
+++ b/modules/deeplearning/icing_cnn.py
@@ -39,12 +39,12 @@ NOISE_STDDEV = 0.01
 img_width = 16
 
 mean_std_dct = {}
-mean_std_file = homedir+'data/icing/mean_std_lo_hi_l2.pkl'
+mean_std_file = homedir+'mean_std_lo_hi_l2.pkl'
 f = open(mean_std_file, 'rb')
 mean_std_dct_l2 = pickle.load(f)
 f.close()
 
-mean_std_file = homedir+'data/icing/mean_std_lo_hi_l1b.pkl'
+mean_std_file = homedir+'mean_std_lo_hi_l1b.pkl'
 f = open(mean_std_file, 'rb')
 mean_std_dct_l1b = pickle.load(f)
 f.close()