Skip to content
Snippets Groups Projects
Commit 47ed8ac1 authored by Olegs NIKISINS's avatar Olegs NIKISINS
Browse files

Fixed a missing method in OneClassGMM algorithm

parent 15c88bed
No related branches found
No related tags found
1 merge request!39Fixed a missing method in OneClassGMM algorithm
Pipeline #
......@@ -18,7 +18,7 @@ import bob.io.base
from sklearn import mixture
from bob.pad.base.utils import convert_frame_cont_to_array, mean_std_normalize
from bob.pad.base.utils import convert_frame_cont_to_array, mean_std_normalize, convert_and_prepare_features
# ==============================================================================
# Main body :
......@@ -184,7 +184,7 @@ class OneClassGMM(Algorithm):
"""
# training_features[0] - training features for the REAL class.
real = self.convert_and_prepare_features(
real = convert_and_prepare_features(
training_features[0]) # output is array
# training_features[1] - training features for the ATTACK class.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment