onclave / NSGA-II

an implementation of NSGA-II in java
MIT License
44 stars 23 forks source link

Can i adapt your code for Multi-objective NSGA - 2 #9

Closed RJoshlan closed 3 years ago

RJoshlan commented 3 years ago

Hi, Your code is really good but Can i adapt your code for Multi-objective NSGA - 2 for solving feature selection problem, if it does how do i go about it

onclave commented 3 years ago

NSGA-2, by nature, is a multi-objective optimization algorithm. So, yes, this library can be used for as a MOEA for feature selection.

Unless you require to change the internal working of NSGA-II for your purpose, I suggest you use this library as an external dependency to your project. This library is available on Maven Central.

For usage, please go through Getting Started, Introduction and Documentation section of the wiki. Let me know if you are unable to understand any section.

RJoshlan commented 3 years ago

Thanks