Class: Aws::Rekognition::Types::DatasetStats
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Rekognition::Types::DatasetStats
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rekognition/types.rb
 
Overview
Provides statistics about a dataset. For more information, see DescribeDataset.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #error_entries  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of entries that contain at least one error.
 - 
  
    
      #labeled_entries  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of images in the dataset that have labels.
 - 
  
    
      #total_entries  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of images in the dataset.
 - 
  
    
      #total_labels  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of labels declared in the dataset.
 
Instance Attribute Details
#error_entries ⇒ Integer
The total number of entries that contain at least one error.
      1529 1530 1531 1532 1533 1534 1535 1536  | 
    
      # File 'lib/aws-sdk-rekognition/types.rb', line 1529 class DatasetStats < Struct.new( :labeled_entries, :total_entries, :total_labels, :error_entries) SENSITIVE = [] include Aws::Structure end  | 
  
#labeled_entries ⇒ Integer
The total number of images in the dataset that have labels.
      1529 1530 1531 1532 1533 1534 1535 1536  | 
    
      # File 'lib/aws-sdk-rekognition/types.rb', line 1529 class DatasetStats < Struct.new( :labeled_entries, :total_entries, :total_labels, :error_entries) SENSITIVE = [] include Aws::Structure end  | 
  
#total_entries ⇒ Integer
The total number of images in the dataset.
      1529 1530 1531 1532 1533 1534 1535 1536  | 
    
      # File 'lib/aws-sdk-rekognition/types.rb', line 1529 class DatasetStats < Struct.new( :labeled_entries, :total_entries, :total_labels, :error_entries) SENSITIVE = [] include Aws::Structure end  | 
  
#total_labels ⇒ Integer
The total number of labels declared in the dataset.
      1529 1530 1531 1532 1533 1534 1535 1536  | 
    
      # File 'lib/aws-sdk-rekognition/types.rb', line 1529 class DatasetStats < Struct.new( :labeled_entries, :total_entries, :total_labels, :error_entries) SENSITIVE = [] include Aws::Structure end  |