SlideShare une entreprise Scribd logo
1  sur  34
CSE 412: Artificial IntelligenceCSE 412: Artificial Intelligence
Topic - 2: Intelligent AgentsTopic - 2: Intelligent Agents
Fall 2018Fall 2018
Tajim Md. Niamat Ullah Akhund
Lecturer
Department of Computer Science and Engineering
Daffodil International University
Email: tajim.cse@diu.edu.bd
Agents and EnvironmentsAgents and Environments
Good Behavior: The Concept of RationalityGood Behavior: The Concept of Rationality
The Nature of EnvironmentsThe Nature of Environments
The Structure of AgentsThe Structure of Agents
Topic ContentsTopic Contents
Intelligent AgentIntelligent Agent
An agent
 perceives its environment with sensors
and
 acts upon that environment with its
actuators.
An agent gets percepts one at a time,
and maps this percept sequence to
actions.
3
Majidur RahmanMajidur Rahman
An AgentAn Agent
4
Majidur RahmanMajidur Rahman
Example of an AgentExample of an Agent
Let us consider a vacuum-cleaner agent that is
shown in the figure bellow.
The vacuum-cleaner world has just two locations:
squares A and B.
5
Example of an AgentExample of an Agent
The vacuum agent perceives which square it is in
and whether there is dirt in the square.
It can choose to move left, move right, suck up the
dirt, or do nothing.
One very simple agent function is the following: if
the current square is dirty, then suck; otherwise,
move to the other square.
6
Example of an AgentExample of an Agent
Environment: squares A and B
Percepts: [location, status], e.g. [A, Dirty]
Actions: left, right, suck, and no-op
7
Majidur RahmanMajidur Rahman
function REFLEX-VACUUM-AGENT ([location, status]) return an action
if status == Dirty then return Suck
else if location == A then return Right
else if location == B then return Left
Example of an AgentExample of an Agent
Majidur RahmanMajidur Rahman
Rational AgentRational Agent
 For each possible percept sequence, a rational agent
should select an action (using an agent function) that is
expected to maximize its performance measure, given
the evidence provided by the percept sequence and
whatever built-in prior knowledge the agent has.
 A percept sequence is the complete history of anything
the agent has ever perceived.
 A performance measure is a means of calculating how
well the agent has performed based on the sequence of
percepts that it has received.
 An agent’s prior knowledge of the environment is the
knowledge that the agent designer has given to the
agent before its introduction to the environment.
9
Majidur RahmanMajidur Rahman
Rational AgentRational Agent
 An agent function maps percept sequences to actions.
f : seq(P) →A
 Agent function for vacuum Cleaner example:
10
Majidur RahmanMajidur Rahman
Performance
Measures
Environment
Actuators
Sensors
used by the agent to perform actions
surroundings beyond the control of the agent
used to evaluate how well an agent
solves the task at hand
provide information about the current state of
the environment
 To design a rational agent we must specify its task
environment:
Task EnvironmentsTask Environments
11
Majidur RahmanMajidur Rahman
ExampleExample
PEAS description of the environment for an
automated taxi:
 Performance
Safety, destination, profits, legality, comfort
 Environment
Streets/motorways, other traffic, pedestrians, weather
 Actuators
Steering, accelerator, brake, horn, speaker/display
 Sensors
Video, sonar, speedometer, engine sensors, keyboard,
GPS
12
Majidur RahmanMajidur Rahman
Example…Example…
13
Majidur RahmanMajidur Rahman
Environment TypesEnvironment Types
The environment for an agent may be
 Fully or partially observable
 Deterministic or stochastic
 Episodic or sequential
 Static or dynamic
 Discrete or continuous
 Single or multi-agent
