pub struct FrameLabel {
pub class: PowersetClass,
pub max_softmax: f32,
pub probs: [f32; 7],
}Expand description
Decoded label for a single audio frame.
Fields§
§class: PowersetClass§max_softmax: f32Maximum-class softmax probability (∈ [0, 1]). Useful for confidence reporting.
probs: [f32; 7]Full softmax vector over the powerset classes (sums to 1). Carried so the aggregator can average and permute probabilities without recomputing the softmax from the logits.
Trait Implementations§
Source§impl Clone for FrameLabel
impl Clone for FrameLabel
Source§fn clone(&self) -> FrameLabel
fn clone(&self) -> FrameLabel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FrameLabel
Source§impl Debug for FrameLabel
impl Debug for FrameLabel
Source§impl PartialEq for FrameLabel
impl PartialEq for FrameLabel
impl StructuralPartialEq for FrameLabel
Auto Trait Implementations§
impl Freeze for FrameLabel
impl RefUnwindSafe for FrameLabel
impl Send for FrameLabel
impl Sync for FrameLabel
impl Unpin for FrameLabel
impl UnsafeUnpin for FrameLabel
impl UnwindSafe for FrameLabel
Blanket Implementations§
impl<T> Boilerplate for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T, U> Imply<T> for U
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more