DeepSpeech/native_client/dotnet/DeepSpeechClient/Models/TokenMetadata.cs
2020-03-17 14:47:58 +01:00

21 lines
569 B
C#

namespace DeepSpeechClient.Models
{
/// <summary>
/// Stores each individual character, along with its timing information.
/// </summary>
public class TokenMetadata
{
/// <summary>
/// Char of the current timestep.
/// </summary>
public string Text;
/// <summary>
/// Position of the character in units of 20ms.
/// </summary>
public int Timestep;
/// <summary>
/// Position of the character in seconds.
/// </summary>
public float StartTime;
}
}