Method
rerunHoldoutAnalysis POST
Copy POST

Rerun a holdout analysis. A different model version and algorithm can be specified which should be under the same model.

Arguments:

REQUIRED KEY TYPE DESCRIPTION
Yes holdoutAnalysisId str ID of the holdout analysis to rerun
No modelVersion str (optional) Version of the model to use for the holdout analysis
No algorithm str (optional) ID of algorithm to use for the holdout analysis
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error
result HoldoutAnalysisVersion
KEY TYPE Description
holdoutAnalysisVersion str The unique identifier of the holdout analysis version.
holdoutAnalysisId str The unique identifier of the holdout analysis.
createdAt str The timestamp at which the holdout analysis version was created.
status str The status of the holdout analysis version.
error str The error message if the status is FAILED.
modelId str The model id associated with the holdout analysis.
modelVersion str The model version associated with the holdout analysis.
algorithm str The algorithm used to train the model.
algoName str The name of the algorithm used to train the model.
metrics dict The metrics of the holdout analysis version.
metricInfos dict The metric infos of the holdout analysis version.

Exceptions:

TYPE WHEN
DataNotFoundError

holdoutAnalysisId is not found.

Language: