pub struct GpfaResult {
pub trajectories: Vec<f64>,
pub c: Vec<f64>,
pub d: Vec<f64>,
pub r: Vec<f64>,
pub tau: Vec<f64>,
pub log_likelihoods: Vec<f64>,
pub n_latents: usize,
pub n_bins: usize,
pub n_neurons: usize,
}Expand description
GPFA result.
Fields§
§trajectories: Vec<f64>Latent trajectories, row-major (n_latents, n_bins).
c: Vec<f64>Loading matrix, row-major (n_neurons, n_latents).
d: Vec<f64>Mean vector (n_neurons).
r: Vec<f64>Noise diagonal (n_neurons).
tau: Vec<f64>GP timescales (n_latents).
log_likelihoods: Vec<f64>Log-likelihoods per iteration.
n_latents: usize§n_bins: usize§n_neurons: usizeAuto Trait Implementations§
impl Freeze for GpfaResult
impl RefUnwindSafe for GpfaResult
impl Send for GpfaResult
impl Sync for GpfaResult
impl Unpin for GpfaResult
impl UnsafeUnpin for GpfaResult
impl UnwindSafe for GpfaResult
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> 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