Class LanguageSegment<T>
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Represents a time-segmented language detection result.
public class LanguageSegment<T>
Type Parameters
TThe numeric type.
- Inheritance
-
LanguageSegment<T>
- Inherited Members
Properties
Confidence
Gets the confidence score.
public required T Confidence { get; init; }
Property Value
- T
EndTime
Gets the end time in seconds.
public required double EndTime { get; init; }
Property Value
LanguageCode
Gets the detected language code.
public required string LanguageCode { get; init; }
Property Value
StartTime
Gets the start time in seconds.
public required double StartTime { get; init; }