google_api_big_query v0.12.0 GoogleApi.BigQuery.V2.Model.BinaryConfusionMatrix View Source

Confusion matrix for binary classification models.

Attributes

  • falseNegatives (String.t): Number of false samples predicted as false. Defaults to nil.
  • falsePositives (String.t): Number of false samples predicted as true. Defaults to nil.
  • positiveClassThreshold (float()): Threshold value used when computing each of the following metric. Defaults to nil.
  • precision (float()): Aggregate precision. Defaults to nil.
  • recall (float()): Aggregate recall. Defaults to nil.
  • trueNegatives (String.t): Number of true samples predicted as false. Defaults to nil.
  • truePositives (String.t): Number of true samples predicted as true. Defaults to nil.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Link to this type

t() View Source
t() :: %GoogleApi.BigQuery.V2.Model.BinaryConfusionMatrix{
  falseNegatives: String.t(),
  falsePositives: String.t(),
  positiveClassThreshold: float(),
  precision: float(),
  recall: float(),
  trueNegatives: String.t(),
  truePositives: String.t()
}

Link to this section Functions

Link to this function

decode(value, options) View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.