Skip to content

Commit

Permalink
Remove prints from code
Browse files Browse the repository at this point in the history
  • Loading branch information
ylogx committed Apr 20, 2017
1 parent 965f77a commit 74a67ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aesthetics/fisher/gmm.py
Expand Up @@ -40,7 +40,7 @@ def generate(self, input_folder, limit):
max_shape = np.array([v.shape[0] for v in img_descriptors]).max()
img_descriptors = list(filter(lambda x: x is not None and x.shape[0] == max_shape, img_descriptors))
words = np.concatenate(img_descriptors)
print("Training GMM of size", self.K)
# print("Training GMM of size", self.K)
self.means, self.covariances, self.weights = self.train_expectation_maximisation(words, self.K)
# Throw away gaussians with weights that are too small:
self.means = self._remove_too_small(self.means, self.weights)
Expand Down

0 comments on commit 74a67ee

Please sign in to comment.