2023-01-24 18:57:18 +01:00
|
|
|
|
|
|
|
#ifndef MLPP_KNN_H
|
|
|
|
#define MLPP_KNN_H
|
|
|
|
|
2023-01-23 21:13:26 +01:00
|
|
|
//
|
|
|
|
// kNN.hpp
|
|
|
|
//
|
|
|
|
// Created by Marc Melikyan on 10/2/20.
|
|
|
|
//
|
|
|
|
|
2023-01-27 13:01:16 +01:00
|
|
|
#include "core/math/math_defs.h"
|
|
|
|
|
2023-01-28 01:02:57 +01:00
|
|
|
#include "core/object/reference.h"
|
2023-01-23 21:13:26 +01:00
|
|
|
|
2023-01-28 01:02:57 +01:00
|
|
|
#include "../lin_alg/mlpp_matrix.h"
|
|
|
|
#include "../lin_alg/mlpp_vector.h"
|
|
|
|
|
|
|
|
class MLPPKNN : public Reference {
|
|
|
|
GDCLASS(MLPPKNN, Reference);
|
2023-01-24 19:20:18 +01:00
|
|
|
|
2023-01-24 19:00:54 +01:00
|
|
|
public:
|
2023-01-28 01:02:57 +01:00
|
|
|
Ref<MLPPMatrix> get_input_set();
|
|
|
|
void set_input_set(const Ref<MLPPMatrix> &val);
|
|
|
|
|
|
|
|
Ref<MLPPVector> get_output_set();
|
|
|
|
void set_output_set(const Ref<MLPPVector> &val);
|
|
|
|
|
|
|
|
int get_k();
|
|
|
|
void set_k(const int val);
|
|
|
|
|
|
|
|
PoolIntArray model_set_test(const Ref<MLPPMatrix> &X);
|
|
|
|
int model_test(const Ref<MLPPVector> &x);
|
2023-01-27 13:01:16 +01:00
|
|
|
real_t score();
|
2023-01-24 19:00:54 +01:00
|
|
|
|
2023-01-28 01:02:57 +01:00
|
|
|
MLPPKNN();
|
|
|
|
~MLPPKNN();
|
|
|
|
|
|
|
|
protected:
|
2023-01-24 19:00:54 +01:00
|
|
|
// Private Model Functions
|
2023-01-28 01:02:57 +01:00
|
|
|
PoolIntArray nearest_neighbors(const Ref<MLPPVector> &x);
|
|
|
|
int determine_class(const PoolIntArray &knn);
|
|
|
|
|
|
|
|
static void _bind_methods();
|
2023-01-24 19:00:54 +01:00
|
|
|
|
|
|
|
// Model Inputs and Parameters
|
2023-01-28 01:02:57 +01:00
|
|
|
Ref<MLPPMatrix> _input_set;
|
|
|
|
Ref<MLPPVector> _output_set;
|
|
|
|
int _k;
|
2023-01-24 19:00:54 +01:00
|
|
|
};
|
2023-01-24 19:20:18 +01:00
|
|
|
|
2023-01-23 21:13:26 +01:00
|
|
|
#endif /* kNN_hpp */
|