Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Genetic Feature Selection Improvements #96

Open
perib opened this issue Oct 3, 2023 · 0 comments
Open

Genetic Feature Selection Improvements #96

perib opened this issue Oct 3, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@perib
Copy link
Collaborator

perib commented Oct 3, 2023

Feature selection can be done using the FeatureSetSelector by specifying groups of columns as a "set" or by simply selecting a single column per node. Each set or feature will be encoded in an individual FeatureSetSelector node. To mix and match sets/features, the algorithm must manually move around these nodes.

This can be inefficient with a high number of individual columns or sets to select from. This is because the mutation and crossover operations would generally move single nodes around. Multiple nodes may be included in a crossover, but only if they come attached to a selected downstream node.

Another option could be to create a special case node within the GraphIndividual that has its own mutation and crossover functions. These mutation/crossover functions would be able to mix and match a large number of features in a single operation, similar to other implementations of genetic feature selection in other packages.

@perib perib added the enhancement New feature or request label Oct 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant