首页 > 其他 > 详细

DTU_AI 复习知识点: search problem

时间:2020-05-15 23:23:31      阅读:76      评论:0      收藏:0      [点我收藏+]

*digital exam (DE)*, *multiple choice*

Lecture content: 

  • slides02 - uninformed search;
  • slides03 - informed search; 
  • slides04 - Non-determinism and partial observability
  • slides05 -

What is a search problem?

Informally: Given an initial state, a goal state (or set of goal states) and a set of available actions. Find a sequence of actions that take you from the initial state to the goal state.

技术分享图片

Tree search VS graph search:

Tree search can visit a state multiple times. And as such it will explore the "sub tree" found after this state several times, which can be expensive. Graph search fixes this by keeping track of all visited states in a closed list. If a newly found successor to next is already known, it won‘t be inserted into the open list

技术分享图片

技术分享图片

The search has two types of nodes:

Expanded nodes: Nodes for which all children have been generated.

Frontier: Nodes that have been generated, but for which we haven’t yet computed the children.

技术分享图片

技术分享图片


Informed search

Best-first search strategies with Graph-Search

Best-first search:

• Frontier is a priority queue where the key of a node n is denoted f (n).

• choose a node n from frontier : extract minimal node from priority queue, that is, a node n with minimal f (n).

• add child m to frontier: insert node into priority queue.

技术分享图片

A* search:

The most widely known form of best-first search is called A∗ search (pronounced “A-star search”). It evaluates nodes by combining g(n), the cost to reach the node, and h(n), the cost to get from the node to the goal:

f(n)=g(n)+h(n).

A∗search is both complete and optimal.

Conditions for optimality: Admissibility and consistency

技术分享图片

技术分享图片


Non-determinism and partial observability

 

DTU_AI 复习知识点: search problem

原文:https://www.cnblogs.com/dulun/p/12897691.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!