[外文翻譯]建立簡單的智能體—agent1的例子.rar
[外文翻譯]建立簡單的智能體—agent1的例子,[外文翻譯]建立簡單的智能體—agent1的例子/chapter6building simple agents -example agent 1內(nèi)包含中文翻譯和英文原文,內(nèi)容完善,建議下載閱覽。①中文頁數(shù) 27中文字?jǐn)?shù) 12861②英文頁數(shù) 34英文字?jǐn)?shù) 8391③摘要 對于這個智能體,我們需要創(chuàng)建一條能夠在智能體執(zhí)行...
該文檔為壓縮文件,包含的文件列表如下:
![](http://img.queshao.com/images/pcgzh.gif)
![](http://preview.queshao.com/tobuy/34761.gif)
內(nèi)容介紹
原文檔由會員 鄭軍 發(fā)布
[外文翻譯]建立簡單的智能體—Agent1的例子/Chapter6 Building Simple Agents -Example Agent 1
內(nèi)包含中文翻譯和英文原文,內(nèi)容完善,建議下載閱覽。
①中文頁數(shù) 27
中文字?jǐn)?shù) 12861
②英文頁數(shù) 34
英文字?jǐn)?shù) 8391
③摘要
對于這個智能體,我們需要創(chuàng)建一條能夠在智能體執(zhí)行時,對控制臺輸出“Hello World”的規(guī)則。為了完成以上功能,需要創(chuàng)建一個與機(jī)構(gòu)的啟動時間相匹配的Left-Hand Side(左部:LHS)模式。
除非規(guī)則中至少有一個能與智能體的心智模型中新的原則相匹配的LHS模式,否則規(guī)則是不能執(zhí)行的。為了簡單的規(guī)則能在機(jī)器第一個周期中就能被執(zhí)行,我們希望所寫一個能夠滿足機(jī)器初始時心智模型中的原則的LHS模式。實(shí)時系統(tǒng)自動創(chuàng)建一個叫做startupTime的時間實(shí)例,并把它裝入心智模型中。BIND startupTime模式會在心智模型中搜尋這個叫startupTime的時間實(shí)例。如果找到了這個的實(shí)例,模式將得到滿足并且規(guī)則也會被執(zhí)行。
使用規(guī)則編輯器,在規(guī)則編輯器條件欄中的Operators下拉菜單里選擇BIND,然后下拉菜單下方的文本區(qū)域中會包含這個字符串(BIND<>)--你構(gòu)建的模式都將積聚在這個文本區(qū)域里。85頁的“用積聚范例建立復(fù)雜模式”一章對這個積聚器有更詳細(xì)的解釋。
For this agent, we need to create a rule that will print “Hello World” to the console when the agent starts executing. To do this, create a Left-Hand Side (LHS) pattern that matches with the starting time of the agent engine.
A rule cannot fire (i.e., execute it’s right-hand side) unless it has at least one LHS pattern that matches a new belief in the agent’s mental model. We want a simple rule that will fire during the first engine cycle, therefore we want to write a LHS pattern that we know will be satisfied by a belief in the mental model at engine start-up. The Run-Time System automatically creates a Time
instance named startupTime, and stores it into the mental model. A BIND startupTime pattern will look for a Time instance named startup in the mental model. The pattern will be satisfied if such an instance is found, and so the rule will be fired.
④關(guān)鍵字 智能體/World Agent
內(nèi)包含中文翻譯和英文原文,內(nèi)容完善,建議下載閱覽。
①中文頁數(shù) 27
中文字?jǐn)?shù) 12861
②英文頁數(shù) 34
英文字?jǐn)?shù) 8391
③摘要
對于這個智能體,我們需要創(chuàng)建一條能夠在智能體執(zhí)行時,對控制臺輸出“Hello World”的規(guī)則。為了完成以上功能,需要創(chuàng)建一個與機(jī)構(gòu)的啟動時間相匹配的Left-Hand Side(左部:LHS)模式。
除非規(guī)則中至少有一個能與智能體的心智模型中新的原則相匹配的LHS模式,否則規(guī)則是不能執(zhí)行的。為了簡單的規(guī)則能在機(jī)器第一個周期中就能被執(zhí)行,我們希望所寫一個能夠滿足機(jī)器初始時心智模型中的原則的LHS模式。實(shí)時系統(tǒng)自動創(chuàng)建一個叫做startupTime的時間實(shí)例,并把它裝入心智模型中。BIND startupTime模式會在心智模型中搜尋這個叫startupTime的時間實(shí)例。如果找到了這個的實(shí)例,模式將得到滿足并且規(guī)則也會被執(zhí)行。
使用規(guī)則編輯器,在規(guī)則編輯器條件欄中的Operators下拉菜單里選擇BIND,然后下拉菜單下方的文本區(qū)域中會包含這個字符串(BIND<>)--你構(gòu)建的模式都將積聚在這個文本區(qū)域里。85頁的“用積聚范例建立復(fù)雜模式”一章對這個積聚器有更詳細(xì)的解釋。
For this agent, we need to create a rule that will print “Hello World” to the console when the agent starts executing. To do this, create a Left-Hand Side (LHS) pattern that matches with the starting time of the agent engine.
A rule cannot fire (i.e., execute it’s right-hand side) unless it has at least one LHS pattern that matches a new belief in the agent’s mental model. We want a simple rule that will fire during the first engine cycle, therefore we want to write a LHS pattern that we know will be satisfied by a belief in the mental model at engine start-up. The Run-Time System automatically creates a Time
instance named startupTime, and stores it into the mental model. A BIND startupTime pattern will look for a Time instance named startup in the mental model. The pattern will be satisfied if such an instance is found, and so the rule will be fired.
④關(guān)鍵字 智能體/World Agent
TA們正在看...
- 裝備制造業(yè)erp實(shí)施及案例分析.doc
- 云存儲技術(shù)在檔案管理中的應(yīng)用分析.doc
- 中小企業(yè)信息化服務(wù)選擇研究.doc
- 基于saas模式的中小制造型企業(yè)信息化發(fā)展前景分析.doc
- 現(xiàn)代知識管理在圖書館管理中應(yīng)用的研究.doc
- 數(shù)字圖書館的滿意度評價.doc
- 小微企業(yè)信用評價體系建設(shè).doc
- 湖泊流域環(huán)境治理中的政企合謀及其演化研究.doc
- 3d打印技術(shù)的風(fēng)險分析與對策.doc
- 大學(xué)生綠色消費(fèi)模型構(gòu)建與應(yīng)用.doc