tfp.experimental.sequential.ensemble_adjustment_kalman_filter_update
Stay organized with collections
Save and categorize content based on your preferences.
Ensemble Adjustment Kalman Filter Update.
tfp.experimental.sequential.ensemble_adjustment_kalman_filter_update(
state,
observation,
observation_fn,
minimum_observation_prior_variance=None,
name=None
)
The Ensemble Adjustment Kalman Filter (EAKF) [1], is a deterministic variant
of the Ensemble Kalman Filter [2].
Specifically, the Ensemble Kalman Filter update step guarantees that the
expectation of the ensemble covariance matches that of a usual Kalman filter
update step. The EAKF modifies the update step so as to guarantee the ensemble
covariance after updating matches that of the true posterior under a Linear
Gaussian State Space Model. This update is also deterministic.
This can reduce variance and yield better estimates compared to the
Ensemble Kalman Filter. In the univariate observation case, this is about the
same cost as an Ensemble Kalman Filter update, but the multivariate
observation case will require 2 SVD computations per update.
Args |
state
|
Instance of EnsembleKalmanFilterState .
|
observation
|
Tensor representing the observation for this timestep.
|
observation_fn
|
callable returning an instance of
tfd.MultivariateNormalLinearOperator along with an extra information
to be returned in the EnsembleKalmanFilterState .
|
minimum_observation_prior_variance
|
Python Float . If set, this will be
minimum for the observation prior variance.
|
name
|
Python str name for ops created by this method.
Default value: None
(i.e., 'ensemble_adjustment_kalman_filter_update' ).
|
Returns |
next_state
|
EnsembleKalmanFilterState representing particles at next
timestep, after applying Kalman update equations.
|
References
[1] Jeffrey L. Anderson. An Ensemble Adjustment Kalman Filter for Data
Assimilation. Monthly Weather Review, 2001.
[2] Geir Evensen. Sequential data assimilation with a nonlinear
quasi-geostrophic model using Monte Carlo methods to forecast error
statistics. Journal of Geophysical Research, 1994.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-11-21 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-11-21 UTC."],[],[]]