From 0066c5e6d027713e94dff750828eba9d72f0ea47 Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Wed, 5 Dec 2018 18:27:09 +0000 Subject: Remove debug prints --- lib/kmean.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'lib/kmean.py') diff --git a/lib/kmean.py b/lib/kmean.py index 2e34702..58309bc 100644 --- a/lib/kmean.py +++ b/lib/kmean.py @@ -34,15 +34,11 @@ def create_kmean_clusters(feature_vectors, labels, gallery_idx, camId): clustercam = [] for i in range(2): clustercam.append(np.add(np.ones(len(km_labels[i])), i)) - print(len(km_labels[i])) for j in range(len(km_labels[i])): cl.append(km_train_data[i].cluster_centers_[j]) cllab.append(km_labels[i][j]) train_data = np.array(cl) - print(train_data.shape) train_label = np.array(cllab) - print(train_label.shape) train_cam = np.array([clustercam[i] for i in range(2)]).reshape(train_label.shape[0]) - print(train_cam.shape) return train_data, train_label, train_cam -- cgit v1.2.3-54-g00ecf