2023-02-09 15:30:14 +01:00
|
|
|
|
|
|
|
#ifndef MLPP_OUTLIER_FINDER_OLD_H
|
|
|
|
#define MLPP_OUTLIER_FINDER_OLD_H
|
|
|
|
|
|
|
|
//
|
|
|
|
// OutlierFinder.hpp
|
|
|
|
//
|
|
|
|
// Created by Marc Melikyan on 11/13/20.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "core/math/math_defs.h"
|
2023-10-24 23:57:38 +02:00
|
|
|
#include "core/int_types.h"
|
2023-02-09 15:30:14 +01:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
|
|
class MLPPOutlierFinderOld {
|
|
|
|
public:
|
|
|
|
// Cnstr
|
|
|
|
MLPPOutlierFinderOld(int threshold);
|
|
|
|
|
|
|
|
std::vector<std::vector<real_t>> modelSetTest(std::vector<std::vector<real_t>> inputSet);
|
|
|
|
std::vector<real_t> modelTest(std::vector<real_t> inputSet);
|
|
|
|
|
|
|
|
// Variables required
|
|
|
|
int threshold;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* OutlierFinder_hpp */
|