gmm_training_iterations=25,# Maximum number of iterations for ML GMM Training
gmm_training_iterations=25,# Maximum number of iterations for ML GMM Training
training_threshold=5e-4,# Threshold to end the ML training
training_threshold=5e-4,# Threshold to end the ML training
variance_threshold=5e-4,# Minimum value that a variance can reach
variance_threshold=5e-4,# Minimum value that a variance can reach
...
@@ -33,7 +81,8 @@ class GMM (Algorithm):
...
@@ -33,7 +81,8 @@ class GMM (Algorithm):
# parameters of the GMM enrollment
# parameters of the GMM enrollment
relevance_factor=4,# Relevance factor as described in Reynolds paper
relevance_factor=4,# Relevance factor as described in Reynolds paper
gmm_enroll_iterations=1,# Number of iterations for the enrollment phase
gmm_enroll_iterations=1,# Number of iterations for the enrollment phase
responsibility_threshold=0,# If set, the weight of a particular Gaussian will at least be greater than this threshold. In the case the real weight is lower, the prior mean value will be used to estimate the current mean and variance.
responsibility_threshold=0,
# If set, the weight of a particular Gaussian will at least be greater than this threshold. In the case the real weight is lower, the prior mean value will be used to estimate the current mean and variance.