14
Majidur RahmanMajidur Rahman
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
Observable??
Deterministic??
Episodic??
Static??
Discrete??
Single-agent??
Majidur RahmanMajidur Rahman 15
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
ObservableObservable??
Deterministic??
Episodic??
Static??
Discrete??
Single-agent??
Fully vs. partially observable: an environment is full observable when
the sensors can detect all aspects that are relevant to the choice of
action.
Majidur RahmanMajidur Rahman 16
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
ObservableObservable?? FULL FULL PARTIAL PARTIAL
Deterministic??
Episodic??
Static??
Discrete??
Single-agent??
Fully vs. partially observable: an environment is full observable when
the sensors can detect all aspects that are relevant to the choice of
action.
Majidur RahmanMajidur Rahman 17
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
ObservableObservable?? FULL FULL PARTIAL PARTIAL
DeterministicDeterministic??
Episodic??
Static??
Discrete??
Single-agent??
Deterministic vs. stochastic: if the next environment state is
completely determined by the current state the executed action then the
environment is deterministic.
Majidur RahmanMajidur Rahman 18
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
ObservableObservable?? FULL FULL PARTIAL PARTIAL
DeterministicDeterministic?? YES NO YES NO
Episodic??
Static??
Discrete??
Single-agent??
Deterministic vs. stochastic: if the next environment state is
completely
determined by the current state the executed action then the
environment is deterministic.
Majidur RahmanMajidur Rahman 19
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
ObservableObservable?? FULL FULL PARTIAL PARTIAL
DeterministicDeterministic?? YES NO YES NO
EpisodicEpisodic??
Static??
Discrete??
Single-agent??
Episodic vs. sequential: In an episodic environment the agent’s
experience can be divided into atomic steps where the agents perceives
and then performs a single action. The choice of action depends only on
the episode itself.
Majidur RahmanMajidur Rahman 20
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
ObservableObservable?? FULL FULL PARTIAL PARTIAL
Deterministic?? YES NO YES NO
EpisodicEpisodic?? NO NO NO NO
Static??
Discrete??
Single-agent??
Episodic vs. sequential: In an episodic environment the agent’s
experience can be divided into atomic steps where the agents perceives
and then performs a single action. The choice of action depends only on
the episode itself
Majidur RahmanMajidur Rahman 21
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
Observable?? FULL FULL PARTIAL PARTIAL
Deterministic?? YES NO YES NO
Episodic?? NO NO NO NO
Static??
Discrete??
Single-agent??
Static vs. dynamic: If the environment can change while the agent is
choosing an action, the environment is dynamic. Semi-dynamic if the
agent’s performance changes even when the environment remains the
same.
Majidur RahmanMajidur Rahman 22
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
ObservableObservable?? FULL FULL PARTIAL PARTIAL
DeterministicDeterministic?? YES NO YES NO
EpisodicEpisodic?? NO NO NO NO
StaticStatic?? YES YES SEMI NO
Discrete??
Single-agent??
Static vs. dynamic: If the environment can change while the agent is choosing
an action, the environment is dynamic. Semi-dynamic if the agent’s performance
changes even when the environment remains the same.
Majidur RahmanMajidur Rahman 23
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
Observable?? FULL FULL PARTIAL PARTIAL
Deterministic?? YES NO YES NO
Episodic?? NO NO NO NO
Static?? YES YES SEMI NO
Discrete??
Single-agent??
Discrete vs. continuous: This distinction can be applied to the state of the
environment, the way time is handled and to the percepts/actions of the agent.
Majidur RahmanMajidur Rahman 24
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
Observable?? FULL FULL PARTIAL PARTIAL
Deterministic?? YES NO YES NO
Episodic?? NO NO NO NO
Static?? YES YES SEMI NO
Discrete?? YES YES YES NO
Single-agent??
Discrete vs. continuous: This distinction can be applied to the state of the
environment, the way time is handled and to the percepts/actions of the agent.
Majidur RahmanMajidur Rahman 25
Environment TypesEnvironment Types
Solitaire Backgammom Internet shopping Taxi
ObservableObservable?? FULL FULL PARTIAL PARTIAL
DeterministicDeterministic???? YES NO YES NO
EpisodicEpisodic???? NO NO NO NO
StaticStatic???? YES YES SEMI NO
DiscreteDiscrete???? YES YES YES NO
Single-agentSingle-agent???? YES NO NO NO
Single vs. multi-agent: Does the environment contain other agents who are
also maximizing some performance measure that depends on the current
agent’s actions?
Majidur RahmanMajidur Rahman 26
Environment TypesEnvironment Types
The simplest environment is
 Fully observable, deterministic, episodic,
static, discrete and single-agent.
Most real situations are:
 Partially observable, stochastic, sequential,
dynamic, continuous and multi-agent.
Majidur RahmanMajidur Rahman 27
Agent TypesAgent Types
Four basic kinds of agent that embody the
principles underlying almost all intelligent systems:
 Simple reflex agents;
 Model-based reflex agents;
 Goal-based agents; and
 Utility-based agents.
28
Majidur RahmanMajidur Rahman
Agent Types: Simple ReflexAgent Types: Simple Reflex
 Select action on the basis of only
the current percept,
e.g. the vacuum-agent
 Large reduction in possible
percept/action situations
 Implemented through
condition-action rules
if dirty then suck
 Example:
– Agent: Mail sorting robot
– Environment: Conveyor belt of
letters
– Rule: e.g.
city = Edin → put Scotland bag
29
Majidur RahmanMajidur Rahman
Agent Types: Model-BasedAgent Types: Model-Based
 To tackle partially observable
environments
 Maintain internal state that
depends on percept history
 Over time update state using
world knowledge
 How does the world change
independently
 How do actions affect the world
 Example:
– Agent: Robot vacuum cleaner
– Environment: Dirty room, furniture
– Model: Map of room, which areas
already cleaned 30
Majidur RahmanMajidur Rahman
Agent Types: Goal-BasedAgent Types: Goal-Based
 The agent needs a goal to know
which situations are desirable
 Difficulties arise when long
sequences of actions are required
to find the goal
 Typically investigated in search
and planning research
 Major difference: future is taken
into account
 Example:
– Agent: Robot maid
– Environment: House and people
– Goal: Clean clothes, tidy room,
table laid, etc 31
Majidur RahmanMajidur Rahman
32
Agent Types: Utility-BasedAgent Types: Utility-Based
 Certain goals can be reached in
different ways
 Some are better: have a higher
utility
 Utility function maps a (sequence
of) state(s) onto a real number
 Improves on goals:
 Selecting between conflicting
goals
 Selecting between several goals
based on likelihood of success
and importance of goals
 Example:
