Interface TestingDataResult.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TestingDataResult.Builder,
,TestingDataResult> SdkBuilder<TestingDataResult.Builder,
,TestingDataResult> SdkPojo
- Enclosing class:
TestingDataResult
-
Method Summary
Modifier and TypeMethodDescriptiondefault TestingDataResult.Builder
input
(Consumer<TestingData.Builder> input) The testing dataset that was supplied for training.input
(TestingData input) The testing dataset that was supplied for training.default TestingDataResult.Builder
output
(Consumer<TestingData.Builder> output) The subset of the dataset that was actually tested.output
(TestingData output) The subset of the dataset that was actually tested.default TestingDataResult.Builder
validation
(Consumer<ValidationData.Builder> validation) The location of the data validation manifest.validation
(ValidationData validation) The location of the data validation manifest.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
input
The testing dataset that was supplied for training.
- Parameters:
input
- The testing dataset that was supplied for training.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
input
The testing dataset that was supplied for training.
This is a convenience method that creates an instance of theTestingData.Builder
avoiding the need to create one manually viaTestingData.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toinput(TestingData)
.- Parameters:
input
- a consumer that will call methods onTestingData.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
output
The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.
- Parameters:
output
- The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
output
The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.
This is a convenience method that creates an instance of theTestingData.Builder
avoiding the need to create one manually viaTestingData.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tooutput(TestingData)
.- Parameters:
output
- a consumer that will call methods onTestingData.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
validation
The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.
- Parameters:
validation
- The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validation
The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.
This is a convenience method that creates an instance of theValidationData.Builder
avoiding the need to create one manually viaValidationData.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tovalidation(ValidationData)
.- Parameters:
validation
- a consumer that will call methods onValidationData.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-