Class GenreClassificationResult
- Namespace
- AiDotNet.Audio.Classification
- Assembly
- AiDotNet.dll
Result of genre classification.
public class GenreClassificationResult
- Inheritance
-
GenreClassificationResult
- Inherited Members
Properties
AllProbabilities
Probabilities for all genres.
public required Dictionary<string, double> AllProbabilities { get; init; }
Property Value
Confidence
Confidence score for predicted genre (0-1).
public double Confidence { get; init; }
Property Value
Features
Extracted features used for classification.
public required GenreFeatures Features { get; init; }
Property Value
PredictedGenre
Most likely genre.
public required string PredictedGenre { get; init; }
Property Value
TopPredictions
Top K predictions with probabilities.
public required List<(string Genre, double Probability)> TopPredictions { get; init; }
Property Value
- List<(string Label, double Confidence)>