Trace a Prediction Round-Trip
Follow one request from input to logged response.
Follow One Request
Time to watch the whole loop work. You will follow a single prediction from a client request all the way to a logged response. 🔍
The Client Sends Input
A caller POSTs JSON to /predict. This is the raw input feature payload your model needs to make a decision.
curl -X POST localhost:8000/predict \
-H "Content-Type: application/json" \
-d '{"tenure": 12, "monthly_charges": 79.9}'All lessons in this course
- Train and Log to the Registry
- Promote the Best Model to Production
- Serve the Production Model
- Trace a Prediction Round-Trip