pub struct VariationalLayerParameters {
pub mean: Array2<f64>,
pub chol_cov: Array3<f64>,
pub inducing_points: Array2<f64>,
pub kernel_params: Array1<f64>,
}Expand description
Variational parameters for a single layer
Fields§
§mean: Array2<f64>Mean of variational posterior (n_inducing × output_dim)
chol_cov: Array3<f64>Lower triangular matrix for covariance (Cholesky decomposition)
inducing_points: Array2<f64>Inducing point locations
kernel_params: Array1<f64>Hyperparameters of the kernel
Trait Implementations§
Source§impl Clone for VariationalLayerParameters
impl Clone for VariationalLayerParameters
Source§fn clone(&self) -> VariationalLayerParameters
fn clone(&self) -> VariationalLayerParameters
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for VariationalLayerParameters
impl RefUnwindSafe for VariationalLayerParameters
impl Send for VariationalLayerParameters
impl Sync for VariationalLayerParameters
impl Unpin for VariationalLayerParameters
impl UnwindSafe for VariationalLayerParameters
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§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