pub struct TrainingRow {
pub sample_id: Key,
pub speaker_id: Key,
pub cohort_id: Key,
pub features: FeatureVector,
}Expand description
The complete model input needed for one labelled feature row.
Fields§
§sample_id: Key§speaker_id: Key§cohort_id: Key§features: FeatureVectorTrait Implementations§
Source§impl Clone for TrainingRow
impl Clone for TrainingRow
Source§fn clone(&self) -> TrainingRow
fn clone(&self) -> TrainingRow
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 moreSource§impl Debug for TrainingRow
impl Debug for TrainingRow
impl Eq for TrainingRow
Source§impl PartialEq for TrainingRow
impl PartialEq for TrainingRow
impl StructuralPartialEq for TrainingRow
Auto Trait Implementations§
impl Freeze for TrainingRow
impl RefUnwindSafe for TrainingRow
impl Send for TrainingRow
impl Sync for TrainingRow
impl Unpin for TrainingRow
impl UnsafeUnpin for TrainingRow
impl UnwindSafe for TrainingRow
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