pub struct RunningState<V> { /* private fields */ }Expand description
A state that can be updated during the forward pass while being thread safe.
§Note
The state value is the average of all updates on all threads.
Implementations§
Source§impl<const D: usize> RunningState<Tensor<D>>
impl<const D: usize> RunningState<Tensor<D>>
Sourcepub fn from_record(record: Param<Tensor<D>>) -> Self
pub fn from_record(record: Param<Tensor<D>>) -> Self
Create a new running state from a record.
Sourcepub fn value_sync(&self) -> Tensor<D>
pub fn value_sync(&self) -> Tensor<D>
Get the current value and make sure it is sync.
§Note
Don’t use this function after an update on the same thread where other threads might have to register their update before the actual synchronization needs to happen.
Trait Implementations§
Source§impl<const D: usize> AutodiffModule for RunningState<Tensor<D>>
impl<const D: usize> AutodiffModule for RunningState<Tensor<D>>
Source§impl<V: Clone> Clone for RunningState<V>
impl<V: Clone> Clone for RunningState<V>
Source§fn clone(&self) -> RunningState<V>
fn clone(&self) -> RunningState<V>
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<V: Debug> Debug for RunningState<V>
impl<V: Debug> Debug for RunningState<V>
Source§impl<V> Display for RunningState<V>
impl<V> Display for RunningState<V>
Source§impl<const D: usize> Module for RunningState<Tensor<D>>
impl<const D: usize> Module for RunningState<Tensor<D>>
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: &Device) -> Self
fn to_device(self, device: &Device) -> Self
Move the module and all of its sub-modules to the given device. Read more
Source§fn fork(self, device: &Device) -> Self
fn fork(self, device: &Device) -> Self
Fork the module and all of its sub-modules to the given device. Read more
Source§fn collect_devices(&self, devices: Vec<Device>) -> Vec<Device>
fn collect_devices(&self, devices: Vec<Device>) -> Vec<Device>
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<V> ModuleDisplay for RunningState<V>
impl<V> ModuleDisplay for RunningState<V>
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
Source§impl<V> ModuleDisplayDefault for RunningState<V>
impl<V> ModuleDisplayDefault for RunningState<V>
Auto Trait Implementations§
impl<V> Freeze for RunningState<V>
impl<V> RefUnwindSafe for RunningState<V>
impl<V> Send for RunningState<V>where
V: Send,
impl<V> Sync for RunningState<V>where
V: Send,
impl<V> Unpin for RunningState<V>
impl<V> UnsafeUnpin for RunningState<V>
impl<V> UnwindSafe for RunningState<V>
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