Skip to content

Commit 8b25f54

Browse files
ad71norvig
authored andcommitted
Information Gathering Agent and probability notebook update (aimacode#931)
* Formatting fixes * Added runtime comparisons of algorithms * Added tests * Updated README.md * Added HMM explanation and contents tab * Added section on fixed lag smoothing * Added notebook sections on particle filtering and monte carlo localization * Updated README.md * Minor formatting fix * Added decision networks and information gathering agent * Added notebook sections for decision networks and information gathering agent * Updated README.md
1 parent 4f1eb25 commit 8b25f54

File tree

4 files changed

+5705
-955
lines changed

4 files changed

+5705
-955
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,14 @@ Here is a table of algorithms, the figure, name of the algorithm in the book and
121121
| 13.1 | DT-Agent | `DTAgent` | [`probability.py`][probability] | | |
122122
| 14.9 | Enumeration-Ask | `enumeration_ask` | [`probability.py`][probability] | Done | Included |
123123
| 14.11 | Elimination-Ask | `elimination_ask` | [`probability.py`][probability] | Done | Included |
124-
| 14.13 | Prior-Sample | `prior_sample` | [`probability.py`][probability] | | Included |
124+
| 14.13 | Prior-Sample | `prior_sample` | [`probability.py`][probability] | Done | Included |
125125
| 14.14 | Rejection-Sampling | `rejection_sampling` | [`probability.py`][probability] | Done | Included |
126126
| 14.15 | Likelihood-Weighting | `likelihood_weighting` | [`probability.py`][probability] | Done | Included |
127127
| 14.16 | Gibbs-Ask | `gibbs_ask` | [`probability.py`][probability] | Done | Included |
128-
| 15.4 | Forward-Backward | `forward_backward` | [`probability.py`][probability] | Done | |
129-
| 15.6 | Fixed-Lag-Smoothing | `fixed_lag_smoothing` | [`probability.py`][probability] | Done | |
130-
| 15.17 | Particle-Filtering | `particle_filtering` | [`probability.py`][probability] | Done | |
131-
| 16.9 | Information-Gathering-Agent | | | | |
128+
| 15.4 | Forward-Backward | `forward_backward` | [`probability.py`][probability] | Done | Included |
129+
| 15.6 | Fixed-Lag-Smoothing | `fixed_lag_smoothing` | [`probability.py`][probability] | Done | Included |
130+
| 15.17 | Particle-Filtering | `particle_filtering` | [`probability.py`][probability] | Done | Included |
131+
| 16.9 | Information-Gathering-Agent | `InformationGatheringAgent` | [`probability.py`][probability] | Done | Included |
132132
| 17.4 | Value-Iteration | `value_iteration` | [`mdp.py`][mdp] | Done | Included |
133133
| 17.7 | Policy-Iteration | `policy_iteration` | [`mdp.py`][mdp] | Done | Included |
134134
| 17.9 | POMDP-Value-Iteration | `pomdp_value_iteration` | [`mdp.py`][mdp] | Done | Included |
@@ -147,7 +147,7 @@ Here is a table of algorithms, the figure, name of the algorithm in the book and
147147
| 22.1 | HITS | `HITS` | [`nlp.py`][nlp] | Done | Included |
148148
| 23 | Chart-Parse | `Chart` | [`nlp.py`][nlp] | Done | Included |
149149
| 23.5 | CYK-Parse | `CYK_parse` | [`nlp.py`][nlp] | Done | Included |
150-
| 25.9 | Monte-Carlo-Localization | `monte_carlo_localization` | [`probability.py`][probability] | Done | |
150+
| 25.9 | Monte-Carlo-Localization | `monte_carlo_localization` | [`probability.py`][probability] | Done | Included |
151151

152152

153153
# Index of data structures

0 commit comments

Comments
 (0)