qiskit.aqua.components.neural_networks.DiscriminativeNetwork¶
-
class
DiscriminativeNetwork
[소스]¶ Base class for discriminative Quantum or Classical Neural Networks.
This method should initialize the module but raise an exception if a required component of the module is not available.
Methods
__init__
()Initialize self.
get_label
(x)Apply quantum/classical neural network to the given input sample and compute the respective data label
loss
(x, y[, weights])Loss function used for optimization
set_seed
(seed)Set seed.
train
(data, weights[, penalty, …])Perform one training step w.r.t to the discriminator’s parameters
-
abstract
get_label
(x)[소스]¶ Apply quantum/classical neural network to the given input sample and compute the respective data label
- 매개변수
x (Discriminator) – input, i.e. data sample.
- 예외
NotImplementedError – not implemented
-
abstract
loss
(x, y, weights=None)[소스]¶ Loss function used for optimization
- 매개변수
x (Discriminator) – output.
y (Label) – the data point
weights (numpy.ndarray) – Data weights.
- 반환값
Loss w.r.t to the generated data points.
- 예외
NotImplementedError – not implemented
-
abstract
set_seed
(seed)[소스]¶ Set seed.
- 매개변수
seed (int) – seed
- 예외
NotImplementedError – not implemented
-
abstract
train
(data, weights, penalty=False, quantum_instance=None, shots=None)[소스]¶ Perform one training step w.r.t to the discriminator’s parameters
- 매개변수
data (numpy.ndarray) – Data batch.
weights (numpy.ndarray) – Data sample weights.
penalty (bool) – Indicate whether or not penalty function is applied to the loss function. Ignored if no penalty function defined.
quantum_instance (QuantumInstance) – used to run Quantum network. Ignored for a classical network.
shots (int) – Number of shots for hardware or qasm execution. Ignored for classical network
- 반환값
with Discriminator loss and updated parameters.
- 반환 형식
dict
- 예외
NotImplementedError – not implemented
-
abstract