Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1.21 KB

resamplers.rst

File metadata and controls

41 lines (30 loc) · 1.21 KB
.. currentmodule:: qinfer

Resampling Algorithms

Introduction

In order to restore numerical stability to the sequential Monte Carlo algorithm as the effective sample size is reduced, resampling is used to adaptively move particles so as to better represent the posterior distribution. QInfer allows for such algorithms to be specified in a modular way.

:class:`Resampler` - Abstract base class for resampling algorithms

Class Reference

.. autoclass:: Resampler
    :members:
    :special-members: __call__

:class:`LiuWestResampler` - Liu and West (2000) resampling algorithm

Class Reference

.. autoclass:: LiuWestResampler
    :members:
    :special-members: __call__