pub struct ExpectationPropagation { /* private fields */ }Expand description
Expectation Propagation algorithm for approximate inference.
EP approximates the posterior distribution by iteratively refining local approximations using moment matching.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExpectationPropagation
impl RefUnwindSafe for ExpectationPropagation
impl Send for ExpectationPropagation
impl Sync for ExpectationPropagation
impl Unpin for ExpectationPropagation
impl UnwindSafe for ExpectationPropagation
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