Interface DatasetStats.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DatasetStats.Builder,DatasetStats>,SdkBuilder<DatasetStats.Builder,DatasetStats>,SdkPojo
- Enclosing class:
- DatasetStats
public static interface DatasetStats.Builder extends SdkPojo, CopyableBuilder<DatasetStats.Builder,DatasetStats>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatasetStats.BuildererrorEntries(Integer errorEntries)The total number of entries that contain at least one error.DatasetStats.BuilderlabeledEntries(Integer labeledEntries)The total number of images in the dataset that have labels.DatasetStats.BuildertotalEntries(Integer totalEntries)The total number of images in the dataset.DatasetStats.BuildertotalLabels(Integer totalLabels)The total number of labels declared in the dataset.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
labeledEntries
DatasetStats.Builder labeledEntries(Integer labeledEntries)
The total number of images in the dataset that have labels.
- Parameters:
labeledEntries- The total number of images in the dataset that have labels.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalEntries
DatasetStats.Builder totalEntries(Integer totalEntries)
The total number of images in the dataset.
- Parameters:
totalEntries- The total number of images in the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalLabels
DatasetStats.Builder totalLabels(Integer totalLabels)
The total number of labels declared in the dataset.
- Parameters:
totalLabels- The total number of labels declared in the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorEntries
DatasetStats.Builder errorEntries(Integer errorEntries)
The total number of entries that contain at least one error.
- Parameters:
errorEntries- The total number of entries that contain at least one error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-