Skip to content

Commit

Permalink
minor updates to the arhmm notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
slinderman committed Nov 14, 2022
1 parent 373665d commit f9f8b35
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 58 deletions.
18 changes: 9 additions & 9 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,20 +103,17 @@ or future observations,
where h is the forecast horizon.
(Note that by using a hidden state to represent the past observations,
the model can have "infinite" memory, unlike a standard auto-regressive model.)
All of these computations can be done efficiently using our library,
as we discuss below.
In addition, we can estimate the parameters of the transition and emission models,
All of these computations can be done efficiently using Dynamax.
Moreover, you can use Dynamax to estimate the parameters of the transition and emission models,
as we discuss below.

More information can be found in these books:

* "Machine Learning: Advanced Topics", K. Murphy, MIT Press 2023. Available at https://probml.github.io/pml-book/book2.html.
* "Bayesian Filtering and Smoothing", S. Särkkä, Cambridge University Press, 2013. Available at https://users.aalto.fi/~ssarkka/pub/cup_book_online_20131111.pdf



Example usage
---------------
Quickstart
----------

Dynamax includes classes for many kinds of SSM.
You can use these models to simulate data, and you can fit the models using standard
Expand Down Expand Up @@ -178,8 +175,11 @@ You can also call the low-level inference code (e.g. :meth:`hmm_smoother`) direc
without first having to construct the HMM object.


Notebooks
==================
Tutorials
=========

The tutorials below will introduce you to state space models in Dynamax.
If you're new to these models, we recommend you start at the top and work your way through!

.. toctree::
:maxdepth: 1
Expand Down
123 changes: 74 additions & 49 deletions docs/notebooks/hmm/autoregressive_hmm.ipynb

Large diffs are not rendered by default.

0 comments on commit f9f8b35

Please sign in to comment.