From e18d44133ae0d59aa6a60753f39650f2f85c67fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana?= Date: Tue, 13 Dec 2022 01:29:42 +0100 Subject: [PATCH] Update README.md --- README.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 906273f..3c42245 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,29 @@ # FImdlp -Fayyad - Irani MDLP discretization algorithm +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. +``` ## Build and usage sample +### Python sample + ```bash -python setup.py build_ext --inplace +pip install -e . python samples/sample.py iris --original python samples/sample.py iris --proposal python samples/sample.py -h # for more options ``` + +### C++ sample + +```bash +cd samples +mkdir build +cd build +cmake .. +make +./sample iris +```