美文网首页
Uninformed Search

Uninformed Search

作者: Ysgc | 来源:发表于2020-01-08 12:20 被阅读0次

perception (+ memory)
no consideration of the consequences

quick response
not rational (optimal)

the space is too large!

we want to search as small as possible, yet find the destination

fringe: frontier nodes to be explored

a small search tree actual search tree

actual search tree is too large!

(note: the graph has no circle)

next: the direction of search

randomly pick one, if no heuristic

DFS: better memory properties (much less memory usage)
BFS: good at finding an optimal solution

The last layer of BFS is too large!

C^* ~> optimal cost
\epsilon ~> minimal cost for each step

相关文章

  • Uninformed Search

    perception (+ memory)no consideration of the consequences...

  • Uninformed search Python实现【译】

    译自 Uninformed search algorithms in Python版权所有,如需转载,请联系译者 ...

  • AI Search之Uninformed search: Uni

    相对于BFS,Uniform-Cost search相对的有策略性一点。BFS采取FIFO的形式进行搜索,这种形式...

  • unit3

    1.lining内衬2.uninformed无知的3.too也,太4.industrialize使....工业化5...

  • Informed Versus Uninformed Opini

    鲸能相互交流吗?假如可以,它们传递的信息会有多远呢?我们的汽车修理员对这个问题会有一个观点吗?可能有。我们的杂货商...

  • Informed Versus Uninformed Opini

    如果专家们也能像我们,其余的是错的,为什么他们的观点比那些非专家是更高的价值?根据我们考虑过的例子,我们可能会得出...

  • Informed Versus Uninformed Opini

    一个巨大的类星体也许就在我们宇宙的周围,离我们有100亿光年。(用英里来计算这个距离,用一天86400秒乘以光速每...

  • Informed Versus Uninformed Opini

    如果专家像我们其他人一样可能出错,为什么他们的观点比非专家的观点有更高的价值呢?在我们考虑过的例子中,也许可以推断...

  • Informed Versus Uninformed Opini

    正如这个例子展示的,在最负责任的观点表达中,观点声明只占了一两句,支持的细节要占很多段落,页面甚至是整个一章。当你...

  • Informed Versus  Uninformed Opin

    一个观点要有见识,就必须基于在更加坚定的一些事上,要比我们对它的熟悉度,该持有的时间长度或者我们思考自己希望的东西...

网友评论

      本文标题:Uninformed Search

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