Table of Contents

Class SpeakerProfile<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Represents an enrolled speaker profile.

public class SpeakerProfile<T>

Type Parameters

T

The 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

DateTime

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

int

SpeakerId

Gets or sets the unique identifier for this speaker.

public string SpeakerId { get; set; }

Property Value

string

TotalEnrollmentDuration

Gets or sets the total duration of enrollment audio in seconds.

public double TotalEnrollmentDuration { get; set; }

Property Value

double

UpdatedAt

Gets or sets when this profile was last updated.

public DateTime UpdatedAt { get; set; }

Property Value

DateTime