美文网首页
《人工智能(一)》

《人工智能(一)》

作者: en_young | 来源:发表于2019-03-27 11:31 被阅读0次

    1.a search question includes:a state space. a transition model.  a start state, goal test, path cost function.

    2.Search action:

    Expand out possible plans

    Maintain a frontier of unexpanded plans

    Try to expand as few tree nodes as possible

    a solution is the sequence of actions(plans),which transforms start state to goal state.

    3.策略:深度优先、广度优先。

        3.1广度优先:1.data structure:queue(FIFO);

                                  2.strategy:expend shallowest node first;

        3.2深度优先:1.data structure:stack(LIFO);

                                   2. Strategy: expand deepest node first

    相关文章

      网友评论

          本文标题:《人工智能(一)》

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