Panik Flashcards
table-lookup agent
mapping indexed by percept sequences. Each action is just an entry in that table.
reflexive agent
condition-action rules that are pattern matched against a percept.
Goal-oriented agents
try to fulfil (binary) goals by imagining the outcome of actions.
Utility-based agents
have a utility function that judges the expected outcomes of different actions somehow.
Learning agents
improves the system by changing and retrieving knowledge from the performance element
accessible
All relevant aspects of the world are available to the sensors.
deterministic
The next state depends completely on the current state and chosen action.
episodic
The choice of an action depends only on the current state (not on the past).
static
The world does not change while deciding on an action.
discrete
There are only finitely many world states in a range.
successor function S ( x )
returns the set of states reachable by any action from state x.
path
sequence of actions
Single-state problem
Multiple-state problem
Contingency problem
Exploration problem
World knowledge | Action knowledge complete | complete incomplete | complete to be found at run-time | incomplete unknown | unknown
Completeness:
Always finds a solution if it exists.
(blind) search
uninformed
(heuristic) search
informed
Iterative deepening
combines BFS and DFS. It executes depth-limited search at increasing depths until
a solution is found.
Non-complete search?
Iterative Deepening