GreedySelector#
- class equisolve.numpy._selection.GreedySelector(selector_class: Type[GreedySelector], selection_type: str, **selector_arguments)[source]#
Wraps
skmatter._selection.GreedySelectorfor a TensorMap.The class creates a selector for each block. The selection will be done based the values of each
TensorBlock. Gradients will not be considered for the selection.- fit(X: TensorMap, warm_start: bool = False) None[source]#
Learn the features to select.
- Parameters:
X – Training vectors.
warm_start – Whether the fit should continue after having already run, after increasing n_to_select. Assumes it is called with the same X.