public sealed class TranscriptNormalization : IMessage<TranscriptNormalization>, IEquatable<TranscriptNormalization>, IDeepCloneable<TranscriptNormalization>, IBufferMessage, IMessage
Transcription normalization configuration. Use transcription normalization
to automatically replace parts of the transcript with phrases of your
choosing. For StreamingRecognize, this normalization only applies to stable
partial transcripts (stability > 0.8) and final transcripts.
public RepeatedField<TranscriptNormalization.Types.Entry> Entries { get; }
A list of replacement entries. We will perform replacement with one entry
at a time. For example, the second entry in ["cat" => "dog", "mountain cat"
=> "mountain dog"] will never be applied because we will always process the
first entry before it. At most 100 entries.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["TranscriptNormalization is a class used to configure automatic replacements in speech transcripts, focusing on replacing specific phrases with desired alternatives."],["This class is part of the Google.Cloud.Speech.V1P1Beta1 namespace within the Google.Cloud.Speech.V1P1Beta1.dll assembly, and it implements interfaces such as IMessage, IEquatable, IDeepCloneable, and IBufferMessage."],["The TranscriptNormalization class is constructed through default and copy constructors, providing flexibility in its initialization."],["The `Entries` property, which is a `RepeatedField`, allows for a list of replacement rules, where each entry contains a phrase to replace and its replacement, limited to a maximum of 100 entries."],["Normalization with `StreamingRecognize` will only apply to transcripts that meet a stability threshold of 0.8 or final transcripts."]]],[]]