Skip to content

Commit

Permalink
Update pyriemann_qiskit/classification.py
Browse files Browse the repository at this point in the history
Co-authored-by: Quentin Barthélemy <[email protected]>
  • Loading branch information
gcattan and qbarthelemy authored Feb 6, 2025
1 parent b06d5a4 commit 86233d2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pyriemann_qiskit/classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -870,10 +870,11 @@ class NearestConvexHull(BaseEstimator, ClassifierMixin, TransformerMixin):
all samples per class. If subsampling is "full", this
parameter is defaulted to -1.
subsampling : {"min", "random", "full"}, default="min"
Subsampling strategy of training set to estimate distance to hulls.
"min" estimates hull using the n_samples_per_hull closest matrices.
"random" estimates hull using n_samples_per_hull random matrices.
"full" computes the hull on the entire training points, as in [1]_.
Subsampling strategy of training set to estimate distance to hulls:
- "min" estimates hull using the n_samples_per_hull closest matrices;
- "random" estimates hull using n_samples_per_hull random matrices;
- "full" estimates the hull using the entire training matrices, as in [1]_.
seed : float, default=None
Optional random seed to use when subsampling is set to `random`.
Expand Down

0 comments on commit 86233d2

Please sign in to comment.