Skip to content

Commit 5a4b8bd

Browse files
Jonathon Belottinorvig
authored andcommitted
Updating README's Index of Code to reflect actual implementation status of algorithms (aimacode#237)
1 parent 644ffbc commit 5a4b8bd

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ![](https://github.com/aimacode/aima-java/blob/gh-pages/aima3e/images/aima3e.jpg)aima-python <a href="https://travis-ci.org/aimacode/aima-python" target="_blank"><img src="https://api.travis-ci.org/aimacode/aima-python.svg?branch=master" alt="Build Status"></a><a href="http://mybinder.org/repo/aimacode/aima-python" target="_blank"><img src="http://mybinder.org/badge.svg" alt="Binder"></a>
22

33

4-
Python code for the book *Artificial Intelligence: A Modern Approach.* You can use this in conjunction with a course on AI, or for study on your own. We're loooking for [solid contributors](https://github.com/aimacode/aima-python/blob/master/CONTRIBUTING.md) to help.
4+
Python code for the book *Artificial Intelligence: A Modern Approach.* You can use this in conjunction with a course on AI, or for study on your own. We're looking for [solid contributors](https://github.com/aimacode/aima-python/blob/master/CONTRIBUTING.md) to help.
55

66
## Python 3.4
77

@@ -48,7 +48,7 @@ Here is a table of algorithms, the figure, name of the code in the book and in t
4848
| 4.8 | Genetic-Algorithm | `genetic_algorithm` | [`search.py`](../master/search.py) |
4949
| 4.11 | And-Or-Graph-Search | `and_or_graph_search` | [`search.py`](../master/search.py) |
5050
| 4.21 | Online-DFS-Agent | `online_dfs_agent` | [`search.py`](../master/search.py) |
51-
| 4.24 | LRTA\*-Agent | | |
51+
| 4.24 | LRTA\*-Agent | `LRTAStarAgent` | [`search.py`](../master/search.py) |
5252
| 5.3 | Minimax-Decision | `minimax_decision` | [`games.py`](../master/games.py) |
5353
| 5.7 | Alpha-Beta-Search | `alphabeta_search` | [`games.py`](../master/games.py) |
5454
| 6 | CSP | `CSP` | [`csp.py`](../master/csp.py) |
@@ -66,7 +66,7 @@ Here is a table of algorithms, the figure, name of the code in the book and in t
6666
| 7.17 | DPLL-Satisfiable? | `dpll_satisfiable` | [`logic.py`](../master/logic.py) |
6767
| 7.18 | WalkSAT | `WalkSAT` | [`logic.py`](../master/logic.py) |
6868
| 7.20 | Hybrid-Wumpus-Agent | | |
69-
| 7.22 | SATPlan | |
69+
| 7.22 | SATPlan | `SAT_plan` | [`logic.py`](../master/logic.py) |
7070
| 9 | Subst | `subst` | [`logic.py`](../master/logic.py) |
7171
| 9.1 | Unify | `unify` | [`logic.py`](../master/logic.py) |
7272
| 9.3 | FOL-FC-Ask | `fol_fc_ask` | [`logic.py`](../master/logic.py) |
@@ -89,7 +89,7 @@ Here is a table of algorithms, the figure, name of the code in the book and in t
8989
| 14.13 | Prior-Sample | `prior_sample` | [`probability.py`](../master/probability.py) |
9090
| 14.14 | Rejection-Sampling | `rejection_sampling` | [`probability.py`](../master/probability.py) |
9191
| 14.15 | Likelihood-Weighting | `likelihood_weighting` | [`probability.py`](../master/probability.py) |
92-
| 14.16 | Gibbs-Ask | |
92+
| 14.16 | Gibbs-Ask | `gibbs_ask` | [`probability.py`](../master/probability.py) |
9393
| 15.4 | Forward-Backward | `forward_backward` | [`probability.py`](../master/probability.py) |
9494
| 15.6 | Fixed-Lag-Smoothing | `fixed_lag_smoothing` | [`probability.py`](../master/probability.py) |
9595
| 15.17 | Particle-Filtering | `particle_filtering` | [`probability.py`](../master/probability.py) |
@@ -99,19 +99,19 @@ Here is a table of algorithms, the figure, name of the code in the book and in t
9999
| 17.7 | POMDP-Value-Iteration | | |
100100
| 18.5 | Decision-Tree-Learning | `DecisionTreeLearner` | [`learning.py`](../master/learning.py) |
101101
| 18.8 | Cross-Validation | `cross_validation` | [`learning.py`](../master/learning.py) |
102-
| 18.11 | Decision-List-Learning | |
103-
| 18.24 | Back-Prop-Learning | |
102+
| 18.11 | Decision-List-Learning | `DecisionListLearner` | [`learning.py`](../master/learning.py) |
103+
| 18.24 | Back-Prop-Learning | `BackPropagationLearner` | [`learning.py`](../master/learning.py) |
104104
| 18.34 | AdaBoost | `AdaBoost` | [`learning.py`](../master/learning.py) |
105105
| 19.2 | Current-Best-Learning | |
106106
| 19.3 | Version-Space-Learning | |
107107
| 19.8 | Minimal-Consistent-Det | |
108108
| 19.12 | FOIL | |
109-
| 21.2 | Passive-ADP-Agent | `PassiveADPAgent` | [`rl.py`](../master/rl.py) |
109+
| 21.2 | Passive-ADP-Agent | | |
110110
| 21.4 | Passive-TD-Agent | `PassiveTDAgent` | [`rl.py`](../master/rl.py) |
111111
| 21.8 | Q-Learning-Agent | `QLearningAgent` | [`rl.py`](../master/rl.py) |
112112
| 22.1 | HITS | | |
113113
| 23 | Chart-Parse | `Chart` | [`nlp.py`](../master/nlp.py) |
114-
| 23.5 | CYK-Parse | | |
114+
| 23.5 | CYK-Parse | `CYK_parse` | [`nlp.py`](../master/nlp.py) |
115115
| 25.9 | Monte-Carlo-Localization| |
116116

117117

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy