Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move multitask clustered LR to gpl directory #3790

Merged
merged 1 commit into from
Apr 26, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
*/

#include <shogun/transfer/multitask/MultitaskClusteredLogisticRegression.h>
#ifdef USE_GPL_SHOGUN

#include <shogun/lib/malsar/malsar_clustered.h>
#include <shogun/lib/malsar/malsar_options.h>
Expand Down Expand Up @@ -139,5 +138,3 @@ bool CMultitaskClusteredLogisticRegression::train_machine(CFeatures* data)
}

}

#endif //USE_GPL_SHOGUN
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#define MULTITASKCLUSTEREDLOGISTICREGRESSION_H_

#include <shogun/lib/config.h>
#ifdef USE_GPL_SHOGUN

#include <shogun/transfer/multitask/MultitaskLogisticRegression.h>

Expand Down Expand Up @@ -116,6 +115,4 @@ class CMultitaskClusteredLogisticRegression : public CMultitaskLogisticRegressio
int32_t m_num_clusters;
};
}
#endif //USE_GPL_SHOGUN
#endif