- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Search Introduction toArtificial Intelligence COS302 Michael L. Littman Fall 2001 Administration Short written homeworks each week First one today Web page is up with first lecture Send me (mlittman@cs) your email address so I can make a mailing list Office hours… What’s AI? (to me) Computers making decisions in real-world problems Search Problems Let S be the set of states (strings) Input: Initial state: s0 Neighbor generator, N: S ? 2S Goal function, G: S ? {0,1} Search Answer s1,…,sn such that: s1,…,sn ? S for all 1?i?n, si ? N(si-1) G(sn) = 1 Examples We’re very impressed. Meaning? Rush Hour 8-puzzle Logistics 8-queens problem Logic puzzles Job-shop scheduling Rush Hour Move cars forward and backward to “escape” Search Version States: configurations of cars N(s): reachable states G(s): 1 if red car at gate 8-puzzle Slide tiles into order States: N(s): G(s): Logistics Very sophisticated. What goes where when? Desert Storm logistics “paid for AI research” 8 Queens Puzzle No captures States: N(s): G(s): Logic Puzzles Jody, who is an ape, wasn’t the ape who returned immediately after Tom and immediately before the animal who appeared in the movie with no rating. The only lions that were used in the movies were the one who was the third to return, the one who appeared in the R movie, and the one who appeared in “Luck”. … Job-Shop Scheduling Industrial problem: Allocate machines and machinists to time slots Constraints on orders in which parts are serviced Search Template fringe = {(s0, 0)}; /* initial cost */ markvisited(s0); While (1) { If empty(fringe), return failure; (s, c) = removemincost(fringe); If G(s) return s; Foreach s’ in N(s) if unvisited(s’) fringe = fringe U {(s’, cost(s’)}; markvisited(s0); } Data Structures How implement this efficiently? removemincost-U-empty? markvisited-unvisited? Vary Cost How does search behavior change with cost? cost(s’) = c + 1 cost(s’) = c - 1 Grid Example: BFS Grid Example: DFS How Eva
您可能关注的文档
- 2014和青奥会志愿者考试试题(答案蓝色).doc
- 2015和-2016学年高中生物课件:1.4基因工程的发展前景(浙科版选修三).ppt
- 2015和-2016学年高中生物课件:4.1来自生物技术的忧虑(浙科版选修三).ppt
- 2015和党风廉政建设知识试题-答案.doc
- 2015和届《世纪金榜》高考一轮生物复习3.探究.ppt
- 2015和届《世纪金榜》高考一轮生物复习5.2&5.3.ppt
- 2015和届《世纪金榜》高考一轮生物复习课时提升作业(四十三) 选修3 3.doc
- 2015和届《世纪金榜》高考一轮生物复习选修1-3.ppt
- 2015和年高中数学新课标一轮复习下册7-4.ppt
- 2015和年高中数学新课标一轮复习下册8-10.ppt
文档评论(0)