Changed the kcentroid object so that its default is to keep more linearly

independent vectors rather than newer vectors.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402940
This commit is contained in:
Davis King 2009-03-16 03:28:41 +00:00
parent 7404ceb822
commit c30548dbe7
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ namespace dlib
const kernel_type& kernel_,
scalar_type tolerance_ = 0.001,
unsigned long max_dictionary_size_ = 1000000,
bool remove_oldest_first_ = true
bool remove_oldest_first_ = false
) :
my_remove_oldest_first(remove_oldest_first_),
kernel(kernel_),

View File

@ -58,7 +58,7 @@ namespace dlib
const kernel_type& kernel_,
scalar_type tolerance_ = 0.001,
unsigned long max_dictionary_size_ = 1000000,
bool remove_oldest_first_ = true
bool remove_oldest_first_ = false
);
/*!
requires