Challenge - 5 Problems
Agent Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 conceptual
intermediate1:30remaining
What is the primary role of a computer use agent?
Imagine a computer use agent as a helper that interacts with software or users. What is its main job?
Attempts:
2 left
❓ model choice
intermediate2:00remaining
Which model architecture is best suited for a computer use agent that needs to understand and generate natural language commands?
You want to build a computer use agent that can understand spoken or typed commands and respond appropriately. Which model architecture fits best?
Attempts:
2 left
❓ metrics
advanced1:30remaining
Which metric is most appropriate to evaluate a computer use agent's success in completing tasks accurately?
You have a computer use agent that performs tasks based on user commands. You want to measure how often it completes tasks correctly. Which metric should you use?
Attempts:
2 left
🔧 debug
advanced1:30remaining
What error will this agent code produce?
Consider this Python snippet for a simple agent that should print 'Task done' after performing a task:
class Agent:
def perform_task(self):
print('Performing task')
agent = Agent()
agent.perform_task
print('Task done')What happens when you run this code?
Attempts:
2 left
❓ hyperparameter
expert2:30remaining
Which hyperparameter adjustment is most likely to improve a computer use agent's ability to generalize to new tasks?
You have trained a computer use agent on many tasks, but it performs poorly on new, unseen tasks. Which hyperparameter change is most likely to help it generalize better?
Attempts:
2 left
