mirror of
https://github.com/Relintai/pmlpp.git
synced 2025-02-03 17:25:54 +01:00
28 lines
555 B
C++
28 lines
555 B
C++
|
//
|
||
|
// OutlierFinder.hpp
|
||
|
//
|
||
|
// Created by Marc Melikyan on 11/13/20.
|
||
|
//
|
||
|
|
||
|
#ifndef OutlierFinder_hpp
|
||
|
#define OutlierFinder_hpp
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
namespace MLPP{
|
||
|
class OutlierFinder{
|
||
|
public:
|
||
|
// Cnstr
|
||
|
OutlierFinder(int threshold);
|
||
|
|
||
|
std::vector<std::vector<double>> modelSetTest(std::vector<std::vector<double>> inputSet);
|
||
|
std::vector<double> modelTest(std::vector<double> inputSet);
|
||
|
|
||
|
// Variables required
|
||
|
int threshold;
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif /* OutlierFinder_hpp */
|