Struct Ignored
pub struct Ignored<T>(pub T);๐Deprecated since 0.21.0: Ignored<T> is deprecated. Use #[module(skip)] for non-persistent fields (same behavior).
Expand description
Container to satisfy the Module trait for types that are not modules.
Tuple Fieldsยง
ยง0: T๐Deprecated since 0.21.0: Ignored<T> is deprecated. Use #[module(skip)] for non-persistent fields (same behavior).
Trait Implementationsยง
ยงimpl<B, T> AutodiffModule<B> for Ignored<T>
impl<B, T> AutodiffModule<B> for Ignored<T>
ยงtype InnerModule = Ignored<T>
type InnerModule = Ignored<T>
Inner module without auto-differentiation.
ยงfn valid(&self) -> <Ignored<T> as AutodiffModule<B>>::InnerModule
fn valid(&self) -> <Ignored<T> as AutodiffModule<B>>::InnerModule
Returns the same module, but on the inner backend without auto-differentiation.
ยงfn from_inner(
module: <Ignored<T> as AutodiffModule<B>>::InnerModule,
) -> Ignored<T>
fn from_inner( module: <Ignored<T> as AutodiffModule<B>>::InnerModule, ) -> Ignored<T>
Wraps an inner module back into an auto-diff module.
ยงimpl<B, T> Module<B> for Ignored<T>
impl<B, T> Module<B> for Ignored<T>
ยงtype Record = EmptyRecord
type Record = EmptyRecord
Type to save and load the module.
ยงfn visit<V>(&self, _visitor: &mut V)where
V: ModuleVisitor<B>,
fn visit<V>(&self, _visitor: &mut V)where
V: ModuleVisitor<B>,
Visit each tensor parameter in the module with a visitor.
ยงfn map<M>(self, _mapper: &mut M) -> Ignored<T>where
M: ModuleMapper<B>,
fn map<M>(self, _mapper: &mut M) -> Ignored<T>where
M: ModuleMapper<B>,
Map each tensor parameter in the module with a mapper.
ยงfn load_record(self, _record: <Ignored<T> as Module<B>>::Record) -> Ignored<T>
fn load_record(self, _record: <Ignored<T> as Module<B>>::Record) -> Ignored<T>
Load the module state from a record.
ยงfn into_record(self) -> <Ignored<T> as Module<B>>::Record
fn into_record(self) -> <Ignored<T> as Module<B>>::Record
Convert the module into a record containing the state.
ยงfn to_device(self, _: &<B as BackendTypes>::Device) -> Ignored<T>
fn to_device(self, _: &<B as BackendTypes>::Device) -> Ignored<T>
Move the module and all of its sub-modules to the given device. Read more
ยงfn fork(self, _: &<B as BackendTypes>::Device) -> Ignored<T>
fn fork(self, _: &<B as BackendTypes>::Device) -> Ignored<T>
Fork the module and all of its sub-modules to the given device. Read more
ยงfn collect_devices(
&self,
devices: Vec<<B as BackendTypes>::Device>,
) -> Vec<<B as BackendTypes>::Device>
fn collect_devices( &self, devices: Vec<<B as BackendTypes>::Device>, ) -> Vec<<B as BackendTypes>::Device>
Return all the devices found in the underneath module tree added to the given vector
without duplicates.
ยงfn devices(&self) -> Vec<<B as BackendTypes>::Device>
fn devices(&self) -> Vec<<B as BackendTypes>::Device>
Return all the devices found in the underneath module tree without duplicates.
ยงfn train<AB>(self) -> Self::TrainModulewhere
AB: AutodiffBackend<InnerBackend = B>,
Self: HasAutodiffModule<AB>,
fn train<AB>(self) -> Self::TrainModulewhere
AB: AutodiffBackend<InnerBackend = B>,
Self: HasAutodiffModule<AB>,
Move the module and all of its sub-modules to the autodiff backend. Read more
ยงfn num_params(&self) -> usize
fn num_params(&self) -> usize
Get the number of parameters the module has, including all of its sub-modules.
ยงfn save_file<FR, PB>(
self,
file_path: PB,
recorder: &FR,
) -> Result<(), RecorderError>
fn save_file<FR, PB>( self, file_path: PB, recorder: &FR, ) -> Result<(), RecorderError>
Save the module to a file using the provided file recorder. Read more
ยงfn load_file<FR, PB>(
self,
file_path: PB,
recorder: &FR,
device: &<B as BackendTypes>::Device,
) -> Result<Self, RecorderError>
fn load_file<FR, PB>( self, file_path: PB, recorder: &FR, device: &<B as BackendTypes>::Device, ) -> Result<Self, RecorderError>
Load the module from a file using the provided file recorder. Read more
ยงfn quantize_weights(self, quantizer: &mut Quantizer) -> Self
fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
Quantize the weights of the module.
ยงimpl<T> ModuleDisplay for Ignored<T>
impl<T> ModuleDisplay for Ignored<T>
ยงfn format(&self, passed_settings: DisplaySettings) -> String
fn format(&self, passed_settings: DisplaySettings) -> String
Formats the module with provided display settings. Read more
ยงfn custom_settings(&self) -> Option<DisplaySettings>
fn custom_settings(&self) -> Option<DisplaySettings>
Custom display settings for the module. Read more
Auto Trait Implementationsยง
impl<T> Freeze for Ignored<T>where
T: Freeze,
impl<T> RefUnwindSafe for Ignored<T>where
T: RefUnwindSafe,
impl<T> Send for Ignored<T>where
T: Send,
impl<T> Sync for Ignored<T>where
T: Sync,
impl<T> Unpin for Ignored<T>where
T: Unpin,
impl<T> UnwindSafe for Ignored<T>where
T: UnwindSafe,
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
ยงimpl<C> CloneExpand for Cwhere
C: Clone,
impl<C> CloneExpand for Cwhere
C: Clone,
fn __expand_clone_method(&self, _scope: &mut Scope) -> C
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
ยงimpl<T> Instrument for T
impl<T> Instrument for T
ยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
ยง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ยงimpl<T> Pointable for T
impl<T> Pointable for T
ยงimpl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
ยงfn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of [
ToCompactString::to_compact_string()] Read moreยงfn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a [
CompactString]. Read more