Skip to content

Commit d6d4991

Browse files
committed
feat: merge PR aimacode#1302
1 parent 85e924c commit d6d4991

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vacuum_world.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@
563563
"A model-based reflex agent maintains some sort of **internal state** that depends on the percept history and thereby reflects at least some of the unobserved aspects of the current state. In addition to this, it also requires a **model** of the world, that is, knowledge about \"how the world works\".\n",
564564
"\n",
565565
"The schematic diagram shown in **Figure 2.11** of the book will make this more clear:\n",
566-
"<img src=\"files/images/model_based_reflex_agent.jpg\">"
566+
"<img src=\"images/model_based_reflex_agent.jpg\">"
567567
]
568568
},
569569
{
@@ -650,7 +650,7 @@
650650
"A goal-based agent needs some sort of **goal** information that describes situations that are desirable, apart from the current state description.\n",
651651
"\n",
652652
"**Figure 2.13** of the book shows a model-based, goal-based agent:\n",
653-
"<img src=\"files/images/model_goal_based_agent.jpg\">\n",
653+
"<img src=\"images/model_goal_based_agent.jpg\">\n",
654654
"\n",
655655
"**Search** (Chapters 3 to 5) and **Planning** (Chapters 10 to 11) are the subfields of AI devoted to finding action sequences that achieve the agent's goals.\n",
656656
"\n",
@@ -659,7 +659,7 @@
659659
"A utility-based agent maximizes its **utility** using the agent's **utility function**, which is essentially an internalization of the agent's performance measure.\n",
660660
"\n",
661661
"**Figure 2.14** of the book shows a model-based, utility-based agent:\n",
662-
"<img src=\"files/images/model_utility_based_agent.jpg\">"
662+
"<img src=\"images/model_utility_based_agent.jpg\">"
663663
]
664664
},
665665
{
@@ -673,7 +673,7 @@
673673
"A learning agent can be divided into four conceptual components. The **learning element** is responsible for making improvements. It uses the feedback from the **critic** on how the agent is doing and determines how the performance element should be modified to do better in the future. The **performance element** is responsible for selecting external actions for the agent: it takes in percepts and decides on actions. The critic tells the learning element how well the agent is doing with respect to a fixed performance standard. It is necesaary because the percepts themselves provide no indication of the agent's success. The last component of the learning agent is the **problem generator**. It is responsible for suggesting actions that will lead to new and informative experiences. \n",
674674
"\n",
675675
"**Figure 2.15** of the book sums up the components and their working: \n",
676-
"<img src=\"files/images/general_learning_agent.jpg\">"
676+
"<img src=\"images/general_learning_agent.jpg\">"
677677
]
678678
}
679679
],

0 commit comments

Comments
 (0)