– Agent: Mars Lander
– Environment: The surface of
mars with obstacles
– Utility: Shortest and obstacle-free
path Majidur RahmanMajidur Rahman
THANKS…
Majidur RahmanMajidur Rahman
********** ********** If You Need Me ********** **********
Mail: tajim.cse@diu.edu.bd
Website: https://www.tajimiitju.blogspot.com
ORCID: https://orcid.org/0000-0002-2834-1507
LinkedIn: https://www.linkedin.com/in/tajimiitju
ResearchGate: https://www.researchgate.net/profile/Tajim_Md_Niamat_Ullah_Akhund
YouTube: https://www.youtube.com/tajimiitju?sub_confirmation=1
SlideShare: https://www.slideshare.net/TajimMdNiamatUllahAk
Facebook: https://www.facebook.com/tajim.mohammad
GitHub: https://github.com/tajimiitju
Google+: https://plus.google.com/+tajimiitju
Gmail: tajim.mohammad.3@gmail.com
Twitter: https://twitter.com/Tajim53
Thank you
Tajim Md. Niamat Ullah AkhundTajim Md. Niamat Ullah Akhund

Contenu connexe

Tendances

Structure of agents
Structure of agentsStructure of agents
Structure of agentsMANJULA_AP
 
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCE
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCEIntelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCE
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCEKhushboo Pal
 
Goal based agent
Goal based agentGoal based agent
Goal based agentLamisaFaria
 
Goal based and utility based agents
Goal based and utility based agentsGoal based and utility based agents
Goal based and utility based agentsMegha Sharma
 
Lecture 04 intelligent agents
Lecture 04 intelligent agentsLecture 04 intelligent agents
Lecture 04 intelligent agentsHema Kashyap
 
Intelligent agent
Intelligent agent Intelligent agent
Intelligent agent Arvind sahu
 
2-Agents- Artificial Intelligence
2-Agents- Artificial Intelligence2-Agents- Artificial Intelligence
2-Agents- Artificial IntelligenceMhd Sb
 
1.1 What are Agent and Environment.pptx
1.1 What are Agent and Environment.pptx1.1 What are Agent and Environment.pptx
1.1 What are Agent and Environment.pptxSuvamvlogs
 
State Space Search in ai
State Space Search in aiState Space Search in ai
State Space Search in aivikas dhakane
 
Ai lecture 01(unit03)
Ai lecture  01(unit03)Ai lecture  01(unit03)
Ai lecture 01(unit03)vikas dhakane
 
Artificial Intelligence -- Search Algorithms
Artificial Intelligence-- Search Algorithms Artificial Intelligence-- Search Algorithms
Artificial Intelligence -- Search Algorithms Syed Ahmed
 
Propositional logic
Propositional logicPropositional logic
Propositional logicRushdi Shams
 
Problem solving agents
Problem solving agentsProblem solving agents
Problem solving agentsMegha Sharma
 

Tendances (20)

Problem Solving
Problem Solving Problem Solving
Problem Solving
 
AI Lecture 4 (informed search and exploration)
AI Lecture 4 (informed search and exploration)AI Lecture 4 (informed search and exploration)
AI Lecture 4 (informed search and exploration)
 
Structure of agents
Structure of agentsStructure of agents
Structure of agents
 
AI
AIAI
AI
 
Agents1
Agents1Agents1
Agents1
 
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCE
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCEIntelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCE
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCE
 
Agent-based System - Introduction
Agent-based System - IntroductionAgent-based System - Introduction
Agent-based System - Introduction
 
Ai Slides
Ai SlidesAi Slides
Ai Slides
 
Goal based agent
Goal based agentGoal based agent
Goal based agent
 
Goal based and utility based agents
Goal based and utility based agentsGoal based and utility based agents
Goal based and utility based agents
 
Lecture 04 intelligent agents
Lecture 04 intelligent agentsLecture 04 intelligent agents
Lecture 04 intelligent agents
 
Intelligent agent
Intelligent agent Intelligent agent
Intelligent agent
 
2-Agents- Artificial Intelligence
2-Agents- Artificial Intelligence2-Agents- Artificial Intelligence
2-Agents- Artificial Intelligence
 
1.1 What are Agent and Environment.pptx
1.1 What are Agent and Environment.pptx1.1 What are Agent and Environment.pptx
1.1 What are Agent and Environment.pptx
 
State Space Search in ai
State Space Search in aiState Space Search in ai
State Space Search in ai
 
Ai lecture 01(unit03)
Ai lecture  01(unit03)Ai lecture  01(unit03)
Ai lecture 01(unit03)
 
Agents_AI.ppt
Agents_AI.pptAgents_AI.ppt
Agents_AI.ppt
 
Artificial Intelligence -- Search Algorithms
Artificial Intelligence-- Search Algorithms Artificial Intelligence-- Search Algorithms
Artificial Intelligence -- Search Algorithms
 
Propositional logic
Propositional logicPropositional logic
Propositional logic
 
Problem solving agents
Problem solving agentsProblem solving agents
Problem solving agents
 

Similaire à AI Lecture 2 (intelligent agents)

topic-2intelligentagents-190426041219.pdf
topic-2intelligentagents-190426041219.pdftopic-2intelligentagents-190426041219.pdf
topic-2intelligentagents-190426041219.pdfShivareddyGangam
 
