DeepSpeech/native_client/dotnet/DeepSpeechClient/Models/Metadata.cs
2019-04-24 20:12:39 +02:00

17 lines
540 B
C#

namespace DeepSpeechClient.Models
{
/// <summary>
/// Stores the entire CTC output as an array of character metadata objects.
/// </summary>
public class Metadata
{
/// <summary>
/// Approximated probability (confidence value) for this transcription.
/// </summary>
public double Probability { get; set; }
/// <summary>
/// List of metada items containing char, timespet, and time offset.
/// </summary>
public MetadataItem[] Items { get; set; }
}
}