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§
Source§impl<T> AutodiffModule for Ignored<T>
impl<T> AutodiffModule for Ignored<T>
Source§impl<T> Module for Ignored<T>
impl<T> Module for Ignored<T>
Source§fn visit<V: ModuleVisitor>(&self, _visitor: &mut V)
fn visit<V: ModuleVisitor>(&self, _visitor: &mut V)
Visit each tensor parameter in the module with a visitor.
Source§fn map<M: ModuleMapper>(self, _mapper: &mut M) -> Self
fn map<M: ModuleMapper>(self, _mapper: &mut M) -> Self
Map each tensor parameter in the module with a mapper.
Source§fn to_device(self, _: &Device) -> Self
fn to_device(self, _: &Device) -> Self
Move the module and all of its sub-modules to the given device. Read more
Source§fn fork(self, _: &Device) -> Self
fn fork(self, _: &Device) -> Self
Fork the module and all of its sub-modules to the given device. Read more
Source§fn collect_devices(&self, devices: Devices) -> Devices
fn collect_devices(&self, devices: Devices) -> Devices
Return all the devices found in the underneath module tree added to the given vector
without duplicates.
Source§fn devices(&self) -> Devices
fn devices(&self) -> Devices
Return all the devices found in the underneath module tree without duplicates.
Source§fn freeze_group(self, group: ParamGroup) -> Self
fn freeze_group(self, group: ParamGroup) -> Self
Set
require_grad to false for every parameter in the given group, leaving the rest
of the module untouched. Read moreSource§fn unfreeze_group(self, group: ParamGroup) -> Self
fn unfreeze_group(self, group: ParamGroup) -> Self
Set
require_grad to true for every parameter in the given group, leaving the rest
of the module untouched. Read moreSource§fn train(self) -> Selfwhere
Self: AutodiffModule,
fn train(self) -> Selfwhere
Self: AutodiffModule,
Move the module and all of its sub-modules to the autodiff backend. Read more
Source§fn num_params(&self) -> usize
fn num_params(&self) -> usize
Get the number of parameters the module has, including all of its sub-modules.
Source§fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
Quantize the weights of the module.
Source§fn quantize_weights_group(
self,
quantizer: &mut Quantizer,
group: ParamGroup,
) -> Self
fn quantize_weights_group( self, quantizer: &mut Quantizer, group: ParamGroup, ) -> Self
Quantize the weights of the given parameter group.
Source§fn apply_lora(self, config: LoraConfig) -> Selfwhere
Self: Sized,
fn apply_lora(self, config: LoraConfig) -> Selfwhere
Self: Sized,
Attach LoRA adapters to the module’s 2-D weights, freezing the base weights. Read more
Source§fn apply_qlora(self, config: LoraConfig, quantizer: Quantizer) -> Selfwhere
Self: Sized,
fn apply_qlora(self, config: LoraConfig, quantizer: Quantizer) -> Selfwhere
Self: Sized,
Apply QLoRA to the module: quantize the (frozen) base weights and attach trainable LoRA
adapters to 2-D weights.
Source§fn into_record(self) -> ModuleRecordwhere
Self: Sized,
fn into_record(self) -> ModuleRecordwhere
Self: Sized,
Collect this module’s parameters into a
ModuleRecord. Read moreSource§fn try_load_record(self, record: ModuleRecord) -> Result<Self, RecordError>where
Self: Sized,
fn try_load_record(self, record: ModuleRecord) -> Result<Self, RecordError>where
Self: Sized,
Apply a
ModuleRecord to this module, returning the loaded
module. Read moreSource§fn load_record(self, record: ModuleRecord) -> Selfwhere
Self: Sized,
fn load_record(self, record: ModuleRecord) -> Selfwhere
Self: Sized,
Apply a
ModuleRecord to this module, consuming and returning
it. Read moreSource§fn save_file<P: AsRef<Path>>(self, path: P) -> Result<(), RecordError>where
Self: Sized,
fn save_file<P: AsRef<Path>>(self, path: P) -> Result<(), RecordError>where
Self: Sized,
Available on crate feature
std only.Save this module’s parameters to a burnpack file on disk. Read more
Source§fn load_file<P: AsRef<Path>>(self, path: P) -> Selfwhere
Self: Sized,
fn load_file<P: AsRef<Path>>(self, path: P) -> Selfwhere
Self: Sized,
Available on crate feature
std only.Load this module’s parameters from a burnpack file on disk, returning the loaded module. Read more
Source§fn try_load_file<P: AsRef<Path>>(self, path: P) -> Result<Self, RecordError>where
Self: Sized,
fn try_load_file<P: AsRef<Path>>(self, path: P) -> Result<Self, RecordError>where
Self: Sized,
Available on crate feature
std only.Source§impl<T> ModuleDisplay for Ignored<T>
impl<T> ModuleDisplay for Ignored<T>
Source§fn format(&self, passed_settings: DisplaySettings) -> String
fn format(&self, passed_settings: DisplaySettings) -> String
Formats the module with provided display settings. Read more
Source§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> UnsafeUnpin for Ignored<T>where
T: UnsafeUnpin,
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<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> 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