AI Agents, Agents in Artificial Intelligence
AI Agents, Agents in Artificial IntelligenceAI Agents, Agents in Artificial Intelligence
AI Agents, Agents in Artificial IntelligenceKirti Verma
 
ai-slides-1233566181695672-2 (1).pdf
ai-slides-1233566181695672-2 (1).pdfai-slides-1233566181695672-2 (1).pdf
ai-slides-1233566181695672-2 (1).pdfShivareddyGangam
 
introduction to inteligent IntelligentAgent.ppt
introduction to inteligent IntelligentAgent.pptintroduction to inteligent IntelligentAgent.ppt
introduction to inteligent IntelligentAgent.pptdejene3
 
chapter2-(Intelligent Agents).ppt
chapter2-(Intelligent Agents).pptchapter2-(Intelligent Agents).ppt
chapter2-(Intelligent Agents).pptssuser99ca78
 
www.funFruit.com Intelligent Agent www.funFruit.co.docx
www.funFruit.com Intelligent Agent www.funFruit.co.docxwww.funFruit.com Intelligent Agent www.funFruit.co.docx
www.funFruit.com Intelligent Agent www.funFruit.co.docxericbrooks84875
 
chapter2.pptx
chapter2.pptxchapter2.pptx
chapter2.pptxjpradha86
 
Introduction To Artificial Intelligence
Introduction To Artificial IntelligenceIntroduction To Artificial Intelligence
Introduction To Artificial IntelligenceNeHal VeRma
 
Introduction To Artificial Intelligence
Introduction To Artificial IntelligenceIntroduction To Artificial Intelligence
Introduction To Artificial IntelligenceNeHal VeRma
 
AI_02_Intelligent Agents.pptx
AI_02_Intelligent Agents.pptxAI_02_Intelligent Agents.pptx
AI_02_Intelligent Agents.pptxYousef Aburawi
 
Artificial intelligence introduction
Artificial intelligence introductionArtificial intelligence introduction
Artificial intelligence introductionmelchismel
 
Jarrar.lecture notes.aai.2011s.ch2.intelligentagents
Jarrar.lecture notes.aai.2011s.ch2.intelligentagentsJarrar.lecture notes.aai.2011s.ch2.intelligentagents
Jarrar.lecture notes.aai.2011s.ch2.intelligentagentsPalGov
 
Jarrar.lecture notes.aai.2011s.ch2.intelligentagents
Jarrar.lecture notes.aai.2011s.ch2.intelligentagentsJarrar.lecture notes.aai.2011s.ch2.intelligentagents
Jarrar.lecture notes.aai.2011s.ch2.intelligentagentsPalGov
 
Intelligent Agents
Intelligent AgentsIntelligent Agents
Intelligent Agentsmarada0033
 

Similaire à AI Lecture 2 (intelligent agents) (20)

topic-2intelligentagents-190426041219.pdf
topic-2intelligentagents-190426041219.pdftopic-2intelligentagents-190426041219.pdf
topic-2intelligentagents-190426041219.pdf
 
agents in ai ppt
agents in ai pptagents in ai ppt
agents in ai ppt
 
Artificial Intelligent Agents
Artificial Intelligent AgentsArtificial Intelligent Agents
Artificial Intelligent Agents
 
AI Agents, Agents in Artificial Intelligence
AI Agents, Agents in Artificial IntelligenceAI Agents, Agents in Artificial Intelligence
AI Agents, Agents in Artificial Intelligence
 
ai-slides-1233566181695672-2 (1).pdf
ai-slides-1233566181695672-2 (1).pdfai-slides-1233566181695672-2 (1).pdf
ai-slides-1233566181695672-2 (1).pdf
 
introduction to inteligent IntelligentAgent.ppt
introduction to inteligent IntelligentAgent.pptintroduction to inteligent IntelligentAgent.ppt
introduction to inteligent IntelligentAgent.ppt
 
chapter2-(Intelligent Agents).ppt
chapter2-(Intelligent Agents).pptchapter2-(Intelligent Agents).ppt
chapter2-(Intelligent Agents).ppt
 
www.funFruit.com Intelligent Agent www.funFruit.co.docx
www.funFruit.com Intelligent Agent www.funFruit.co.docxwww.funFruit.com Intelligent Agent www.funFruit.co.docx
www.funFruit.com Intelligent Agent www.funFruit.co.docx
 
chapter2.pptx
chapter2.pptxchapter2.pptx
chapter2.pptx
 
Introduction To Artificial Intelligence
Introduction To Artificial IntelligenceIntroduction To Artificial Intelligence
Introduction To Artificial Intelligence
 
Introduction To Artificial Intelligence
Introduction To Artificial IntelligenceIntroduction To Artificial Intelligence
Introduction To Artificial Intelligence
 
AI_02_Intelligent Agents.pptx
AI_02_Intelligent Agents.pptxAI_02_Intelligent Agents.pptx
AI_02_Intelligent Agents.pptx
 
Artificial intelligence introduction
Artificial intelligence introductionArtificial intelligence introduction
Artificial intelligence introduction
 
Lecture 2 Agents.pptx
Lecture 2 Agents.pptxLecture 2 Agents.pptx
Lecture 2 Agents.pptx
 
Unit 1.ppt
Unit 1.pptUnit 1.ppt
Unit 1.ppt
 
