SequentialModel user defined type

Warning

This documentation refers to the Classic QDK, which has been replaced by the Modern QDK.

Please see https://aka.ms/qdk.api for the API documentation for the Modern QDK.

Namespace: Microsoft.Quantum.MachineLearning

Package: Microsoft.Quantum.MachineLearning

Describes a quantum classifier model composed of a sequence of parameterized and controlled rotations, an assignment of rotation angles, and a bias between the two classes recognized by the model.


newtype SequentialModel = (Structure : Microsoft.Quantum.MachineLearning.ControlledRotation[], Parameters : Double[], Bias : Double);

Named Items

Structure : ControlledRotation[]

The sequence of controlled rotations used to classify inputs.

Parameters : Double[]

An assignment of rotation angles to the given classification structure.

Bias : Double

The bias between the two classes recognized by this classifier.

References