From 728a6bc83529f666c6b5bad53aea172d145d3a21 Mon Sep 17 00:00:00 2001 From: "Alinson S. Xavier" Date: Tue, 27 Jul 2021 11:24:41 -0500 Subject: [PATCH] Remove debug statement --- miplearn/features/sample.py | 1 - 1 file changed, 1 deletion(-) diff --git a/miplearn/features/sample.py b/miplearn/features/sample.py index 5c19172..41c7f52 100644 --- a/miplearn/features/sample.py +++ b/miplearn/features/sample.py @@ -195,7 +195,6 @@ class Hdf5Sample(Sample): return None ds = self.file[key] assert len(ds.shape) == 1 - print(ds.dtype) if h5py.check_string_dtype(ds.dtype): result = ds.asstr()[:].tolist() result = [r if len(r) > 0 else None for r in result]