Flashcards · AI Agents · Free
AI Agents flashcards, generated for you.
Example AI Agents study cards to learn from right now — then generate a full set from your own notes (plus a practice quiz) and export to Quizlet or Anki. Free, no account needed.
Example AI Agents flashcards
What is an AI agent in the simplest terms?
A program that perceives its environment, makes decisions, and takes actions to reach a goal—like a robot that sees obstacles and navigates around them.
What is the agent-environment loop?
A cycle where the agent observes the current state, decides on an action, executes it, receives feedback/reward, and repeats—the fundamental loop all agents follow.
What is the difference between a reactive agent and a deliberative agent?
Reactive agents respond immediately to current observations (if-then rules); deliberative agents plan ahead by modeling future states and consequences before acting.
What is a policy in reinforcement learning?
A rule or function that maps states to actions—it tells the agent what to do in each situation. Denoted π(a|s), it gives the probability of choosing action a in state s.
What is a value function and why does an agent care about it?
A function V(s) that estimates the long-term reward an agent will receive from state s onward. Agents use it to evaluate which states are worth being in and guide decision-making toward better futures.
What is the Bellman equation intuitively?
The insight that a state's value equals its immediate reward plus the discounted value of the next state. Mathematically: V(s) = R(s) + γ·V(s'). It breaks the problem of long-term planning into immediate + future components.
What is the exploration-exploitation trade-off?
The dilemma agents face: exploit (use known good actions) vs. explore (try new actions to learn better ones). Balancing both is key—pure exploitation misses better strategies; pure exploration wastes time.
What is model-based vs. model-free reinforcement learning?
Model-based: agent learns a model of the environment (how actions lead to next states) and plans using it. Model-free: agent learns a policy or value function directly from experience without building an explicit model.
What is a Markov Decision Process (MDP) and why is it central to AI agents?
A mathematical framework with states, actions, transition probabilities, and rewards. An MDP assumes the Markov property: the next state depends only on the current state and action, not history. Most agent formalisms use MDPs as their foundation.
What is the difference between on-policy and off-policy learning?
On-policy: agent learns the value of the policy it is currently following (e.g., SARSA). Off-policy: agent learns the value of an optimal policy while following a different exploratory policy (e.g., Q-learning). Off-policy is more sample-efficient but harder to stabilize.
Make your own AI Agents study set
Flashcards for related topics
Studying AI Agents to build with AI? MindloomHQ turns it into real skills — structured courses, agent projects, and certificates.
Explore MindloomHQ →