Class SpeakerProfile<T>
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Represents an enrolled speaker profile.
public class SpeakerProfile<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
SpeakerProfile<T>
- Inherited Members
Properties
CreatedAt
Gets or sets when this profile was created.
public DateTime CreatedAt { get; set; }
Property Value
Embedding
Gets or sets the speaker embedding.
public Tensor<T> Embedding { get; set; }
Property Value
- Tensor<T>
NumEnrollmentSamples
Gets or sets the number of audio samples used to create this profile.
public int NumEnrollmentSamples { get; set; }
Property Value
SpeakerId
Gets or sets the unique identifier for this speaker.
public string SpeakerId { get; set; }
Property Value
TotalEnrollmentDuration
Gets or sets the total duration of enrollment audio in seconds.
public double TotalEnrollmentDuration { get; set; }
Property Value
UpdatedAt
Gets or sets when this profile was last updated.
public DateTime UpdatedAt { get; set; }