@@ -46,11 +46,11 @@ Here is a table of algorithms, the figure, name of the algorithm in the book and
4646| 3.14 | Uniform-Cost-Search | ` uniform_cost_search ` | [ ` search.py ` ] [ search ] | Done |
4747| 3.17 | Depth-Limited-Search | ` depth_limited_search ` | [ ` search.py ` ] [ search ] | Done |
4848| 3.18 | Iterative-Deepening-Search | ` iterative_deepening_search ` | [ ` search.py ` ] [ search ] | Done |
49- | 3.22 | Best-First-Search | ` best_first_graph_search ` | [ ` search.py ` ] [ search ] | |
49+ | 3.22 | Best-First-Search | ` best_first_graph_search ` | [ ` search.py ` ] [ search ] | Done |
5050| 3.24 | A\* -Search | ` astar_search ` | [ ` search.py ` ] [ search ] | Done |
5151| 3.26 | Recursive-Best-First-Search | ` recursive_best_first_search ` | [ ` search.py ` ] [ search ] | Done |
52- | 4.2 | Hill-Climbing | ` hill_climbing ` | [ ` search.py ` ] [ search ] | |
53- | 4.5 | Simulated-Annealing | ` simulated_annealing ` | [ ` search.py ` ] [ search ] | |
52+ | 4.2 | Hill-Climbing | ` hill_climbing ` | [ ` search.py ` ] [ search ] | Done |
53+ | 4.5 | Simulated-Annealing | ` simulated_annealing ` | [ ` search.py ` ] [ search ] | Done |
5454| 4.8 | Genetic-Algorithm | ` genetic_algorithm ` | [ ` search.py ` ] [ search ] | Done |
5555| 4.11 | And-Or-Graph-Search | ` and_or_graph_search ` | [ ` search.py ` ] [ search ] | Done |
5656| 4.21 | Online-DFS-Agent | ` online_dfs_agent ` | [ ` search.py ` ] [ search ] | |
@@ -60,7 +60,7 @@ Here is a table of algorithms, the figure, name of the algorithm in the book and
6060| 6 | CSP | ` CSP ` | [ ` csp.py ` ] [ csp ] | Done |
6161| 6.3 | AC-3 | ` AC3 ` | [ ` csp.py ` ] [ csp ] | Done |
6262| 6.5 | Backtracking-Search | ` backtracking_search ` | [ ` csp.py ` ] [ csp ] | Done |
63- | 6.8 | Min-Conflicts | ` min_conflicts ` | [ ` csp.py ` ] [ csp ] | |
63+ | 6.8 | Min-Conflicts | ` min_conflicts ` | [ ` csp.py ` ] [ csp ] | Done |
6464| 6.11 | Tree-CSP-Solver | ` tree_csp_solver ` | [ ` csp.py ` ] [ csp ] | Done |
6565| 7 | KB | ` KB ` | [ ` logic.py ` ] [ logic ] | Done |
6666| 7.1 | KB-Agent | ` KB_Agent ` | [ ` logic.py ` ] [ logic ] | Done |
@@ -71,7 +71,7 @@ Here is a table of algorithms, the figure, name of the algorithm in the book and
7171| 7.15 | PL-FC-Entails? | ` pl_fc_resolution ` | [ ` logic.py ` ] [ logic ] | Done |
7272| 7.17 | DPLL-Satisfiable? | ` dpll_satisfiable ` | [ ` logic.py ` ] [ logic ] | Done |
7373| 7.18 | WalkSAT | ` WalkSAT ` | [ ` logic.py ` ] [ logic ] | Done |
74- | 7.20 | Hybrid-Wumpus-Agent | ` HybridWumpusAgent ` | [ ` logic.py ` ] [ logic ] \* | |
74+ | 7.20 | Hybrid-Wumpus-Agent | ` HybridWumpusAgent ` | | |
7575| 7.22 | SATPlan | ` SAT_plan ` | [ ` logic.py ` ] [ logic ] | Done |
7676| 9 | Subst | ` subst ` | [ ` logic.py ` ] [ logic ] | Done |
7777| 9.1 | Unify | ` unify ` | [ ` logic.py ` ] [ logic ] | Done |
@@ -102,21 +102,21 @@ Here is a table of algorithms, the figure, name of the algorithm in the book and
102102| 16.9 | Information-Gathering-Agent | | |
103103| 17.4 | Value-Iteration | ` value_iteration ` | [ ` mdp.py ` ] [ mdp ] | Done |
104104| 17.7 | Policy-Iteration | ` policy_iteration ` | [ ` mdp.py ` ] [ mdp ] | Done |
105- | 17.7 | POMDP-Value-Iteration | | | |
105+ | 17.9 | POMDP-Value-Iteration | | | |
106106| 18.5 | Decision-Tree-Learning | ` DecisionTreeLearner ` | [ ` learning.py ` ] [ learning ] | Done |
107107| 18.8 | Cross-Validation | ` cross_validation ` | [ ` learning.py ` ] [ learning ] | |
108108| 18.11 | Decision-List-Learning | ` DecisionListLearner ` | [ ` learning.py ` ] [ learning ] \* | |
109109| 18.24 | Back-Prop-Learning | ` BackPropagationLearner ` | [ ` learning.py ` ] [ learning ] | Done |
110110| 18.34 | AdaBoost | ` AdaBoost ` | [ ` learning.py ` ] [ learning ] | |
111111| 19.2 | Current-Best-Learning | ` current_best_learning ` | [ ` knowledge.py ` ] ( knowledge.py ) | Done |
112112| 19.3 | Version-Space-Learning | ` version_space_learning ` | [ ` knowledge.py ` ] ( knowledge.py ) | Done |
113- | 19.8 | Minimal-Consistent-Det | | |
113+ | 19.8 | Minimal-Consistent-Det | ` minimal_consistent_det ` | [ ` knowledge.py ` ] ( knowledge.py ) | Done |
114114| 19.12 | FOIL | | |
115115| 21.2 | Passive-ADP-Agent | ` PassiveADPAgent ` | [ ` rl.py ` ] [ rl ] | Done |
116116| 21.4 | Passive-TD-Agent | ` PassiveTDAgent ` | [ ` rl.py ` ] [ rl ] | Done |
117117| 21.8 | Q-Learning-Agent | ` QLearningAgent ` | [ ` rl.py ` ] [ rl ] | Done |
118118| 22.1 | HITS | ` HITS ` | [ ` nlp.py ` ] [ nlp ] | Done |
119- | 23 | Chart-Parse | ` Chart ` | [ ` nlp.py ` ] [ nlp ] | |
119+ | 23 | Chart-Parse | ` Chart ` | [ ` nlp.py ` ] [ nlp ] | Done |
120120| 23.5 | CYK-Parse | ` CYK_parse ` | [ ` nlp.py ` ] [ nlp ] | Done |
121121| 25.9 | Monte-Carlo-Localization| ` monte_carlo_localization ` | [ ` probability.py ` ] [ probability ] | Done |
122122
0 commit comments