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

Fixed pca and lda config files

parent 5c873dad
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,6 @@ import bob.bio.base ...@@ -4,7 +4,6 @@ import bob.bio.base
import scipy.spatial import scipy.spatial
algorithm = bob.bio.base.algorithm.LDA( algorithm = bob.bio.base.algorithm.LDA(
subspace_dimension = 50,
distance_function = scipy.spatial.distance.euclidean, distance_function = scipy.spatial.distance.euclidean,
is_distance_function = True is_distance_function = True
) )
...@@ -4,7 +4,7 @@ import bob.bio.base ...@@ -4,7 +4,7 @@ import bob.bio.base
import scipy.spatial import scipy.spatial
algorithm = bob.bio.base.algorithm.PCA( algorithm = bob.bio.base.algorithm.PCA(
subspace_dimension = 30, subspace_dimension = .95,
distance_function = scipy.spatial.distance.euclidean, distance_function = scipy.spatial.distance.euclidean,
is_distance_function = True is_distance_function = True
) )
...@@ -4,8 +4,7 @@ import bob.bio.base ...@@ -4,8 +4,7 @@ import bob.bio.base
import scipy.spatial import scipy.spatial
algorithm = bob.bio.base.algorithm.LDA( algorithm = bob.bio.base.algorithm.LDA(
subspace_dimension = 50, pca_subspace_dimension = 0.95,
pca_subspace_dimension = 100,
distance_function = scipy.spatial.distance.euclidean, distance_function = scipy.spatial.distance.euclidean,
is_distance_function = True is_distance_function = True
) )
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