Class: Google::Apis::LanguageV2::XpsVisionErrorAnalysisConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/language_v2/classes.rb,
lib/google/apis/language_v2/representations.rb,
lib/google/apis/language_v2/representations.rb

Overview

The vision model error analysis configuration. Next tag: 3

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsVisionErrorAnalysisConfig

Returns a new instance of XpsVisionErrorAnalysisConfig.



5033
5034
5035
# File 'lib/google/apis/language_v2/classes.rb', line 5033

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#example_countFixnum

The number of query examples in error analysis. Corresponds to the JSON property exampleCount

Returns:

  • (Fixnum)


5025
5026
5027
# File 'lib/google/apis/language_v2/classes.rb', line 5025

def example_count
  @example_count
end

#query_typeString

The query type used in retrieval. The enum values are frozen in the foreseeable future. Corresponds to the JSON property queryType

Returns:

  • (String)


5031
5032
5033
# File 'lib/google/apis/language_v2/classes.rb', line 5031

def query_type
  @query_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5038
5039
5040
5041
# File 'lib/google/apis/language_v2/classes.rb', line 5038

def update!(**args)
  @example_count = args[:example_count] if args.key?(:example_count)
  @query_type = args[:query_type] if args.key?(:query_type)
end