cleaning data base

This commit is contained in:
Alejandro Moreo Fernandez 2021-06-21 12:57:44 +02:00
parent b4aeaa97b7
commit 986e61620c
1 changed files with 0 additions and 2 deletions

View File

@ -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')