Sample selection#
Wrappers for the sample selectors of scikit-matter.
- class equisolve.numpy.sample_selection.CUR(recompute_every=1, k=1, tolerance=1e-12, n_to_select=None, score_threshold=None, score_threshold_type='absolute', progress_bar=False, full=False, random_state=0)[source]#
Bases:
GreedySelectorTransformer that performs Greedy Sample Selection using CUR.
Refer to
skmatter.sample_selection.CURfor full documentation.
- class equisolve.numpy.sample_selection.FPS(initialize=0, n_to_select=None, score_threshold=None, score_threshold_type='absolute', progress_bar=False, full=False, random_state=0)[source]#
Bases:
GreedySelectorTransformer that performs Greedy Sample Selection using Farthest Point Sampling.
Refer to
skmatter.sample_selection.FPSfor full documentation.