From ad4fbabeca2cbdf4cb47f1a923183027494ab0a8 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Thu, 22 Oct 2015 16:39:15 -0200 Subject: Added PLMP as an alternative technique to use; knn() is now exposed in the mp namespace. --- interactionhandler.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'interactionhandler.cpp') diff --git a/interactionhandler.cpp b/interactionhandler.cpp index b79fdd8..2eb55bb 100644 --- a/interactionhandler.cpp +++ b/interactionhandler.cpp @@ -15,7 +15,11 @@ void InteractionHandler::setSubsample(const arma::mat &Ys) { switch (m_technique) { case TECHNIQUE_PLMP: + mp::plmp(m_X, m_sampleIndices, Ys, m_Y); + break; case TECHNIQUE_LSP: + // mp::lsp(m_X, m_sampleIndices, Ys, m_Y); + break; case TECHNIQUE_LAMP: mp::lamp(m_X, m_sampleIndices, Ys, m_Y); break; -- cgit v1.2.3