mirror of
https://github.com/rmontanana/mdlp.git
synced 2025-08-20 18:06:00 +00:00
Include upper_bound and lower_bound implementation
This commit is contained in:
@@ -7,6 +7,10 @@
|
||||
#include "typesFImdlp.h"
|
||||
|
||||
namespace mdlp {
|
||||
enum class bound_dir_t {
|
||||
LEFT,
|
||||
RIGHT
|
||||
};
|
||||
class Discretizer {
|
||||
public:
|
||||
Discretizer() = default;
|
||||
@@ -22,6 +26,7 @@ namespace mdlp {
|
||||
protected:
|
||||
labels_t discretizedData = labels_t();
|
||||
cutPoints_t cutPoints; // At least two cutpoints must be provided, the first and the last will be ignored in transform
|
||||
bound_dir_t direction; // used in transform
|
||||
};
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user