Update README.md

This commit is contained in:
2022-12-13 01:29:42 +01:00
parent 59dc6b7402
commit e18d44133a

View File

@@ -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
```