JingweiToo / Wrapper-Feature-Selection-Toolbox

This toolbox offers more than 40 wrapper feature selection methods include PSO, GA, DE, ACO, GSA, and etc. They are simple and easy to implement.
BSD 3-Clause "New" or "Revised" License
169 stars 36 forks source link

Can I use another classifiers in this Toolbox? #2

Closed cy601 closed 2 years ago

cy601 commented 3 years ago

Oh, I know the fitness function uses KNN,.I have read some papers, most of them are using the ML-KNN as fitness function. ML-knn is based on the KNN, but I don't know whether classification efficiency is improved. Thank you very much!

JingweiToo commented 3 years ago

Yes, you just change the code in the jFitnessFunction. You replace the KNN algorithm with yours.

cy601 commented 3 years ago

OK thank you, let me have a try