From 68d2bc81bb74be22fde3347757ca49c1db847f00 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Sun, 27 Feb 2022 14:59:37 -0600 Subject: [PATCH] snapshot... --- modules/deeplearning/icing_fcn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/deeplearning/icing_fcn.py b/modules/deeplearning/icing_fcn.py index cfdee3d6..34dc7357 100644 --- a/modules/deeplearning/icing_fcn.py +++ b/modules/deeplearning/icing_fcn.py @@ -984,7 +984,7 @@ class IcingIntensityFCN: for data in self.eval_dataset: print(data[0].shape, data[1].shape) pred = self.model([data]) - print(pred.shape, pred.numpy().min(), pred.numpy().max()) + print(pred.shape, np.histogram(pred.numpy())) preds = np.concatenate(pred_s) preds = preds[:,0] -- GitLab