diff --git a/modules/deeplearning/icing_fcn.py b/modules/deeplearning/icing_fcn.py index cfdee3d6b9a080b079ae4f4837e9b1d56b01f221..34dc73575ebf1f800376fb08ea645ad31cf9dd57 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]