qiskit.aqua.components.multiclass_extensions.MulticlassExtension¶
-
class
MulticlassExtension
[Quellcode]¶ Base class for multiclass extension.
This method should initialize the module and use an exception if a component of the module is not available.
-
abstract
__init__
()[Quellcode]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
()Initialize self.
predict
(x)Applying multiple estimators for prediction.
set_estimator
(estimator_cls[, params])Called internally to set
Estimator
and parameters :type estimator_cls:Callable
[[List
],Estimator
] :param estimator_cls: AnEstimator
class :type params:Optional
[List
] :param params: Parameters for the estimatortest
(x, y)Testing multiple estimators each for distinguishing a pair of classes.
train
(x, y)Training multiple estimators each for distinguishing a pair of classes.
-
abstract
predict
(x)[Quellcode]¶ Applying multiple estimators for prediction.
- Parameter
x (numpy.ndarray) – input points
-
set_estimator
(estimator_cls, params=None)[Quellcode]¶ Called internally to set
Estimator
and parameters :type estimator_cls:Callable
[[List
],Estimator
] :param estimator_cls: AnEstimator
class :type params:Optional
[List
] :param params: Parameters for the estimator- Rückgabetyp
None
-
abstract
test
(x, y)[Quellcode]¶ Testing multiple estimators each for distinguishing a pair of classes.
- Parameter
x (numpy.ndarray) – input points
y (numpy.ndarray) – input labels
-
abstract
train
(x, y)[Quellcode]¶ Training multiple estimators each for distinguishing a pair of classes.
- Parameter
x (numpy.ndarray) – input points
y (numpy.ndarray) – input labels
-
abstract