Table of Contents

Class GenrePrediction<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

A single genre prediction with confidence.

public class GenrePrediction<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
GenrePrediction<T>
Inherited Members

Properties

Genre

Gets or sets the genre name.

public string Genre { get; set; }

Property Value

string

Probability

Gets or sets the probability/confidence score.

public T Probability { get; set; }

Property Value

T

Rank

Gets or sets the rank (1 = most likely).

public int Rank { get; set; }

Property Value

int