Skip to main content

ModuleOptimizer

Struct ModuleOptimizer 

Source
pub struct ModuleOptimizer { /* private fields */ }
Expand description

Optimizes a whole module by applying a per-parameter Optimizer to each of its parameters.

It is non-generic over the module and optimizer: any O: Optimizer is type-erased behind a dynamic optimizer, and per-parameter states are kept as type-erased states keyed by ParamId. Build one with optimizer.into() or OptimizerConfig::init().

It is possible to use different optimizers for different parameters. To do so, use the ModuleOptimizer::with_group function to add an optimizer for all parameters matching the provided group.

Implementations§

Source§

impl ModuleOptimizer

Source

pub fn has_gradient_clipping(&self) -> bool

Check if the optimizer has gradient clipping. If there are multiple optimizers, checks if any group has gradient clipping.

Source

pub fn grad_clipping(&self) -> Option<&GradientClipping>

Access the gradient clipping. If there are multiple optimizers, returns the first optimizer’s GradientClipping.

Source

pub fn with_grad_clipping(self, gradient_clipping: GradientClipping) -> Self

Sets the gradient clipping. If there are multiple optimizers, assigns it to the first one.

§Arguments
  • gradient_clipping - The gradient clipping.
§Returns

The optimizer.

Source

pub fn with_group<O>( self, group: ParamGroup, optim: O, grad_clipping: Option<GradientClipping>, ) -> Self
where O: DynOptimizer + 'static,

Adds an optimizer specific to a parameter group.

Parameters matching this group will be optimized using the provided optimizer and gradient clipping configuration.

§Matching Rules
  • Precedence: If a parameter matches multiple groups, the last group added takes precedence.
  • Fallback: The first optimizer added must match all parameters to act as a global fallback.
§Side Effects
  • State Reset: Adding a new group will reset any existing optimizer states for parameters that match the new group.
Source§

impl ModuleOptimizer

Source

pub fn step<M: AutodiffModule>( &mut self, lr_module: impl Into<ModuleLearningRate>, module: M, grads: GradientsParams, ) -> M

Update the module parameters with the given gradients, advancing the optimizer state.

Source

pub fn step_multi<M: AutodiffModule>( &mut self, lr_module: impl Into<ModuleLearningRate>, module: M, grads: MultiGradientsParams, ) -> M

Like step, but accumulating gradients sourced from multiple devices.

Source

pub fn to_record(&self) -> OptimizerRecord

Decompose the optimizer state into a serializable OptimizerRecord.

Source

pub fn load_record(self, record: OptimizerRecord) -> Self

Load the optimizer state from an OptimizerRecord.

State tensors are materialized on the default device; no device argument is needed because each parameter’s state is migrated to that parameter’s (gradient’s) device on the next step — see the to_device call in the step path. The load device is therefore irrelevant to correctness.

Source

pub fn into_bytes(&self) -> Result<Bytes, RecordError>

Serialize the optimizer state to an in-memory burnpack byte buffer.

Source

pub fn from_bytes(self, bytes: Bytes) -> Result<Self, RecordError>

Load the optimizer state from an in-memory burnpack byte buffer.

Source

pub fn save<P: AsRef<Path>>(&self, path: P) -> Result<(), RecordError>

Available on crate feature std only.

Save the optimizer state to a burnpack file on disk.

Source

pub fn load<P: AsRef<Path>>(self, path: P) -> Result<Self, RecordError>

Available on crate feature std only.

Load the optimizer state from a burnpack file on disk.

Trait Implementations§

Source§

impl Clone for ModuleOptimizer

Source§

fn clone(&self) -> ModuleOptimizer

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<O> From<O> for ModuleOptimizer
where O: Optimizer,

Source§

fn from(optim: O) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneExpand for T
where T: Clone,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoComptime for T

Source§

fn comptime(self) -> Self

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> TuneInputs for T
where T: Clone + Send + Sync + 'static,

Source§

type At<'a> = T

The concrete input type at lifetime 'a.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more