You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Get the training job
response = sm_client.describe_training_job(TrainingJobName=job_name)
status = response["TrainingJobStatus"]
logger.info("Training job:{} has status:{}.".format(job_name, status))
# Get the metrics as a dictionary
report_dict = {
"regression_metrics": { }
}
for metric in response["FinalMetricDataList"]:
report_dict["regression_metrics"][metric["MetricName"]] = metric["Value"]
The text was updated successfully, but these errors were encountered:
Replace the
evaluate.py
processing job with a Lambda Step that returns the report dictionary Model Quality MetricsThe text was updated successfully, but these errors were encountered: