MultiClassObjectiveFunction#

class MultiClassObjectiveFunction(X, y, neural_network, loss)[kaynak]#

Bases: ObjectiveFunction

An objective function for multiclass representation of the output. For instance, classes of 0, 1, 2, etc.

Parametreler:
  • 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)[kaynak]#

Computes gradients of this objective function given weights.

Parametreler:

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

Dönüşler:

Gradients of the function.

Dönüş türü:

ndarray

objective(weights)[kaynak]#

Computes the value of this objective function given weights.

Parametreler:

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

Dönüşler:

Value of the function.

Dönüş türü:

float