Refactor, and passing tests
This commit is contained in:
@@ -17,15 +17,11 @@ impl GaussianObservation {
|
||||
}
|
||||
|
||||
impl Observation for GaussianObservation {
|
||||
fn match_moments(&self, _mean_cav: f64, _cov_cav: f64) -> (f64, f64, f64) {
|
||||
fn ep_update(&mut self, _storage: &mut Storage, _lr: f64) -> f64 {
|
||||
unimplemented!();
|
||||
}
|
||||
|
||||
fn ep_update(&mut self, _lr: f64, _storage: &mut Storage) -> f64 {
|
||||
unimplemented!();
|
||||
}
|
||||
|
||||
fn kl_update(&mut self, _lr: f64, _storage: &mut Storage) -> f64 {
|
||||
fn kl_update(&mut self, _storage: &mut Storage, _lr: f64) -> f64 {
|
||||
unimplemented!();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user