From 5d053949cefd6b1619e789869a78ba687a0812b8 Mon Sep 17 00:00:00 2001 From: "akomaty@idiap.ch" <akomaty@idiap.ch> Date: Fri, 20 Oct 2017 13:02:51 +0200 Subject: [PATCH] removed debugging statements from bob/bio/gmm/tools/gmm.py --- bob/bio/gmm/tools/gmm.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/bob/bio/gmm/tools/gmm.py b/bob/bio/gmm/tools/gmm.py index 67d348f..dd8b9da 100644 --- a/bob/bio/gmm/tools/gmm.py +++ b/bob/bio/gmm/tools/gmm.py @@ -215,21 +215,6 @@ def gmm_estep(algorithm, extractor, iteration, indices, force=False): trainer.initialize(gmm_machine, None) # Calls the E-step and extracts the GMM statistics - print("################################################################################################################\n") - print("file selector", fs) - print("\n") - print("stats file: ", stats_file) - print("\n") - print("extractor:", extractor) - print("\n") - print("shape of the data: ", data.shape, "\n") - for i in numpy.isinf(data): - if i.any(): - print('Infinity Value !!!!!!!!\n') - for j in numpy.isnan(data): - if j.any(): - print('NAN Value !!!!!!!!\n') - print("################################################################################################################\n") algorithm.ubm_trainer.e_step(gmm_machine, data) gmm_stats = algorithm.ubm_trainer.gmm_statistics -- GitLab