2023-01-24 18:57:18 +01:00
|
|
|
|
|
|
|
#ifndef MLPP_K_MEANS_H
|
|
|
|
#define MLPP_K_MEANS_H
|
|
|
|
|
2023-01-23 21:13:26 +01:00
|
|
|
//
|
|
|
|
// KMeans.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 14:35:05 +01:00
|
|
|
#include "core/object/reference.h"
|
2023-01-24 19:00:54 +01:00
|
|
|
|
2023-01-28 14:35:05 +01:00
|
|
|
#include "../lin_alg/mlpp_matrix.h"
|
|
|
|
#include "../lin_alg/mlpp_vector.h"
|
|
|
|
|
|
|
|
class MLPPKMeans : public Reference {
|
|
|
|
GDCLASS(MLPPKMeans, Reference);
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum MeanType {
|
|
|
|
MEAN_TYPE_CENTROID = 0,
|
|
|
|
MEAN_TYPE_KMEANSPP,
|
|
|
|
};
|
2023-01-24 19:20:18 +01:00
|
|
|
|
2023-01-24 19:00:54 +01:00
|
|
|
public:
|
2023-01-28 14:35:05 +01:00
|
|
|
Ref<MLPPMatrix> get_input_set();
|
|
|
|
void set_input_set(const Ref<MLPPMatrix> &val);
|
|
|
|
|
|
|
|
int get_k();
|
|
|
|
void set_k(const int val);
|
|
|
|
|
|
|
|
MeanType get_mean_type();
|
|
|
|
void set_mean_type(const MeanType val);
|
|
|
|
|
|
|
|
void initialize();
|
|
|
|
|
|
|
|
Ref<MLPPMatrix> model_set_test(const Ref<MLPPMatrix> &X);
|
|
|
|
Ref<MLPPVector> model_test(const Ref<MLPPVector> &x);
|
|
|
|
void train(int epoch_num, bool UI = false);
|
2023-01-27 13:01:16 +01:00
|
|
|
real_t score();
|
2023-01-28 14:35:05 +01:00
|
|
|
Ref<MLPPVector> silhouette_scores();
|
|
|
|
|
|
|
|
MLPPKMeans();
|
|
|
|
~MLPPKMeans();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void _evaluate();
|
|
|
|
void _compute_mu();
|
2023-01-24 19:00:54 +01:00
|
|
|
|
2023-01-29 15:46:55 +01:00
|
|
|
void _centroid_initialization();
|
|
|
|
void _kmeanspp_initialization();
|
2023-01-28 14:35:05 +01:00
|
|
|
real_t _cost();
|
2023-01-24 19:00:54 +01:00
|
|
|
|
2023-01-28 14:35:05 +01:00
|
|
|
static void _bind_methods();
|
2023-01-24 19:00:54 +01:00
|
|
|
|
2023-01-28 14:35:05 +01:00
|
|
|
Ref<MLPPMatrix> _input_set;
|
|
|
|
Ref<MLPPMatrix> _mu;
|
|
|
|
Ref<MLPPMatrix> _r;
|
2023-01-24 19:00:54 +01:00
|
|
|
|
2023-01-28 14:35:05 +01:00
|
|
|
real_t _accuracy_threshold;
|
|
|
|
int _k;
|
|
|
|
bool _initialized;
|
2023-01-23 21:13:26 +01:00
|
|
|
|
2023-01-28 14:35:05 +01:00
|
|
|
MeanType _mean_type;
|
2023-01-24 19:00:54 +01:00
|
|
|
};
|
2023-01-24 19:20:18 +01:00
|
|
|
|
2023-01-28 14:35:05 +01:00
|
|
|
VARIANT_ENUM_CAST(MLPPKMeans::MeanType);
|
2023-01-23 21:13:26 +01:00
|
|
|
|
|
|
|
#endif /* KMeans_hpp */
|