mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
13 lines
346 B
C#
13 lines
346 B
C#
namespace DeepSpeechClient.Models
|
|
{
|
|
/// <summary>
|
|
/// Stores the entire CTC output as an array of character metadata objects.
|
|
/// </summary>
|
|
public class Metadata
|
|
{
|
|
/// <summary>
|
|
/// List of candidate transcripts.
|
|
/// </summary>
|
|
public CandidateTranscript[] Transcripts { get; set; }
|
|
}
|
|
} |