pyntbci.gates.DifferenceGate
- pyntbci.gates.DifferenceGate(estimator: ClassifierMixin) None[source]
Gate described by classification of difference scores. Difference scores are defined as all differences between all pairs of classes.
- Parameters:
estimator (ClassifierMixin) – The estimator used to classify difference scores.
- pyntbci.gates.classes_
The classes that can be predicted, taken from the wrapped estimator’s classes_ after fitting it on the difference scores.
- Type:
NDArray
- pyntbci.gates.estimator_
The fitted clone of estimator. The passed-in estimator is never mutated.
- Type:
ClassifierMixin