pub struct Gaussian3dTrainerRecord<B: Backend> {Show 13 fields
pub iteration: u64,
pub learning_rate_colors_sh: LearningRateRecord,
pub learning_rate_opacities: LearningRateRecord,
pub learning_rate_positions: LearningRateRecord,
pub learning_rate_rotations: LearningRateRecord,
pub learning_rate_scalings: LearningRateRecord,
pub optimizer_colors_sh: AdamRecord<B, 2>,
pub optimizer_opacities: AdamRecord<B, 2>,
pub optimizer_positions: AdamRecord<B, 2>,
pub optimizer_rotations: AdamRecord<B, 2>,
pub optimizer_scalings: AdamRecord<B, 2>,
pub options_renderer: Gaussian3dRenderOptions,
pub refiner: RefinerRecord<B>,
}
Expand description
Trainer record for 3DGS.
Fields§
§iteration: u64
Iteration.
learning_rate_colors_sh: LearningRateRecord
Learning rate for colors SH.
learning_rate_opacities: LearningRateRecord
Learning rate for opacities.
learning_rate_positions: LearningRateRecord
Learning rate for positions.
learning_rate_rotations: LearningRateRecord
Learning rate for rotations.
learning_rate_scalings: LearningRateRecord
Learning rate for scalings.
optimizer_colors_sh: AdamRecord<B, 2>
Optimizer for colors SH.
optimizer_opacities: AdamRecord<B, 2>
Optimizer for opacities.
optimizer_positions: AdamRecord<B, 2>
Optimizer for positions.
optimizer_rotations: AdamRecord<B, 2>
Optimizer for rotations.
optimizer_scalings: AdamRecord<B, 2>
Optimizer for scalings.
options_renderer: Gaussian3dRenderOptions
Renderer options.
refiner: RefinerRecord<B>
Refiner.
Trait Implementations§
source§impl<B: Clone + Backend> Clone for Gaussian3dTrainerRecord<B>
impl<B: Clone + Backend> Clone for Gaussian3dTrainerRecord<B>
source§fn clone(&self) -> Gaussian3dTrainerRecord<B>
fn clone(&self) -> Gaussian3dTrainerRecord<B>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<B: Backend> Record<B> for Gaussian3dTrainerRecord<B>
impl<B: Backend> Record<B> for Gaussian3dTrainerRecord<B>
Auto Trait Implementations§
impl<B> Freeze for Gaussian3dTrainerRecord<B>where
<B as Backend>::FloatTensorPrimitive: Freeze,
<B as Backend>::QuantizedTensorPrimitive: Freeze,
impl<B> RefUnwindSafe for Gaussian3dTrainerRecord<B>where
<B as Backend>::FloatTensorPrimitive: RefUnwindSafe,
<B as Backend>::QuantizedTensorPrimitive: RefUnwindSafe,
impl<B> Send for Gaussian3dTrainerRecord<B>
impl<B> Sync for Gaussian3dTrainerRecord<B>
impl<B> Unpin for Gaussian3dTrainerRecord<B>
impl<B> UnwindSafe for Gaussian3dTrainerRecord<B>where
<B as Backend>::FloatTensorPrimitive: UnwindSafe,
<B as Backend>::QuantizedTensorPrimitive: 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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