@@ -46,11 +46,11 @@ Here is a table of algorithms, the figure, name of the algorithm in the book and
46
46
| 3.14 | Uniform-Cost-Search | ` uniform_cost_search ` | [ ` search.py ` ] [ search ] | Done |
47
47
| 3.17 | Depth-Limited-Search | ` depth_limited_search ` | [ ` search.py ` ] [ search ] | Done |
48
48
| 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 |
50
50
| 3.24 | A\* -Search | ` astar_search ` | [ ` search.py ` ] [ search ] | Done |
51
51
| 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 |
54
54
| 4.8 | Genetic-Algorithm | ` genetic_algorithm ` | [ ` search.py ` ] [ search ] | Done |
55
55
| 4.11 | And-Or-Graph-Search | ` and_or_graph_search ` | [ ` search.py ` ] [ search ] | Done |
56
56
| 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
60
60
| 6 | CSP | ` CSP ` | [ ` csp.py ` ] [ csp ] | Done |
61
61
| 6.3 | AC-3 | ` AC3 ` | [ ` csp.py ` ] [ csp ] | Done |
62
62
| 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 |
64
64
| 6.11 | Tree-CSP-Solver | ` tree_csp_solver ` | [ ` csp.py ` ] [ csp ] | Done |
65
65
| 7 | KB | ` KB ` | [ ` logic.py ` ] [ logic ] | Done |
66
66
| 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
71
71
| 7.15 | PL-FC-Entails? | ` pl_fc_resolution ` | [ ` logic.py ` ] [ logic ] | Done |
72
72
| 7.17 | DPLL-Satisfiable? | ` dpll_satisfiable ` | [ ` logic.py ` ] [ logic ] | Done |
73
73
| 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 ` | | |
75
75
| 7.22 | SATPlan | ` SAT_plan ` | [ ` logic.py ` ] [ logic ] | Done |
76
76
| 9 | Subst | ` subst ` | [ ` logic.py ` ] [ logic ] | Done |
77
77
| 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
102
102
| 16.9 | Information-Gathering-Agent | | |
103
103
| 17.4 | Value-Iteration | ` value_iteration ` | [ ` mdp.py ` ] [ mdp ] | Done |
104
104
| 17.7 | Policy-Iteration | ` policy_iteration ` | [ ` mdp.py ` ] [ mdp ] | Done |
105
- | 17.7 | POMDP-Value-Iteration | | | |
105
+ | 17.9 | POMDP-Value-Iteration | | | |
106
106
| 18.5 | Decision-Tree-Learning | ` DecisionTreeLearner ` | [ ` learning.py ` ] [ learning ] | Done |
107
107
| 18.8 | Cross-Validation | ` cross_validation ` | [ ` learning.py ` ] [ learning ] | |
108
108
| 18.11 | Decision-List-Learning | ` DecisionListLearner ` | [ ` learning.py ` ] [ learning ] \* | |
109
109
| 18.24 | Back-Prop-Learning | ` BackPropagationLearner ` | [ ` learning.py ` ] [ learning ] | Done |
110
110
| 18.34 | AdaBoost | ` AdaBoost ` | [ ` learning.py ` ] [ learning ] | |
111
111
| 19.2 | Current-Best-Learning | ` current_best_learning ` | [ ` knowledge.py ` ] ( knowledge.py ) | Done |
112
112
| 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 |
114
114
| 19.12 | FOIL | | |
115
115
| 21.2 | Passive-ADP-Agent | ` PassiveADPAgent ` | [ ` rl.py ` ] [ rl ] | Done |
116
116
| 21.4 | Passive-TD-Agent | ` PassiveTDAgent ` | [ ` rl.py ` ] [ rl ] | Done |
117
117
| 21.8 | Q-Learning-Agent | ` QLearningAgent ` | [ ` rl.py ` ] [ rl ] | Done |
118
118
| 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 |
120
120
| 23.5 | CYK-Parse | ` CYK_parse ` | [ ` nlp.py ` ] [ nlp ] | Done |
121
121
| 25.9 | Monte-Carlo-Localization| ` monte_carlo_localization ` | [ ` probability.py ` ] [ probability ] | Done |
122
122
0 commit comments