Learn R Programming

datarobot (version 2.18.6)

ValidateReplaceDeployedModel: Validate a potential deployment model replacement.

Description

Validate a potential deployment model replacement.

Usage

ValidateReplaceDeployedModel(deploymentId, newModelId)

Value

A validation report with:

  • status character. Either PASSED or FAILED depending on whether all checks passed or not.

  • message character. A message explaining the status failure, if any.

  • checks list. A list of each check and the individual status.

Arguments

deploymentId

character. The ID of the deployment.

newModelId

character. The ID of the model to use in the deployment. This model will replace the old model. You can also pass a dataRobotModel object.

Examples

Run this code
if (FALSE) {
  deploymentId <- "5e319d2e422fbd6b58a5edad"
  newModelId <- "5996f820af07fc605e81ead4"
  ValidateReplaceDeployedModel(deploymentId, newModelId)
}

Run the code above in your browser using DataLab