ObjectiveFunction#

class ObjectiveFunction(X, y, neural_network, loss)[source]#

Bases: object

An abstract objective function. Provides methods for computing objective value and gradients for forward and backward passes.

প্যারামিটার:
  • X (ndarray) -- The input data.

  • y (ndarray) -- The target values.

  • neural_network (NeuralNetwork) -- An instance of an quantum neural network to be used by this objective function.

  • loss (Loss) -- A target loss function to be used in training.

Methods

abstract gradient(weights)[source]#

Computes gradients of this objective function given weights.

প্যারামিটার:

weights (ndarray) -- an array of weights to be used in the objective function.

রিটার্নস:

Gradients of the function.

রিটার্ন টাইপ:

ndarray

abstract objective(weights)[source]#

Computes the value of this objective function given weights.

প্যারামিটার:

weights (ndarray) -- an array of weights to be used in the objective function.

রিটার্নস:

Value of the function.

রিটার্ন টাইপ:

float