#[repr(C)]pub struct CandidateTranscript {
pub tokens: *const TokenMetadata,
pub num_tokens: c_uint,
pub confidence: f64,
}
Expand description
@brief A single transcript computed by the model, including a confidence value and the metadata for its constituent tokens.
Fields§
§tokens: *const TokenMetadata
Array of TokenMetadata objects
num_tokens: c_uint
Size of the tokens array
confidence: f64
Approximated confidence value for this transcript. This is roughly the sum of the acoustic model logit values for each timestep/character that contributed to the creation of this transcript.
Trait Implementations§
Source§impl Clone for CandidateTranscript
impl Clone for CandidateTranscript
Source§fn clone(&self) -> CandidateTranscript
fn clone(&self) -> CandidateTranscript
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CandidateTranscript
impl Debug for CandidateTranscript
impl Copy for CandidateTranscript
Auto Trait Implementations§
impl Freeze for CandidateTranscript
impl RefUnwindSafe for CandidateTranscript
impl !Send for CandidateTranscript
impl !Sync for CandidateTranscript
impl Unpin for CandidateTranscript
impl UnwindSafe for CandidateTranscript
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more