InferredLabel function

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

Given a of classification probability and a bias, returns the label inferred from that probability.

function InferredLabel (bias : Double, probability : Double) : Int

Input

bias : Double

The bias between two classes, typically the result of training a classifier.

probability : Double

A classification probabilities for a particular sample, typically resulting from estimating its classification frequency.

Output : Int

The label inferred from the given classification probability.