From 986e61620c7882e97245bd82d323e7615699d7b1 Mon Sep 17 00:00:00 2001 From: Alex Moreo Date: Mon, 21 Jun 2021 12:57:44 +0200 Subject: [PATCH] cleaning data base --- quapy/data/base.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/quapy/data/base.py b/quapy/data/base.py index b3eae11..69d3ae6 100644 --- a/quapy/data/base.py +++ b/quapy/data/base.py @@ -137,8 +137,6 @@ class LabelledCollection: elif isinstance(self.instances, list) and isinstance(other.instances, list): join_instances = self.instances + other.instances elif isinstance(self.instances, np.ndarray) and isinstance(other.instances, np.ndarray): - print(self.instances.shape) - print(other.instances.shape) join_instances = np.concatenate([self.instances, other.instances]) else: raise NotImplementedError('unsupported operation for collection types')