From 078e8aea5d3c7a8297cb9c8a8400e3247035a8f0 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 26 Sep 2022 15:01:47 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/srcnn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/deeplearning/srcnn.py b/modules/deeplearning/srcnn.py index e7ffa10f..7313d923 100644 --- a/modules/deeplearning/srcnn.py +++ b/modules/deeplearning/srcnn.py @@ -306,7 +306,7 @@ class SRCNN: trn_idxs = np.arange(len(train_data_files)) np.random.shuffle(trn_idxs) - tst_idxs = np.arange(len(train_data_files)) + tst_idxs = np.arange(len(test_data_files)) self.get_train_dataset(trn_idxs) self.get_test_dataset(tst_idxs) -- GitLab