Source code for qiskit.aqua.components.neural_networks.generative_network
# This code is part of Qiskit.
#
# (C) Copyright IBM 2019, 2021.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
""" Generative Quantum and Classical Neural Networks."""
from abc import ABC, abstractmethod
from ...deprecation import warn_package
[docs]class GenerativeNetwork(ABC):
"""
Base class for generative Quantum and Classical Neural Networks.
This method should initialize the module, but
raise an exception if a required component of the module is not available.
"""
[docs] @abstractmethod
def __init__(self):
super().__init__()
self._num_parameters = 0
self._num_qubits = 0
self._bounds = list()
warn_package('aqua.components.neural_networks',
'qiskit_machine_learning.algorithms.distribution_learners.qgan',
'qiskit-machine-learning')
@property
@abstractmethod
def parameter_values(self):
"""
Get parameter values from the generator
Raises:
NotImplementedError: not implemented
"""
raise NotImplementedError()
[docs] @abstractmethod
def set_seed(self, seed):
"""
Set seed.
Args:
seed (int): seed
Raises:
NotImplementedError: not implemented
"""
raise NotImplementedError()
[docs] @abstractmethod
def set_discriminator(self, discriminator):
"""
Set discriminator network.
Args:
discriminator (Discriminator): Discriminator used to compute the loss function.
Raises:
NotImplementedError: not implemented
"""
raise NotImplementedError()
[docs] @abstractmethod
def get_output(self, quantum_instance, params, shots):
"""
Apply quantum/classical neural network to given input and get the respective output
Args:
quantum_instance (QuantumInstance): Quantum Instance, used to run the generator circuit.
params (numpy.ndarray): parameters which should be used to run the generator,
if None use self._params
shots (int): if not None use a number of shots that is different from the number
set in quantum_instance
Returns:
Neural network output
Raises:
NotImplementedError: not implemented
"""
raise NotImplementedError()
[docs] @abstractmethod
def loss(self):
"""
Loss function used for optimization
"""
raise NotImplementedError()
[docs] @abstractmethod
def train(self, quantum_instance=None, shots=None):
"""
Perform one training step w.r.t to the generator's parameters
Args:
quantum_instance (QuantumInstance): used to run generator network.
Ignored for a classical network.
shots (int): Number of shots for hardware or qasm execution.
Ignored for classical network
Returns:
dict: generator loss and updated parameters.
Raises:
NotImplementedError: not implemented
"""
raise NotImplementedError()