Skip to content

Commit

Permalink
Fixed pca and lda config files
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Guenther committed Jun 25, 2015
1 parent 5c873da commit 7ba1349
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion bob/bio/base/config/algorithm/lda.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import scipy.spatial

algorithm = bob.bio.base.algorithm.LDA(
subspace_dimension = 50,
distance_function = scipy.spatial.distance.euclidean,
is_distance_function = True
)
2 changes: 1 addition & 1 deletion bob/bio/base/config/algorithm/pca.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import scipy.spatial

algorithm = bob.bio.base.algorithm.PCA(
subspace_dimension = 30,
subspace_dimension = .95,
distance_function = scipy.spatial.distance.euclidean,
is_distance_function = True
)
3 changes: 1 addition & 2 deletions bob/bio/base/config/algorithm/pca_lda.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
import scipy.spatial

algorithm = bob.bio.base.algorithm.LDA(
subspace_dimension = 50,
pca_subspace_dimension = 100,
pca_subspace_dimension = 0.95,
distance_function = scipy.spatial.distance.euclidean,
is_distance_function = True
)

0 comments on commit 7ba1349

Please sign in to comment.