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