Model Pipeline - Human approval workflows
This pipeline shows how an AI system works together with humans to make decisions. The AI suggests answers, and humans approve or correct them before final use.
Jump into concepts and practice - no test required
This pipeline shows how an AI system works together with humans to make decisions. The AI suggests answers, and humans approve or correct them before final use.
Loss
0.7 |****
0.6 |****
0.5 |****
0.4 |****
0.3 |****
+----
1 2 3 4 Epochs| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 0.65 | 0.60 | Model starts learning, accuracy low |
| 2 | 0.50 | 0.72 | Loss decreases, accuracy improves |
| 3 | 0.40 | 0.80 | Model converging, better predictions |
| 4 | 0.35 | 0.85 | Stable improvement, ready for deployment |
if confidence < 0.7: followed by the approval request function.if confidence < 0.7: request_approval() -> Option Bconfidence = 0.65?
if confidence < 0.7:
print('Request human approval')
else:
print('Auto approve')confidence < 0.7 is true.def check_approval(confidence):
if confidence < 0.7
return 'Request approval'
else:
return 'Auto approve'confidence < 0.7 or task == 'high risk'.if confidence < 0.7 or task == 'high risk': request_approval() -> Option A