Class Notes Flashcards

1
Q

What is rationality?

A

A system is rational if ut effectively achieves its goal, given its knowledge.

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

What is Weak AI?

A

the idea that computers are not intelligent but we can make it seem like they are.

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

What is Strong AI?

A

the idea that computers are capable of intelligence, we will eventually be able yo give computers true intelligence.

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

What is the Turing Test?

A

A human interrogator is having an online conversation with either a human or AI. If the interrogator cannot tell if it is human or not, then it passes the test.

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

What is an Agent?

A

Has the ability to act and make decisions.

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

What is an Agent Function?

A

includes theoretical starting points,
maps every percept to an action,
includes all possible outcomes

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

What is a Rational Agent?

A

an agent that takes actions that maximize it’s performance measure

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

What is the Task Environment? (PEAS)

A

Performance Measure: factors that affect the agent
Environment: relavent parts of the real world
Actuators: how can it affect its enviro
Sensors: how can it detect the world

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

What are the properties of task environments?

A

Observability
Single/Multi Agent
Deterministic/Non
Episodic/Sequential
Static/Dynamic
Discrete/Continuous
Known/Un

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

What is being Observable?

A

whether the agent can observe the whole place

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

What is multi-agent?

A

does the other players move affect you?

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

What is deterministic?

A

If they know the consequence of an action before it is done.

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

What is episodic?

A

After an action, you can reset and the action doesn’t affect the future actions.

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

What is static?

A

Whether or not you have time to think. Crosswords are static because you can think for as long as you want and the state of the game will not change.

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

What is discrete?

A

When actions are countable and don’t need decimals.

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

What is an unknown environment?

A

When the agent is designed, does the programmer know the details of the environment?

17
Q

What is the state representation?

A

Describe the environment including information relevant to the task

18
Q

What is the is_goal function ?

A

It returns whether or not we are in a goal state.

19
Q
A