Skip to content

Commit 46e9265

Browse files
author
AWS
committed
Amazon Lookout for Equipment Update: This release adds a field exposing model quality to read APIs for models. It also adds a model quality field to the API response when creating an inference scheduler.
1 parent 7719113 commit 46e9265

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Lookout for Equipment",
4+
"contributor": "",
5+
"description": "This release adds a field exposing model quality to read APIs for models. It also adds a model quality field to the API response when creating an inference scheduler."
6+
}

services/lookoutequipment/src/main/resources/codegen-resources/service-2.json

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,6 +1076,10 @@
10761076
"Status":{
10771077
"shape":"InferenceSchedulerStatus",
10781078
"documentation":"<p>Indicates the status of the <code>CreateInferenceScheduler</code> operation. </p>"
1079+
},
1080+
"ModelQuality":{
1081+
"shape":"ModelQuality",
1082+
"documentation":"<p>Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the model quality is poor based on training metrics, the value is <code>POOR_QUALITY_DETECTED</code>. Otherwise, the value is <code>QUALITY_THRESHOLD_MET</code>. </p> <p>If the model is unlabeled, the model quality can't be assessed and the value of <code>ModelQuality</code> is <code>CANNOT_DETERMINE_QUALITY</code>. In this situation, you can get a model quality assessment by adding labels to the input dataset and retraining the model.</p> <p>For information about using labels with your models, see <a href=\"https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/understanding-labeling.html\">Understanding labeling</a>.</p> <p>For information about improving the quality of a model, see <a href=\"https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/best-practices.html\">Best practices with Amazon Lookout for Equipment</a>.</p>"
10791083
}
10801084
}
10811085
},
@@ -2029,6 +2033,10 @@
20292033
"ModelDiagnosticsOutputConfiguration":{
20302034
"shape":"ModelDiagnosticsOutputConfiguration",
20312035
"documentation":"<p>Configuration information for the model's pointwise model diagnostics.</p>"
2036+
},
2037+
"ModelQuality":{
2038+
"shape":"ModelQuality",
2039+
"documentation":"<p>Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the model quality is poor based on training metrics, the value is <code>POOR_QUALITY_DETECTED</code>. Otherwise, the value is <code>QUALITY_THRESHOLD_MET</code>.</p> <p>If the model is unlabeled, the model quality can't be assessed and the value of <code>ModelQuality</code> is <code>CANNOT_DETERMINE_QUALITY</code>. In this situation, you can get a model quality assessment by adding labels to the input dataset and retraining the model.</p> <p>For information about using labels with your models, see <a href=\"https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/understanding-labeling.html\">Understanding labeling</a>.</p> <p>For information about improving the quality of a model, see <a href=\"https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/best-practices.html\">Best practices with Amazon Lookout for Equipment</a>.</p>"
20322040
}
20332041
}
20342042
},
@@ -2181,6 +2189,10 @@
21812189
"ModelDiagnosticsResultsObject":{
21822190
"shape":"S3Object",
21832191
"documentation":"<p>The Amazon S3 output prefix for where Lookout for Equipment saves the pointwise model diagnostics for the model version.</p>"
2192+
},
2193+
"ModelQuality":{
2194+
"shape":"ModelQuality",
2195+
"documentation":"<p>Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the model quality is poor based on training metrics, the value is <code>POOR_QUALITY_DETECTED</code>. Otherwise, the value is <code>QUALITY_THRESHOLD_MET</code>.</p> <p>If the model is unlabeled, the model quality can't be assessed and the value of <code>ModelQuality</code> is <code>CANNOT_DETERMINE_QUALITY</code>. In this situation, you can get a model quality assessment by adding labels to the input dataset and retraining the model.</p> <p>For information about using labels with your models, see <a href=\"https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/understanding-labeling.html\">Understanding labeling</a>.</p> <p>For information about improving the quality of a model, see <a href=\"https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/best-practices.html\">Best practices with Amazon Lookout for Equipment</a>.</p>"
21842196
}
21852197
}
21862198
},
@@ -3522,6 +3534,14 @@
35223534
"MANUAL"
35233535
]
35243536
},
3537+
"ModelQuality":{
3538+
"type":"string",
3539+
"enum":[
3540+
"QUALITY_THRESHOLD_MET",
3541+
"CANNOT_DETERMINE_QUALITY",
3542+
"POOR_QUALITY_DETECTED"
3543+
]
3544+
},
35253545
"ModelStatus":{
35263546
"type":"string",
35273547
"enum":[
@@ -3590,7 +3610,11 @@
35903610
"shape":"RetrainingSchedulerStatus",
35913611
"documentation":"<p>Indicates the status of the retraining scheduler. </p>"
35923612
},
3593-
"ModelDiagnosticsOutputConfiguration":{"shape":"ModelDiagnosticsOutputConfiguration"}
3613+
"ModelDiagnosticsOutputConfiguration":{"shape":"ModelDiagnosticsOutputConfiguration"},
3614+
"ModelQuality":{
3615+
"shape":"ModelQuality",
3616+
"documentation":"<p>Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the model quality is poor based on training metrics, the value is <code>POOR_QUALITY_DETECTED</code>. Otherwise, the value is <code>QUALITY_THRESHOLD_MET</code>.</p> <p>If the model is unlabeled, the model quality can't be assessed and the value of <code>ModelQuality</code> is <code>CANNOT_DETERMINE_QUALITY</code>. In this situation, you can get a model quality assessment by adding labels to the input dataset and retraining the model.</p> <p>For information about using labels with your models, see <a href=\"https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/understanding-labeling.html\">Understanding labeling</a>.</p> <p>For information about improving the quality of a model, see <a href=\"https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/best-practices.html\">Best practices with Amazon Lookout for Equipment</a>.</p>"
3617+
}
35943618
},
35953619
"documentation":"<p>Provides information about the specified machine learning model, including dataset and model names and ARNs, as well as status. </p>"
35963620
},
@@ -3656,6 +3680,10 @@
36563680
"SourceType":{
36573681
"shape":"ModelVersionSourceType",
36583682
"documentation":"<p>Indicates how this model version was generated.</p>"
3683+
},
3684+
"ModelQuality":{
3685+
"shape":"ModelQuality",
3686+
"documentation":"<p>Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the model quality is poor based on training metrics, the value is <code>POOR_QUALITY_DETECTED</code>. Otherwise, the value is <code>QUALITY_THRESHOLD_MET</code>. </p> <p>If the model is unlabeled, the model quality can't be assessed and the value of <code>ModelQuality</code> is <code>CANNOT_DETERMINE_QUALITY</code>. In this situation, you can get a model quality assessment by adding labels to the input dataset and retraining the model.</p> <p>For information about improving the quality of a model, see <a href=\"https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/best-practices.html\">Best practices with Amazon Lookout for Equipment</a>.</p>"
36593687
}
36603688
},
36613689
"documentation":"<p>Contains information about the specific model version.</p>"

0 commit comments

Comments
 (0)