Skip to content
Snippets Groups Projects
Commit 96d65477 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

GMM.transform no longer returns dask arrays

parent 067f132f
Branches
No related tags found
1 merge request!34GMM.transform no longer returns dask arrays
Pipeline #60026 passed
...@@ -186,7 +186,6 @@ class GMM(BioAlgorithm, BaseEstimator): ...@@ -186,7 +186,6 @@ class GMM(BioAlgorithm, BaseEstimator):
logger.debug("Projecting %d feature vectors", array.shape[0]) logger.debug("Projecting %d feature vectors", array.shape[0])
# Accumulates statistics # Accumulates statistics
gmm_stats = self.ubm.transform(array) gmm_stats = self.ubm.transform(array)
gmm_stats.compute()
# Return the resulting statistics # Return the resulting statistics
return gmm_stats return gmm_stats
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment