Table of Contents

Class GenreTrackingResult<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Result of tracking genre over time.

public class GenreTrackingResult<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
GenreTrackingResult<T>
Inherited Members

Properties

DominantGenre

Gets or sets the overall dominant genre.

public string DominantGenre { get; set; }

Property Value

string

GenreDistribution

Gets or sets genre distribution over the entire track.

public IReadOnlyDictionary<string, double> GenreDistribution { get; set; }

Property Value

IReadOnlyDictionary<string, double>

HasGenreChanges

Gets or sets whether the genre changes significantly.

public bool HasGenreChanges { get; set; }

Property Value

bool

Segments

Gets or sets genre segments over time.

public IReadOnlyList<GenreSegment<T>> Segments { get; set; }

Property Value

IReadOnlyList<GenreSegment<T>>