Challenge - 5 Problems
Human Approval Workflow Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 conceptual
intermediate1:30remaining
What is the main purpose of a human approval workflow in AI systems?
Human approval workflows are often integrated into AI systems. What is their primary role?
Attempts:
2 left
❓ model choice
intermediate1:30remaining
Which AI model type best supports human approval workflows for text classification?
You want an AI model that can provide confidence scores to help humans decide when to approve or review text classification results. Which model type is best?
Attempts:
2 left
❓ metrics
advanced2:00remaining
How does adding a human approval step affect the overall accuracy metric of an AI system?
An AI system has 85% accuracy alone. After adding a human approval step that corrects 10% of AI errors, what is the new effective accuracy?
Attempts:
2 left
🔧 debug
advanced2:00remaining
Identify the error in this human approval workflow code snippet
Review the following Python code that integrates human approval in an AI prediction pipeline. What error will it cause?
Agentic_ai
def ai_predict(input_data): # returns prediction and confidence return {'label': 'spam', 'confidence': 0.7} def human_approval(prediction): if prediction['confidence'] < 0.8: return input('Approve prediction? (yes/no): ') else: return 'yes' result = ai_predict('email text') approved = human_approval(result) if approved == 'yes': print('Final label:', result['label']) else: print('Prediction rejected')
Attempts:
2 left
❓ hyperparameter
expert2:30remaining
Which hyperparameter adjustment best balances AI autonomy and human approval workload?
In a human approval workflow, the AI model outputs a confidence threshold to decide when to request human review. Which threshold setting best balances reducing human workload while maintaining safety?
Attempts:
2 left
