-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove dead code from
kalman_filter.py
(#393)
* Remove `SteadyStateFilder` Rename `CholeskyFilter` to `SquareRootFilter` to match the literature * Use square root filter equations in `SquareRootFilter` * Remove `SingleTimeSeriesFilter` * Remove tests referencing old code
- Loading branch information
1 parent
4deeec6
commit 12e21de
Showing
7 changed files
with
163 additions
and
315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,15 @@ | ||
from pymc_experimental.statespace.filters.distributions import LinearGaussianStateSpace | ||
from pymc_experimental.statespace.filters.kalman_filter import ( | ||
CholeskyFilter, | ||
SingleTimeseriesFilter, | ||
SquareRootFilter, | ||
StandardFilter, | ||
SteadyStateFilter, | ||
UnivariateFilter, | ||
) | ||
from pymc_experimental.statespace.filters.kalman_smoother import KalmanSmoother | ||
|
||
__all__ = [ | ||
"StandardFilter", | ||
"UnivariateFilter", | ||
"SteadyStateFilter", | ||
"KalmanSmoother", | ||
"SingleTimeseriesFilter", | ||
"CholeskyFilter", | ||
"SquareRootFilter", | ||
"LinearGaussianStateSpace", | ||
] |
Oops, something went wrong.