Ingest ground truth
You can ingest ground truth and monitor performance metrics like accuracy, precision, confusion matrix etc.
The system supports the ability to send delayed ground truth.
Verta uses a unique UUID for each prediction in order to map a prediction with the corresponding ground truth.
A typical flow would be the following:
Caller sends input data for prediction on a Verta endpoint
The model makes a prediction and assigns a unique UUID for the prediction
Ground truth can then b e registered with the system using the above UUID
UUID and the actual label are required for the log_ground_truth function along with the prediction column name.
Here is a code sample:
Note: If you are sending ground truth along with the prediction data, we recommend adding some 15 sec sleep time between the two so the system can process prediction data first.
For delayed ground truth the data appears immediately in the system and you can start seeing updated performance charts.
Last updated