pub struct TrainingOutcome<B: Backend> {
pub report: TrainingReport,
pub model: ModelInstance<B>,
pub best_validation_model: Option<ModelInstance<B>>,
pub optimizer_state: Vec<u8>,
}Fields§
§report: TrainingReport§model: ModelInstance<B>§best_validation_model: Option<ModelInstance<B>>§optimizer_state: Vec<u8>Trait Implementations§
Auto Trait Implementations§
impl<B> Freeze for TrainingOutcome<B>
impl<B> !RefUnwindSafe for TrainingOutcome<B>
impl<B> Send for TrainingOutcome<B>
impl<B> !Sync for TrainingOutcome<B>
impl<B> Unpin for TrainingOutcome<B>
impl<B> UnsafeUnpin for TrainingOutcome<B>
impl<B> !UnwindSafe for TrainingOutcome<B>
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