Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates rl.py links in Index of Algorithms #1223

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -160,9 +160,9 @@ Here is a table of algorithms, the figure, name of the algorithm in the book and
| 19.3 | Version-Space-Learning | `version_space_learning` | [`knowledge.py`](knowledge.py) | Done | Included |
| 19.8 | Minimal-Consistent-Det | `minimal_consistent_det` | [`knowledge.py`](knowledge.py) | Done | Included |
| 19.12 | FOIL | `FOIL_container` | [`knowledge.py`](knowledge.py) | Done | Included |
| 21.2 | Passive-ADP-Agent | `PassiveADPAgent` | [`rl.py`][rl] | Done | Included |
| 21.4 | Passive-TD-Agent | `PassiveTDAgent` | [`rl.py`][rl] | Done | Included |
| 21.8 | Q-Learning-Agent | `QLearningAgent` | [`rl.py`][rl] | Done | Included |
| 21.2 | Passive-ADP-Agent | `PassiveADPAgent` | [`reinforcement_learning.py`][reinforcement_learning] | Done | Included |
| 21.4 | Passive-TD-Agent | `PassiveTDAgent` | [`reinforcement_learning.py`][reinforcement_learning] | Done | Included |
| 21.8 | Q-Learning-Agent | `QLearningAgent` | [`reinforcement_learning.py`][reinforcement_learning] | Done | Included |
| 22.1 | HITS | `HITS` | [`nlp.py`][nlp] | Done | Included |
| 23 | Chart-Parse | `Chart` | [`nlp.py`][nlp] | Done | Included |
| 23.5 | CYK-Parse | `CYK_parse` | [`nlp.py`][nlp] | Done | Included |
Expand Down Expand Up @@ -201,7 +201,7 @@ Many thanks for contributions over the years. I got bug reports, corrected code,
[nlp]:../master/nlp.py
[planning]:../master/planning.py
[probability]:../master/probability.py
[rl]:../master/rl.py
[reinforcement_learning]:../master/reinforcement_learning.py
[search]:../master/search.py
[utils]:../master/utils.py
[text]:../master/text.py