List Flywheel Iteration History
comprehend_list_flywheel_iteration_history | R Documentation |
Information about the history of a flywheel iteration¶
Description¶
Information about the history of a flywheel iteration. For more information about flywheels, see Flywheel overview in the Amazon Comprehend Developer Guide.
Usage¶
comprehend_list_flywheel_iteration_history(FlywheelArn, Filter,
NextToken, MaxResults)
Arguments¶
FlywheelArn |
[required] The ARN of the flywheel. |
Filter |
Filter the flywheel iteration history based on creation time. |
NextToken |
Next token |
MaxResults |
Maximum number of iteration history results to return |
Value¶
A list with the following syntax:
list(
FlywheelIterationPropertiesList = list(
list(
FlywheelArn = "string",
FlywheelIterationId = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
Status = "TRAINING"|"EVALUATING"|"COMPLETED"|"FAILED"|"STOP_REQUESTED"|"STOPPED",
Message = "string",
EvaluatedModelArn = "string",
EvaluatedModelMetrics = list(
AverageF1Score = 123.0,
AveragePrecision = 123.0,
AverageRecall = 123.0,
AverageAccuracy = 123.0
),
TrainedModelArn = "string",
TrainedModelMetrics = list(
AverageF1Score = 123.0,
AveragePrecision = 123.0,
AverageRecall = 123.0,
AverageAccuracy = 123.0
),
EvaluationManifestS3Prefix = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_flywheel_iteration_history(
FlywheelArn = "string",
Filter = list(
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
CreationTimeBefore = as.POSIXct(
"2015-01-01"
)
),
NextToken = "string",
MaxResults = 123
)