Basics and History Flashcards

1
Q

What are the four categories of AI?

A
  • Thinking humanly
  • Acting humanly
  • Thinking rationally
  • Actiong rationally
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does it mean to act rationally?

A

Doing the “right” thing regardless of personal stake

Maximize the goal given the situatuon

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is an Intelligent Agent?

A

They percieve their environment through sensors and act with actuators. An agent is essentially an architecture + a program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the PEAS measures?

A
  • Performance: how should the agent perform (specs)
  • Environment: where will the agent be operating?
  • Actuators: how can the agent interact?
  • Sensors: how can the agent sense?
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Briefly describe the different environment types.

A
  • Fully observable: Sensors give full information
  • Deterministic: The next state is completely determined
    by the current state
  • Stochastic: The inverse
  • Episodic: Experience is divided into episodes, action
    depends only on current episode
  • Sequential: The inverse
  • Static: Environment is unchanged
  • Discrete: Limited number of clearly defined actions
  • Single agent: operates by itself
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Briefly describe the different types of agents.

A
  • Table-lookup: Check a table for possible actions each
    time
  • Simple reflex: Do something, see what happens, do
    something else
  • Model-based: Same as above, but has a predefined
    model which alters actions after observations
  • Goal-based: Only considers its goal, tries to reach as
    efficiently as possible
  • Utility-based: Same as above, but considers other -
    goals (how happy will I be in a certain state)
  • Learning agents: Measures its own performance, and
    alters behavior based on that
How well did you know this?
1
Not at all
2
3
4
5
Perfectly