mirror of
https://github.com/Doctorado-ML/FImdlp.git
synced 2025-08-17 16:35:52 +00:00
42 lines
1.6 KiB
Markdown
42 lines
1.6 KiB
Markdown
# FImdlp
|
|
[](https://github.com/Doctorado-ML/FImdlp/actions/workflows/main.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://codecov.io/gh/Doctorado-ML/FImdlp)
|
|
[](https://pypi.org/project/FImdlp)
|
|

|
|
|
|
Discretization algorithm based on the paper by Usama M. Fayyad and Keki B. Irani
|
|
|
|
|
|
Multi-Interval Discretization of Continuous-Valued Attributes for Classification Learning. In Proceedings of the 13th International Joint Conference on Artificial Intelligence (IJCAI-95), pages 1022-1027, Montreal, Canada, August 1995.
|
|
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
git clone --recurse-submodules https://github.com/doctorado-ml/FImdlp.git
|
|
```
|
|
|
|
## Build and usage sample
|
|
|
|
### Python sample
|
|
|
|
```bash
|
|
pip install -e .
|
|
python samples/sample.py iris
|
|
python samples/sample.py iris --alternative
|
|
python samples/sample.py -h # for more options
|
|
```
|
|
|
|
### C++ sample
|
|
|
|
```bash
|
|
cd samples
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
./sample iris
|
|
```
|