Skip to content

Get Evaluation

machinelearning_get_evaluation R Documentation

Returns an Evaluation that includes metadata as well as the current status of the Evaluation

Description

Returns an Evaluation that includes metadata as well as the current status of the Evaluation.

Usage

machinelearning_get_evaluation(EvaluationId)

Arguments

EvaluationId

[required] The ID of the Evaluation to retrieve. The evaluation of each MLModel is recorded and cataloged. The ID provides the means to access the information.

Value

A list with the following syntax:

list(
  EvaluationId = "string",
  MLModelId = "string",
  EvaluationDataSourceId = "string",
  InputDataLocationS3 = "string",
  CreatedByIamUser = "string",
  CreatedAt = as.POSIXct(
    "2015-01-01"
  ),
  LastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  Name = "string",
  Status = "PENDING"|"INPROGRESS"|"FAILED"|"COMPLETED"|"DELETED",
  PerformanceMetrics = list(
    Properties = list(
      "string"
    )
  ),
  LogUri = "string",
  Message = "string",
  ComputeTime = 123,
  FinishedAt = as.POSIXct(
    "2015-01-01"
  ),
  StartedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_evaluation(
  EvaluationId = "string"
)