Class: Aws::LookoutforVision::Types::DatasetImageStats
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutforVision::Types::DatasetImageStats
- Defined in:
- gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb
Overview
Statistics about the images in a dataset.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#anomaly ⇒ Integer
the total number of images labeled as an anomaly.
-
#labeled ⇒ Integer
The total number of labeled images.
-
#normal ⇒ Integer
The total number of images labeled as normal.
-
#total ⇒ Integer
The total number of images in the dataset.
Instance Attribute Details
#anomaly ⇒ Integer
the total number of images labeled as an anomaly.
342 343 344 345 346 347 348 349 |
# File 'gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb', line 342 class DatasetImageStats < Struct.new( :total, :labeled, :normal, :anomaly) SENSITIVE = [] include Aws::Structure end |
#labeled ⇒ Integer
The total number of labeled images.
342 343 344 345 346 347 348 349 |
# File 'gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb', line 342 class DatasetImageStats < Struct.new( :total, :labeled, :normal, :anomaly) SENSITIVE = [] include Aws::Structure end |
#normal ⇒ Integer
The total number of images labeled as normal.
342 343 344 345 346 347 348 349 |
# File 'gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb', line 342 class DatasetImageStats < Struct.new( :total, :labeled, :normal, :anomaly) SENSITIVE = [] include Aws::Structure end |
#total ⇒ Integer
The total number of images in the dataset.
342 343 344 345 346 347 348 349 |
# File 'gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb', line 342 class DatasetImageStats < Struct.new( :total, :labeled, :normal, :anomaly) SENSITIVE = [] include Aws::Structure end |