mirror of
https://github.com/Doctorado-ML/FImdlp.git
synced 2025-08-18 08:55:51 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
77b571af71
|
|||
ff7a91a7ec
|
|||
621c19d00c
|
|||
|
790da5cc60 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -136,3 +136,4 @@ cmake-build-debug/**
|
|||||||
**/x/*
|
**/x/*
|
||||||
**/*.so
|
**/*.so
|
||||||
**/CMakeFiles
|
**/CMakeFiles
|
||||||
|
wheelhouse
|
||||||
|
@@ -1 +1,3 @@
|
|||||||
include src/cppmdlp/CPPFImdlp.h
|
include src/cppmdlp/CPPFImdlp.h
|
||||||
|
include src/cppmdlp/typesFImdlp.h
|
||||||
|
include src/cppmdlp/Metrics.h
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
[](https://github.com/Doctorado-ML/FImdlp/actions/workflows/codeql.yml)
|
[](https://github.com/Doctorado-ML/FImdlp/actions/workflows/codeql.yml)
|
||||||
[](https://www.codacy.com/gh/Doctorado-ML/FImdlp/dashboard?utm_source=github.com&utm_medium=referral&utm_content=Doctorado-ML/FImdlp&utm_campaign=Badge_Grade)
|
[](https://www.codacy.com/gh/Doctorado-ML/FImdlp/dashboard?utm_source=github.com&utm_medium=referral&utm_content=Doctorado-ML/FImdlp&utm_campaign=Badge_Grade)
|
||||||
[](https://codecov.io/gh/Doctorado-ML/FImdlp)
|
[](https://codecov.io/gh/Doctorado-ML/FImdlp)
|
||||||
[](https://img.shields.io/pypi/v/FImdlp?color=g)
|
[](https://pypi.org/project/FImdlp)
|
||||||

|

|
||||||
|
|
||||||
Discretization algorithm based on the paper by Usama M. Fayyad and Keki B. Irani
|
Discretization algorithm based on the paper by Usama M. Fayyad and Keki B. Irani
|
||||||
|
Submodule src/cppmdlp updated: 35c532bf1d...7b20bde428
@@ -11,7 +11,6 @@ cdef extern from "../cppmdlp/CPPFImdlp.h" namespace "mdlp":
|
|||||||
vector[precision_t] getCutPoints()
|
vector[precision_t] getCutPoints()
|
||||||
string version()
|
string version()
|
||||||
|
|
||||||
|
|
||||||
cdef class CFImdlp:
|
cdef class CFImdlp:
|
||||||
cdef CPPFImdlp *thisptr
|
cdef CPPFImdlp *thisptr
|
||||||
def __cinit__(self, algorithm):
|
def __cinit__(self, algorithm):
|
||||||
@@ -25,4 +24,3 @@ cdef class CFImdlp:
|
|||||||
return self.thisptr.getCutPoints()
|
return self.thisptr.getCutPoints()
|
||||||
def get_version(self):
|
def get_version(self):
|
||||||
return self.thisptr.version()
|
return self.thisptr.version()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user