Skip to content

LavenderDataLoader - Progress

You can check the progress of the data loader, including how many samples are processed and left.

The progress object has the following fields:

FieldDescription
TotalThe total number of samples to process in the iteration.
CurrentThe latest index of the sample that is being processed.
InprogressThe samples that are being processed.
Includes the index of the sample, the timestamp when it started,
and the rank of the worker that is processing it.
CompletedThe number of samples that have been completed.
FilteredThe number of samples that have been filtered out.
FailedThe number of samples that have failed to process.
Terminal window
# List all iterations for a dataset
lavender-data client iterations list --dataset-id ds-...
{"dataset_id": "ds-...", "id": "it-..."}
Terminal window
# Get the progress of an iteration
lavender-data client iterations get-progress it-...
{
"total": 100,
"current": 3,
"inprogress": [
{
"index": 2,
"rank": 0,
"started_at": 1744688747.979773
}
],
"completed": 2,
"filtered": 0,
"failed": 0
}