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.



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

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)


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

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)


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

def query_type
  @query_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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