AI_Ch2.pptx
AI_Ch2.pptxAI_Ch2.pptx
AI_Ch2.pptx
 
Intelligent Agents
Intelligent AgentsIntelligent Agents
Intelligent Agents
 
Jarrar.lecture notes.aai.2011s.ch2.intelligentagents
Jarrar.lecture notes.aai.2011s.ch2.intelligentagentsJarrar.lecture notes.aai.2011s.ch2.intelligentagents
Jarrar.lecture notes.aai.2011s.ch2.intelligentagents
 
Jarrar.lecture notes.aai.2011s.ch2.intelligentagents
Jarrar.lecture notes.aai.2011s.ch2.intelligentagentsJarrar.lecture notes.aai.2011s.ch2.intelligentagents
Jarrar.lecture notes.aai.2011s.ch2.intelligentagents
 
Intelligent Agents
Intelligent AgentsIntelligent Agents
Intelligent Agents
 

Plus de Tajim Md. Niamat Ullah Akhund

Artificial intelligence LAB 1 overview & intelligent systems
Artificial intelligence LAB 1   overview & intelligent systemsArtificial intelligence LAB 1   overview & intelligent systems
Artificial intelligence LAB 1 overview & intelligent systemsTajim Md. Niamat Ullah Akhund
 
Matlab lecture 9 – simpson 1,3 and trapezoidal method@taj
Matlab lecture 9 – simpson 1,3 and trapezoidal method@tajMatlab lecture 9 – simpson 1,3 and trapezoidal method@taj
Matlab lecture 9 – simpson 1,3 and trapezoidal method@tajTajim Md. Niamat Ullah Akhund
 
Matlab lecture 8 – newton's forward and backword interpolation@taj copy
Matlab lecture 8 – newton's forward and backword interpolation@taj   copyMatlab lecture 8 – newton's forward and backword interpolation@taj   copy
Matlab lecture 8 – newton's forward and backword interpolation@taj copyTajim Md. Niamat Ullah Akhund
 
Matlab lecture 7 – regula falsi or false position method@taj
Matlab lecture 7 – regula falsi or false position method@tajMatlab lecture 7 – regula falsi or false position method@taj
Matlab lecture 7 – regula falsi or false position method@tajTajim Md. Niamat Ullah Akhund
 
Matlab lecture 3 – commands, the m files, data types, bitwise op, set@taj
Matlab lecture 3 – commands, the m files, data types, bitwise op, set@tajMatlab lecture 3 – commands, the m files, data types, bitwise op, set@taj
Matlab lecture 3 – commands, the m files, data types, bitwise op, set@tajTajim Md. Niamat Ullah Akhund
 
Matlab lecture 2 matlab basic syntax & variables @taj
Matlab lecture 2   matlab basic syntax & variables @tajMatlab lecture 2   matlab basic syntax & variables @taj
Matlab lecture 2 matlab basic syntax & variables @tajTajim Md. Niamat Ullah Akhund
 
Matlab lecture 1 - installation of matlab, introduction and course outline@taj
Matlab lecture 1 - installation of matlab, introduction and course outline@tajMatlab lecture 1 - installation of matlab, introduction and course outline@taj
Matlab lecture 1 - installation of matlab, introduction and course outline@tajTajim Md. Niamat Ullah Akhund
 
Circuit lab 9 verification of maximum power transfer theorem@taj
Circuit lab 9  verification of maximum power transfer theorem@tajCircuit lab 9  verification of maximum power transfer theorem@taj
Circuit lab 9 verification of maximum power transfer theorem@tajTajim Md. Niamat Ullah Akhund
 
Circuit lab 8 verification of thevenin's theorem@taj
Circuit lab 8  verification of thevenin's theorem@tajCircuit lab 8  verification of thevenin's theorem@taj
Circuit lab 8 verification of thevenin's theorem@tajTajim Md. Niamat Ullah Akhund
 
Circuit lab 7 verification of superposition theorem@taj
Circuit lab 7  verification of superposition theorem@tajCircuit lab 7  verification of superposition theorem@taj
Circuit lab 7 verification of superposition theorem@tajTajim Md. Niamat Ullah Akhund
 

Plus de Tajim Md. Niamat Ullah Akhund (20)

AI Lecture 7 (uncertainty)
AI Lecture 7 (uncertainty)AI Lecture 7 (uncertainty)
AI Lecture 7 (uncertainty)
 
AI Lecture 6 (logical agents)
AI Lecture 6 (logical agents)AI Lecture 6 (logical agents)
AI Lecture 6 (logical agents)
 
AI Lecture 5 (game playing)
AI Lecture 5 (game playing)AI Lecture 5 (game playing)
AI Lecture 5 (game playing)
 
AI Lecture 3 (solving problems by searching)
AI Lecture 3 (solving problems by searching)AI Lecture 3 (solving problems by searching)
AI Lecture 3 (solving problems by searching)
 
AI Lecture 1 (introduction)
AI Lecture 1 (introduction)AI Lecture 1 (introduction)
AI Lecture 1 (introduction)
 
Course outline (cse 412 - artificial intelligence)
Course outline (cse   412 - artificial intelligence)Course outline (cse   412 - artificial intelligence)
Course outline (cse 412 - artificial intelligence)
 
