Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Starts the active learning workflow for your machine learning transform to improve the transform's quality by generating label sets and adding labels.
When the StartMLLabelingSetGenerationTaskRun
finishes, Glue will have
generated a "labeling set" or a set of questions for humans to answer.
In the case of the FindMatches
transform, these questions are of the
form, “What is the correct way to group these rows together into groups
composed entirely of matching records?”
After the labeling process is finished, you can upload your labels with
a call to StartImportLabelsTaskRun
. After StartImportLabelsTaskRun
finishes, all future runs of the machine learning transform will use the
new and improved labels and perform a higher-quality transformation.
Synopsis
- data StartMLLabelingSetGenerationTaskRun = StartMLLabelingSetGenerationTaskRun' {
- transformId :: Text
- outputS3Path :: Text
- newStartMLLabelingSetGenerationTaskRun :: Text -> Text -> StartMLLabelingSetGenerationTaskRun
- startMLLabelingSetGenerationTaskRun_transformId :: Lens' StartMLLabelingSetGenerationTaskRun Text
- startMLLabelingSetGenerationTaskRun_outputS3Path :: Lens' StartMLLabelingSetGenerationTaskRun Text
- data StartMLLabelingSetGenerationTaskRunResponse = StartMLLabelingSetGenerationTaskRunResponse' {
- taskRunId :: Maybe Text
- httpStatus :: Int
- newStartMLLabelingSetGenerationTaskRunResponse :: Int -> StartMLLabelingSetGenerationTaskRunResponse
- startMLLabelingSetGenerationTaskRunResponse_taskRunId :: Lens' StartMLLabelingSetGenerationTaskRunResponse (Maybe Text)
- startMLLabelingSetGenerationTaskRunResponse_httpStatus :: Lens' StartMLLabelingSetGenerationTaskRunResponse Int
Creating a Request
data StartMLLabelingSetGenerationTaskRun Source #
See: newStartMLLabelingSetGenerationTaskRun
smart constructor.
StartMLLabelingSetGenerationTaskRun' | |
|
Instances
newStartMLLabelingSetGenerationTaskRun Source #
Create a value of StartMLLabelingSetGenerationTaskRun
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:transformId:StartMLLabelingSetGenerationTaskRun'
, startMLLabelingSetGenerationTaskRun_transformId
- The unique identifier of the machine learning transform.
$sel:outputS3Path:StartMLLabelingSetGenerationTaskRun'
, startMLLabelingSetGenerationTaskRun_outputS3Path
- The Amazon Simple Storage Service (Amazon S3) path where you generate
the labeling set.
Request Lenses
startMLLabelingSetGenerationTaskRun_transformId :: Lens' StartMLLabelingSetGenerationTaskRun Text Source #
The unique identifier of the machine learning transform.
startMLLabelingSetGenerationTaskRun_outputS3Path :: Lens' StartMLLabelingSetGenerationTaskRun Text Source #
The Amazon Simple Storage Service (Amazon S3) path where you generate the labeling set.
Destructuring the Response
data StartMLLabelingSetGenerationTaskRunResponse Source #
See: newStartMLLabelingSetGenerationTaskRunResponse
smart constructor.
StartMLLabelingSetGenerationTaskRunResponse' | |
|
Instances
newStartMLLabelingSetGenerationTaskRunResponse Source #
:: Int |
|
-> StartMLLabelingSetGenerationTaskRunResponse |
Create a value of StartMLLabelingSetGenerationTaskRunResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:taskRunId:StartMLLabelingSetGenerationTaskRunResponse'
, startMLLabelingSetGenerationTaskRunResponse_taskRunId
- The unique run identifier that is associated with this task run.
$sel:httpStatus:StartMLLabelingSetGenerationTaskRunResponse'
, startMLLabelingSetGenerationTaskRunResponse_httpStatus
- The response's http status code.
Response Lenses
startMLLabelingSetGenerationTaskRunResponse_taskRunId :: Lens' StartMLLabelingSetGenerationTaskRunResponse (Maybe Text) Source #
The unique run identifier that is associated with this task run.
startMLLabelingSetGenerationTaskRunResponse_httpStatus :: Lens' StartMLLabelingSetGenerationTaskRunResponse Int Source #
The response's http status code.