Skip to content
Snippets Groups Projects
Commit fc1526bd authored by Manuel Günther's avatar Manuel Günther
Browse files

Fixed bug that was introduced by parameter renaming.

parent 8c48e60b
No related branches found
No related tags found
No related merge requests found
...@@ -106,8 +106,8 @@ def enrol(model_features, ubm, gmm_trainer): ...@@ -106,8 +106,8 @@ def enrol(model_features, ubm, gmm_trainer):
def stats(probe_feature, ubm): def stats(probe_feature, ubm):
"""Computes the UBM Statistics for the given feature vector""" """Computes the UBM Statistics for the given feature vector"""
# compute the UBM stats for the given feature # compute the UBM stats for the given probe feature
feature = bob.io.Arrayset(probe_feature) probe_feature = bob.io.Arrayset(probe_feature)
# Accumulate statistics # Accumulate statistics
gmm_stats = bob.machine.GMMStats(ubm.dim_c, ubm.dim_d) gmm_stats = bob.machine.GMMStats(ubm.dim_c, ubm.dim_d)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment