// // OutlierFinder.hpp // // Created by Marc Melikyan on 11/13/20. // #ifndef OutlierFinder_hpp #define OutlierFinder_hpp #include namespace MLPP{ class OutlierFinder{ public: // Cnstr OutlierFinder(int threshold); std::vector> modelSetTest(std::vector> inputSet); std::vector modelTest(std::vector inputSet); // Variables required int threshold; }; } #endif /* OutlierFinder_hpp */