diff --git a/modules/deeplearning/srcnn_l1b_l2.py b/modules/deeplearning/srcnn_l1b_l2.py
index 9b89fc7ebac92220ac310d90a721261faaec9ed9..739f11519665c508cbc862041ce8c8ecfad07ce8 100644
--- a/modules/deeplearning/srcnn_l1b_l2.py
+++ b/modules/deeplearning/srcnn_l1b_l2.py
@@ -272,7 +272,7 @@ class SRCNN:
         tmp = input_data[:, label_idx, :, :]
         tmp = tmp.copy()
         tmp = np.where(np.isnan(tmp), 0, tmp)
-        tmp = smooth_2d(tmp, sigma=1.0)
+        #tmp = smooth_2d(tmp, sigma=1.0)
         tmp = tmp[:, slc_y_2, slc_x_2]
         tmp = resample_2d_linear(x_2, y_2, tmp, t, s)
         tmp = tmp[:, y_k, x_k]