Artificial intelligence LAB 1 overview & intelligent systems
Artificial intelligence LAB 1   overview & intelligent systemsArtificial intelligence LAB 1   overview & intelligent systems
Artificial intelligence LAB 1 overview & intelligent systems
 
Matlab lecture 9 – simpson 1,3 and trapezoidal method@taj
Matlab lecture 9 – simpson 1,3 and trapezoidal method@tajMatlab lecture 9 – simpson 1,3 and trapezoidal method@taj
Matlab lecture 9 – simpson 1,3 and trapezoidal method@taj
 
Matlab lecture 8 – newton's forward and backword interpolation@taj copy
Matlab lecture 8 – newton's forward and backword interpolation@taj   copyMatlab lecture 8 – newton's forward and backword interpolation@taj   copy
Matlab lecture 8 – newton's forward and backword interpolation@taj copy
 
Matlab lecture 7 – regula falsi or false position method@taj
Matlab lecture 7 – regula falsi or false position method@tajMatlab lecture 7 – regula falsi or false position method@taj
Matlab lecture 7 – regula falsi or false position method@taj
 
Matlab lecture 6 – newton raphson method@taj copy
Matlab lecture 6 – newton raphson method@taj   copyMatlab lecture 6 – newton raphson method@taj   copy
Matlab lecture 6 – newton raphson method@taj copy
 
Matlab lecture 5 bisection method@taj
Matlab lecture 5  bisection method@tajMatlab lecture 5  bisection method@taj
Matlab lecture 5 bisection method@taj
 
Matlab lecture 4 loops@taj
Matlab lecture 4  loops@tajMatlab lecture 4  loops@taj
Matlab lecture 4 loops@taj
 
Matlab lecture 3 – commands, the m files, data types, bitwise op, set@taj
Matlab lecture 3 – commands, the m files, data types, bitwise op, set@tajMatlab lecture 3 – commands, the m files, data types, bitwise op, set@taj
Matlab lecture 3 – commands, the m files, data types, bitwise op, set@taj
 
Matlab lecture 2 matlab basic syntax & variables @taj
Matlab lecture 2   matlab basic syntax & variables @tajMatlab lecture 2   matlab basic syntax & variables @taj
Matlab lecture 2 matlab basic syntax & variables @taj
 
Matlab lecture 1 - installation of matlab, introduction and course outline@taj
Matlab lecture 1 - installation of matlab, introduction and course outline@tajMatlab lecture 1 - installation of matlab, introduction and course outline@taj
Matlab lecture 1 - installation of matlab, introduction and course outline@taj
 
Circuit lab 10 verification of norton's theorem@taj
Circuit lab 10  verification of norton's theorem@tajCircuit lab 10  verification of norton's theorem@taj
Circuit lab 10 verification of norton's theorem@taj
 
Circuit lab 9 verification of maximum power transfer theorem@taj
Circuit lab 9  verification of maximum power transfer theorem@tajCircuit lab 9  verification of maximum power transfer theorem@taj
Circuit lab 9 verification of maximum power transfer theorem@taj
 
Circuit lab 8 verification of thevenin's theorem@taj
Circuit lab 8  verification of thevenin's theorem@tajCircuit lab 8  verification of thevenin's theorem@taj
Circuit lab 8 verification of thevenin's theorem@taj
 
Circuit lab 7 verification of superposition theorem@taj
Circuit lab 7  verification of superposition theorem@tajCircuit lab 7  verification of superposition theorem@taj
Circuit lab 7 verification of superposition theorem@taj
 

Dernier

Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01KreezheaRecto
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdfSuman Jyoti
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxfenichawla
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueBhangaleSonal
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 

Dernier (20)

NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 

