Skip to content

Check Status

Check the status of a prediction or training process.

Parameters:

Name Type Description Default
predict_report_id str

The ID of the prediction report.

None
model_id str

The ID of the model.

None

Returns:

Name Type Description
bool

True if the process is complete, False otherwise.

Sample Usage

status = anote.checkStatus(predict_report_id="your_report_id")
print(f"Status: {'Complete' if status else 'In Progress'}")