BinaryObjectiveFunction#

class BinaryObjectiveFunction(X, y, neural_network, loss)[исходный код]#

Базовые классы: ObjectiveFunction

An objective function for binary representation of the output. For instance, classes of -1 and +1.

Параметры:
  • 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

gradient(weights)[исходный код]#

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

objective(weights)[исходный код]#

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