{ "@context": "https://schema.org", "@type": "Organization", "name": "Brainscape", "url": "https://www.brainscape.com/", "logo": "https://www.brainscape.com/pks/images/cms/public-views/shared/Brainscape-logo-c4e172b280b4616f7fda.svg", "sameAs": [ "https://www.facebook.com/Brainscape", "https://x.com/brainscape", "https://www.linkedin.com/company/brainscape", "https://www.instagram.com/brainscape/", "https://www.tiktok.com/@brainscapeu", "https://www.pinterest.com/brainscape/", "https://www.youtube.com/@BrainscapeNY" ], "contactPoint": { "@type": "ContactPoint", "telephone": "(929) 334-4005", "contactType": "customer service", "availableLanguage": ["English"] }, "founder": { "@type": "Person", "name": "Andrew Cohen" }, "description": "Brainscape’s spaced repetition system is proven to DOUBLE learning results! Find, make, and study flashcards online or in our mobile app. Serious learners only.", "address": { "@type": "PostalAddress", "streetAddress": "159 W 25th St, Ste 517", "addressLocality": "New York", "addressRegion": "NY", "postalCode": "10001", "addressCountry": "USA" } }

Agents Flashcards

(20 cards)

1
Q

What is an agent?

A

An agent is anything that perceives its environment through sensors and acts on it through actuators.

Example: A robot vacuum senses dirt and moves to clean it.

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

What is an agent function?

A

A mapping from percept sequences to actions — it defines how the agent decides what to do.

Example: If the agent sees [A, Dirty], it decides to Suck.

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

What is a rational agent?

A

An agent that selects actions expected to maximize its performance measure, based on percepts and knowledge.

Example: A self-driving car drives safely and efficiently to its destination while avoiding traffic.

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

What is a fully observable environment?

A

An environment where the agent has access to the entire state at any time.

Example: In chess, both players can see the full board.

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

What is a partially observable environment?

A

An environment where the agent only has partial or limited access to the full state.

Example: A robot navigating a maze can’t see around walls — it only knows what its sensors detect.

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

What is a deterministic environment?

A

An environment where the next state is completely predictable, based on the current state and action.
Example: In Sudoku, placing a 5 in a cell has a fixed outcome

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

What is a stochastic environment?

A

An environment that includes randomness — actions may lead to different results.

Example: In League of Legends, an attack may or may not critically strike due to chance.

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

What is an episodic environment?

A

An environment where each decision is independent of others.

Example: A spam filter processes each email separately.

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

What is a sequential environment?

A

An environment where current decisions affect future ones.

Example: In Sudoku, placing a number limits future choices in that row/column/box.

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

What is a static environment?

A

An environment that does not change while the agent is deciding.

Example: Chess — the board doesn’t change while you think.

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

What is a dynamic environment?

A

An environment that can change on its own, even while the agent is thinking.

Example: In real-world driving, traffic may change suddenly.

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

What is a discrete environment?

A

One with a finite set of states and actions.

Example: In TFT unit placement, you can only place units on specific grid tiles.

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

What is a continuous environment?

A

One where states/actions exist on a spectrum and can take on real values.

Example: In League of Legends, player movement is smooth and not limited to a grid.

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

What is a single-agent environment?

A

One where only one agent makes decisions.

Example: Solving a maze alone — no other agents to interact with.

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

What is a multi-agent environment?

A

One with two or more agents interacting — possibly competing or cooperating.

Example: Chess — both players are agents making decisions.

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

What is a simple reflex agent?

A

Reacts based only on the current percept using condition-action rules.

Example: A vacuum agent that does if Dirty then Suck.

17
Q

What is a model-based reflex agent?

A

Like a simple reflex agent, but it keeps an internal state to deal with partially observable environments.

Example: A vacuum that remembers which rooms it already cleaned.

18
Q

What is a goal-based agent?

A

Chooses actions to achieve a defined goal, often using planning.

Example: A robot navigating to a charging station.

19
Q

What is a utility-based agent?

A

Chooses actions that maximize utility, not just achieve a goal.

Example: Google Maps choosing a route that avoids traffic even if it’s longer in distance.

20
Q

What is a learning (autonomous) agent?

A

Learns from experience to improve its behavior in changing or unknown environments.
Example: A recommendation system that learns from user clicks to show better content.