mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
21 lines
573 B
C#
21 lines
573 B
C#
namespace DeepSpeechClient.Models
|
|
{
|
|
/// <summary>
|
|
/// Stores each individual character, along with its timing information.
|
|
/// </summary>
|
|
public class MetadataItem
|
|
{
|
|
/// <summary>
|
|
/// Char of the current timestep.
|
|
/// </summary>
|
|
public string Character;
|
|
/// <summary>
|
|
/// Position of the character in units of 20ms.
|
|
/// </summary>
|
|
public int Timestep;
|
|
/// <summary>
|
|
/// Position of the character in seconds.
|
|
/// </summary>
|
|
public float StartTime;
|
|
}
|
|
} |