codecamp

AI 人工智能中启发式搜索的概念

启发式是一种经验法则,它引导我们找到可能的解决方案。人工智能中的大多数问题都具有指数性质,并且有许多可能的解决方案。您无法确切知道哪些解决方案是正确的,而检查所有解决方案将非常耗时。

因此,启发式的使用缩小了搜索解决方案的范围,并排除了错误的选项。使用启发式来引导搜索空间中的搜索的方法称为启发式搜索。启发式技术非常有用,因为当您使用它们时,可以加快搜索速度。

AI人工智能 口语词的识别
AI人工智能 无信息搜索和有信息搜索的区别
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

AI人工智能监督学习(回归)

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }