Uses of Class
unifeat.featureSelection.wrapper.WrapperApproach
Package
Description
-
Uses of WrapperApproach in unifeat.featureSelection.wrapper
Modifier and TypeMethodDescriptionstatic WrapperApproach
WrapperApproach.newMethod
(WrapperType type, Object... arguments) This method creates new object from one of the classes that has been inherited from the WrapperApproach class according to type of the feature selection method. -
Uses of WrapperApproach in unifeat.featureSelection.wrapper.ACOBasedMethods
Modifier and TypeClassDescriptionclass
BasicACO<ColonyType>
The abstract class contains the main methods and fields that are used in all ACO-based feature selection methods. -
Uses of WrapperApproach in unifeat.featureSelection.wrapper.ACOBasedMethods.OptimalACO
Modifier and TypeClassDescriptionclass
This java class is used to implement feature selection method based on optimal ant colony optimization (Optimal ACO) in which the type of Colony is extended from Colony class. -
Uses of WrapperApproach in unifeat.featureSelection.wrapper.GABasedMethods
Modifier and TypeClassDescriptionclass
BasicGA<PopulationType>
The abstract class contains the main methods and fields that are used in all GA-based feature selection methods. -
Uses of WrapperApproach in unifeat.featureSelection.wrapper.GABasedMethods.HGAFS
Modifier and TypeClassDescriptionclass
This java class is used to implement feature selection method based on hybrid genetic algorithm for feature selection using local search (HGAFS) in which the type of Population is extended from Population class. -
Uses of WrapperApproach in unifeat.featureSelection.wrapper.GABasedMethods.SimpleGA
Modifier and TypeClassDescriptionclass
This java class is used to implement feature selection method based on simple genetic algorithm (Simple GA) in which the type of Population is extended from Population class. -
Uses of WrapperApproach in unifeat.featureSelection.wrapper.PSOBasedMethods
Modifier and TypeClassDescriptionclass
BasicPSO<SwarmType>
The abstract class contains the main methods and fields that are used in all PSO-based feature selection methods. -
Uses of WrapperApproach in unifeat.featureSelection.wrapper.PSOBasedMethods.BPSO
Modifier and TypeClassDescriptionclass
This java class is used to implement feature selection method based on binary particle swarm optimization (BPSO) in which the type of Swarm is extended from Swarm class. -
Uses of WrapperApproach in unifeat.featureSelection.wrapper.PSOBasedMethods.CPSO
Modifier and TypeClassDescriptionclass
This java class is used to implement feature selection method based on continuous particle swarm optimization (CPSO) in which the type of Swarm is extended from Swarm class. -
Uses of WrapperApproach in unifeat.featureSelection.wrapper.PSOBasedMethods.HPSO_LS
Modifier and TypeClassDescriptionclass
This java class is used to implement feature selection based on hybrid particle swarm optimization method using local search (HPSO-LS) in which the type of Swarm is extended from Swarm class. -
Uses of WrapperApproach in unifeat.featureSelection.wrapper.PSOBasedMethods.PSO42
Modifier and TypeClassDescriptionclass
This java class is used to implement feature selection method based on particle swarm optimization version 4-2(PSO(4-2)) with new initialization strategy and updating rule in which the type of Swarm is extended from Swarm class.