I think that Gaussian Filters are a super useful class of online statistics. It would be really nice to add these to the OnlineStats.jl roster.
I've spotted GaussianFilters.jl as a potential candidate for a backend. Using this package we can define some sort of class OnlineGaussianFilter <: OnlineStat which stores a GaussianBelief (the state) and an AbstractFilter (the model). The _fit! function can just rely on the update method that this package implements for the various implementations of AbstractFilter.
I think that Gaussian Filters are a super useful class of online statistics. It would be really nice to add these to the OnlineStats.jl roster.
I've spotted GaussianFilters.jl as a potential candidate for a backend. Using this package we can define some sort of class
OnlineGaussianFilter <: OnlineStat
which stores aGaussianBelief
(the state) and anAbstractFilter
(the model). The_fit!
function can just rely on theupdate
method that this package implements for the various implementations ofAbstractFilter
.