Class GenreTrackingResult<T>
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Result of tracking genre over time.
public class GenreTrackingResult<T>
Type Parameters
TThe 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
GenreDistribution
Gets or sets genre distribution over the entire track.
public IReadOnlyDictionary<string, double> GenreDistribution { get; set; }
Property Value
HasGenreChanges
Gets or sets whether the genre changes significantly.
public bool HasGenreChanges { get; set; }
Property Value
Segments
Gets or sets genre segments over time.
public IReadOnlyList<GenreSegment<T>> Segments { get; set; }