Update Readme

This commit is contained in:
2022-12-21 11:47:53 +01:00
parent f449f438ef
commit 036b41a0eb
2 changed files with 14 additions and 2 deletions

View File

@@ -6,4 +6,17 @@ The implementation tries to mitigate the problem of different label values with
- Sorts the values of the variable using the label values as a tie-breaker
- Once found a valid candidate for the split, it checks if the previous value is the same as actual one, and tries to get previous one, or next if the former is not possible.
The algorithm returns the cut points for the variable.
The algorithm returns the cut points for the variable.
## Sample
To run the sample, just execute the following commands:
```bash
cd sample
mkdir build
cd build
cmake ..
make
./sample iris
```

View File

@@ -4,4 +4,3 @@ project(main)
set(CMAKE_CXX_STANDARD 14)
add_executable(sample sample.cpp ArffFiles.cpp ../Metrics.cpp ../CPPFImdlp.cpp)
add_executable(test test.cpp ArffFiles.cpp ../Metrics.cpp ../CPPFImdlp.cpp)