美文网首页
AI学习笔记(三)

AI学习笔记(三)

作者: 弹杯一笑 | 来源:发表于2017-06-18 03:12 被阅读0次

    Local Search

    Hill-climbing

    • Simple hill climbing
      Generate successors until one is found better than current node
    • Stochastic hill climbing
      Random selection among the uphill moves
    • First-choice hill climbing

    Simulated annealing

    Local beam search

    • Initially: k random states
    • Next: determine all successors of the k current states • If any successor is a goal → finished
    • Else, select k best from successors and repeat

    • Major difference from random-restart hill climbing
      • k best across all successors of k states rather than one best successor from each of k states
      • Allows more effort to be allocated to promising regions

    Genetic algorithms

    a variant of stochastic beam search in which successor states are generated by combining two parent states rather than by modifying a single state.

    123.png

    Like beam searches, GAs begin with a set of k randomly generated states, called the population.

    相关文章

      网友评论

          本文标题:AI学习笔记(三)

          本文链接:https://www.haomeiwen.com/subject/wuxgfxtx.html