Skip to content

Commit

Permalink
Changed default kernel for DR preprocessor base class
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn committed Oct 2, 2011
1 parent 61c4de9 commit 88eeab8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shogun/preprocessor/DimensionReductionPreprocessor.cpp
@@ -1,5 +1,5 @@
#include <shogun/preprocessor/DimensionReductionPreprocessor.h>
#include <shogun/kernel/GaussianKernel.h>
#include <shogun/kernel/LinearKernel.h>
#include <shogun/distance/EuclidianDistance.h>

using namespace shogun;
Expand All @@ -11,7 +11,7 @@ CDimensionReductionPreprocessor::CDimensionReductionPreprocessor()
m_distance = new CEuclidianDistance();
m_distance->parallel = this->parallel;
SG_REF(this->parallel);
m_kernel = new CGaussianKernel();
m_kernel = new CLinearKernel();
m_kernel->parallel = this->parallel;
SG_REF(this->parallel);

Expand Down

0 comments on commit 88eeab8

Please sign in to comment.