JingweiToo / Wrapper-Feature-Selection-Toolbox-Python

This toolbox offers 13 wrapper feature selection methods (PSO, GA, GWO, HHO, BA, WOA, and etc.) with examples. It is simple and easy to implement.
BSD 3-Clause "New" or "Revised" License
244 stars 69 forks source link

Binary Conversion #15

Closed mpriyadh closed 2 years ago

mpriyadh commented 2 years ago

Hi JingweiToo First I want to really congratulate and thank you for this great contribution. Can you please elaborate about the significance and need for this binary conversion function in the HHO.py module Thanks in advance..

JingweiToo commented 2 years ago

Hi,

It is used to convert the continuous solution into a binary version (which is only 0 or 1).

mpriyadh commented 2 years ago

yes I understood that point. Can you please tell me the need to convert to binary? can we not proceed without converting

JingweiToo commented 2 years ago

Because the solution is presenting continuously while we are going to detect only feature is selected (1) or feature is not selected (0).