2012-03-21

Re: #6 Practice Midterm .

Should briefly say what hill climbing is<br><br>Chris

Should briefly say what hill climbing is<br><br>Chris

#6 Practice Midterm

&#039;&#039;&#039;Originally Posted By: sushma&#039;&#039;&#039;

Q6) Describe each of the following local search algorithms: (a) random-hill climbing with restarts, (b) local beam search.&lt;br&gt;&lt;br&gt;(a) Random Hill Climbing With Restart&lt;br&gt;Hill Climbing algorithm follows the strategy of looking at ones neighbors and always picking the neighbor which moves one in the most upward direction.&lt;br&gt;&lt;br&gt;Random Hill Climbing With Restart&lt;br&gt;It starts a hill climbing algorithm on a randomly selected initial state. If it finds the solution, the algorithm stops. Otherwise, it restarts the hill climbing algorithm on the next randomly selected initial state.&lt;br&gt;&lt;br&gt;(b) Local Beam Start&lt;br&gt;It keeps track of K states rather than just one state. It begins with K randomly generated states. At each step, the successor of all K states are generated. If any one is a goal, the algorithm stops. Otherwise, it selects K best successors and repeats. &lt;br&gt;&lt;br&gt;&lt;br&gt;Group Member: Steve Stilson and Sushma Bandekar

'''Originally Posted By: sushma''' Q6) Describe each of the following local search algorithms: (a) random-hill climbing with restarts, (b) local beam search.<br><br>(a) Random Hill Climbing With Restart<br>Hill Climbing algorithm follows the strategy of looking at ones neighbors and always picking the neighbor which moves one in the most upward direction.<br><br>Random Hill Climbing With Restart<br>It starts a hill climbing algorithm on a randomly selected initial state. If it finds the solution, the algorithm stops. Otherwise, it restarts the hill climbing algorithm on the next randomly selected initial state.<br><br>(b) Local Beam Start<br>It keeps track of K states rather than just one state. It begins with K randomly generated states. At each step, the successor of all K states are generated. If any one is a goal, the algorithm stops. Otherwise, it selects K best successors and repeats. <br><br><br>Group Member: Steve Stilson and Sushma Bandekar
X