AI Lecture 2 (intelligent agents)

  • 1. CSE 412: Artificial IntelligenceCSE 412: Artificial Intelligence Topic - 2: Intelligent AgentsTopic - 2: Intelligent Agents Fall 2018Fall 2018 Tajim Md. Niamat Ullah Akhund Lecturer Department of Computer Science and Engineering Daffodil International University Email: tajim.cse@diu.edu.bd
  • 2. Agents and EnvironmentsAgents and Environments Good Behavior: The Concept of RationalityGood Behavior: The Concept of Rationality The Nature of EnvironmentsThe Nature of Environments The Structure of AgentsThe Structure of Agents Topic ContentsTopic Contents
  • 3. Intelligent AgentIntelligent Agent An agent  perceives its environment with sensors and  acts upon that environment with its actuators. An agent gets percepts one at a time, and maps this percept sequence to actions. 3 Majidur RahmanMajidur Rahman
  • 4. An AgentAn Agent 4 Majidur RahmanMajidur Rahman
  • 5. Example of an AgentExample of an Agent Let us consider a vacuum-cleaner agent that is shown in the figure bellow. The vacuum-cleaner world has just two locations: squares A and B. 5
  • 6. Example of an AgentExample of an Agent The vacuum agent perceives which square it is in and whether there is dirt in the square. It can choose to move left, move right, suck up the dirt, or do nothing. One very simple agent function is the following: if the current square is dirty, then suck; otherwise, move to the other square. 6
  • 7. Example of an AgentExample of an Agent Environment: squares A and B Percepts: [location, status], e.g. [A, Dirty] Actions: left, right, suck, and no-op 7 Majidur RahmanMajidur Rahman
  • 8. function REFLEX-VACUUM-AGENT ([location, status]) return an action if status == Dirty then return Suck else if location == A then return Right else if location == B then return Left Example of an AgentExample of an Agent Majidur RahmanMajidur Rahman
  • 9. Rational AgentRational Agent  For each possible percept sequence, a rational agent should select an action (using an agent function) that is expected to maximize its performance measure, given the evidence provided by the percept sequence and whatever built-in prior knowledge the agent has.  A percept sequence is the complete history of anything the agent has ever perceived.  A performance measure is a means of calculating how well the agent has performed based on the sequence of percepts that it has received.  An agent’s prior knowledge of the environment is the knowledge that the agent designer has given to the agent before its introduction to the environment. 9 Majidur RahmanMajidur Rahman
  • 10. Rational AgentRational Agent  An agent function maps percept sequences to actions. f : seq(P) →A  Agent function for vacuum Cleaner example: 10 Majidur RahmanMajidur Rahman
  • 11. Performance Measures Environment Actuators Sensors used by the agent to perform actions surroundings beyond the control of the agent used to evaluate how well an agent solves the task at hand provide information about the current state of the environment  To design a rational agent we must specify its task environment: Task EnvironmentsTask Environments 11 Majidur RahmanMajidur Rahman
  • 12. ExampleExample PEAS description of the environment for an automated taxi:  Performance Safety, destination, profits, legality, comfort  Environment Streets/motorways, other traffic, pedestrians, weather  Actuators Steering, accelerator, brake, horn, speaker/display  Sensors Video, sonar, speedometer, engine sensors, keyboard, GPS 12 Majidur RahmanMajidur Rahman
  • 14. Environment TypesEnvironment Types The environment for an agent may be  Fully or partially observable  Deterministic or stochastic  Episodic or sequential  Static or dynamic  Discrete or continuous  Single or multi-agent 14 Majidur RahmanMajidur Rahman
  • 15. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi Observable?? Deterministic?? Episodic?? Static?? Discrete?? Single-agent?? Majidur RahmanMajidur Rahman 15
  • 16. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi ObservableObservable?? Deterministic?? Episodic?? Static?? Discrete?? Single-agent?? Fully vs. partially observable: an environment is full observable when the sensors can detect all aspects that are relevant to the choice of action. Majidur RahmanMajidur Rahman 16
  • 17. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi ObservableObservable?? FULL FULL PARTIAL PARTIAL Deterministic?? Episodic?? Static?? Discrete?? Single-agent?? Fully vs. partially observable: an environment is full observable when the sensors can detect all aspects that are relevant to the choice of action. Majidur RahmanMajidur Rahman 17
  • 18. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi ObservableObservable?? FULL FULL PARTIAL PARTIAL DeterministicDeterministic?? Episodic?? Static?? Discrete?? Single-agent?? Deterministic vs. stochastic: if the next environment state is completely determined by the current state the executed action then the environment is deterministic. Majidur RahmanMajidur Rahman 18
  • 19. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi ObservableObservable?? FULL FULL PARTIAL PARTIAL DeterministicDeterministic?? YES NO YES NO Episodic?? Static?? Discrete?? Single-agent?? Deterministic vs. stochastic: if the next environment state is completely determined by the current state the executed action then the environment is deterministic. Majidur RahmanMajidur Rahman 19
  • 20. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi ObservableObservable?? FULL FULL PARTIAL PARTIAL DeterministicDeterministic?? YES NO YES NO EpisodicEpisodic?? Static?? Discrete?? Single-agent?? Episodic vs. sequential: In an episodic environment the agent’s experience can be divided into atomic steps where the agents perceives and then performs a single action. The choice of action depends only on the episode itself. Majidur RahmanMajidur Rahman 20
  • 21. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi ObservableObservable?? FULL FULL PARTIAL PARTIAL Deterministic?? YES NO YES NO EpisodicEpisodic?? NO NO NO NO Static?? Discrete?? Single-agent?? Episodic vs. sequential: In an episodic environment the agent’s experience can be divided into atomic steps where the agents perceives and then performs a single action. The choice of action depends only on the episode itself Majidur RahmanMajidur Rahman 21
  • 22. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi Observable?? FULL FULL PARTIAL PARTIAL Deterministic?? YES NO YES NO Episodic?? NO NO NO NO Static?? Discrete?? Single-agent?? Static vs. dynamic: If the environment can change while the agent is choosing an action, the environment is dynamic. Semi-dynamic if the agent’s performance changes even when the environment remains the same. Majidur RahmanMajidur Rahman 22
  • 23. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi ObservableObservable?? FULL FULL PARTIAL PARTIAL DeterministicDeterministic?? YES NO YES NO EpisodicEpisodic?? NO NO NO NO StaticStatic?? YES YES SEMI NO Discrete?? Single-agent?? Static vs. dynamic: If the environment can change while the agent is choosing an action, the environment is dynamic. Semi-dynamic if the agent’s performance changes even when the environment remains the same. Majidur RahmanMajidur Rahman 23
  • 24. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi Observable?? FULL FULL PARTIAL PARTIAL Deterministic?? YES NO YES NO Episodic?? NO NO NO NO Static?? YES YES SEMI NO Discrete?? Single-agent?? Discrete vs. continuous: This distinction can be applied to the state of the environment, the way time is handled and to the percepts/actions of the agent. Majidur RahmanMajidur Rahman 24
  • 25. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi Observable?? FULL FULL PARTIAL PARTIAL Deterministic?? YES NO YES NO Episodic?? NO NO NO NO Static?? YES YES SEMI NO Discrete?? YES YES YES NO Single-agent?? Discrete vs. continuous: This distinction can be applied to the state of the environment, the way time is handled and to the percepts/actions of the agent. Majidur RahmanMajidur Rahman 25
  • 26. Environment TypesEnvironment Types Solitaire Backgammom Internet shopping Taxi ObservableObservable?? FULL FULL PARTIAL PARTIAL DeterministicDeterministic???? YES NO YES NO EpisodicEpisodic???? NO NO NO NO StaticStatic???? YES YES SEMI NO DiscreteDiscrete???? YES YES YES NO Single-agentSingle-agent???? YES NO NO NO Single vs. multi-agent: Does the environment contain other agents who are also maximizing some performance measure that depends on the current agent’s actions? Majidur RahmanMajidur Rahman 26
  • 27. Environment TypesEnvironment Types The simplest environment is  Fully observable, deterministic, episodic, static, discrete and single-agent. Most real situations are:  Partially observable, stochastic, sequential, dynamic, continuous and multi-agent. Majidur RahmanMajidur Rahman 27
  • 28. Agent TypesAgent Types Four basic kinds of agent that embody the principles underlying almost all intelligent systems:  Simple reflex agents;  Model-based reflex agents;  Goal-based agents; and  Utility-based agents. 28 Majidur RahmanMajidur Rahman
  • 29. Agent Types: Simple ReflexAgent Types: Simple Reflex  Select action on the basis of only the current percept, e.g. the vacuum-agent  Large reduction in possible percept/action situations  Implemented through condition-action rules if dirty then suck  Example: – Agent: Mail sorting robot – Environment: Conveyor belt of letters – Rule: e.g. city = Edin → put Scotland bag 29 Majidur RahmanMajidur Rahman
  • 30. Agent Types: Model-BasedAgent Types: Model-Based  To tackle partially observable environments  Maintain internal state that depends on percept history  Over time update state using world knowledge  How does the world change independently  How do actions affect the world  Example: – Agent: Robot vacuum cleaner – Environment: Dirty room, furniture – Model: Map of room, which areas already cleaned 30 Majidur RahmanMajidur Rahman
  • 31. Agent Types: Goal-BasedAgent Types: Goal-Based  The agent needs a goal to know which situations are desirable  Difficulties arise when long sequences of actions are required to find the goal  Typically investigated in search and planning research  Major difference: future is taken into account  Example: – Agent: Robot maid – Environment: House and people – Goal: Clean clothes, tidy room, table laid, etc 31 Majidur RahmanMajidur Rahman
  • 32. 32 Agent Types: Utility-BasedAgent Types: Utility-Based  Certain goals can be reached in different ways  Some are better: have a higher utility  Utility function maps a (sequence of) state(s) onto a real number  Improves on goals:  Selecting between conflicting goals  Selecting between several goals based on likelihood of success and importance of goals  Example: – Agent: Mars Lander – Environment: The surface of mars with obstacles – Utility: Shortest and obstacle-free path Majidur RahmanMajidur Rahman
  • 34. ********** ********** If You Need Me ********** ********** Mail: tajim.cse@diu.edu.bd Website: https://www.tajimiitju.blogspot.com ORCID: https://orcid.org/0000-0002-2834-1507 LinkedIn: https://www.linkedin.com/in/tajimiitju ResearchGate: https://www.researchgate.net/profile/Tajim_Md_Niamat_Ullah_Akhund YouTube: https://www.youtube.com/tajimiitju?sub_confirmation=1 SlideShare: https://www.slideshare.net/TajimMdNiamatUllahAk Facebook: https://www.facebook.com/tajim.mohammad GitHub: https://github.com/tajimiitju Google+: https://plus.google.com/+tajimiitju Gmail: tajim.mohammad.3@gmail.com Twitter: https://twitter.com/Tajim53 Thank you Tajim Md. Niamat Ullah AkhundTajim Md. Niamat Ullah Akhund

Notes de l'éditeur

  1. Volledige observeerbare omgevingen zijn handig omdat de agent geen Interne staat moet bijhouden over de omgeving Partieel observeerbare omgevingen door noise of niet goed afgestelde sensoren of ontbrekende informatie
  2. Als de omgeving gedeeltelijk observeerbaar is kan deze stochastisch lijken. Dus het is beter om te kijken of de omgebing determinitisch of stochastisch is vanuit het standpunt van de agent. Als de omgeving deterministisch is behalve de acties van de andere agenten dan is de omgeving strategisch.
  3. If the agent performance score changes ahen time passes, the environment is semi-dynamic.
  4. If the agent performance score changes ahen time passes, the environment is semi-dynamic.
  5. If the agent performance score changes ahen time passes, the environment is semi-dynamic.
  6. If the agent performance score changes ahen time passes, the environment is semi-dynamic.
  7. If the agent performance score changes ahen time passes, the environment is semi-dynamic.