Class: Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1p2alpha1LabelStats
- Inherits:
-
Object
- Object
- Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1p2alpha1LabelStats
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datalabeling_v1beta1/classes.rb,
lib/google/apis/datalabeling_v1beta1/representations.rb,
lib/google/apis/datalabeling_v1beta1/representations.rb
Overview
Statistics about annotation specs.
Instance Attribute Summary collapse
-
#example_count ⇒ Hash<String,Fixnum>
Map of each annotation spec's example count.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatalabelingV1p2alpha1LabelStats
constructor
A new instance of GoogleCloudDatalabelingV1p2alpha1LabelStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatalabelingV1p2alpha1LabelStats
Returns a new instance of GoogleCloudDatalabelingV1p2alpha1LabelStats.
5914 5915 5916 |
# File 'lib/google/apis/datalabeling_v1beta1/classes.rb', line 5914 def initialize(**args) update!(**args) end |
Instance Attribute Details
#example_count ⇒ Hash<String,Fixnum>
Map of each annotation spec's example count. Key is the annotation spec name
and value is the number of examples for that annotation spec. If the annotated
dataset does not have annotation spec, the map will return a pair where the
key is empty string and value is the total number of annotations.
Corresponds to the JSON property exampleCount
5912 5913 5914 |
# File 'lib/google/apis/datalabeling_v1beta1/classes.rb', line 5912 def example_count @example_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5919 5920 5921 |
# File 'lib/google/apis/datalabeling_v1beta1/classes.rb', line 5919 def update!(**args) @example_count = args[:example_count] if args.key?(:example_count) end |