Class: Google::Apis::LanguageV2::XpsResponseExplanationMetadataInputMetadata

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

Metadata of the input of a feature.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsResponseExplanationMetadataInputMetadata

Returns a new instance of XpsResponseExplanationMetadataInputMetadata.



3011
3012
3013
# File 'lib/google/apis/language_v2/classes.rb', line 3011

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

Instance Attribute Details

#input_tensor_nameString

Name of the input tensor for this model. Only needed in train response. Corresponds to the JSON property inputTensorName

Returns:

  • (String)


2999
3000
3001
# File 'lib/google/apis/language_v2/classes.rb', line 2999

def input_tensor_name
  @input_tensor_name
end

#modalityString

Modality of the feature. Valid values are: numeric, image. Defaults to numeric. Corresponds to the JSON property modality

Returns:

  • (String)


3004
3005
3006
# File 'lib/google/apis/language_v2/classes.rb', line 3004

def modality
  @modality
end

#visualization_configGoogle::Apis::LanguageV2::XpsVisualization

Visualization configurations for image explanation. Corresponds to the JSON property visualizationConfig



3009
3010
3011
# File 'lib/google/apis/language_v2/classes.rb', line 3009

def visualization_config
  @visualization_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3016
3017
3018
3019
3020
# File 'lib/google/apis/language_v2/classes.rb', line 3016

def update!(**args)
  @input_tensor_name = args[:input_tensor_name] if args.key?(:input_tensor_name)
  @modality = args[:modality] if args.key?(:modality)
  @visualization_config = args[:visualization_config] if args.key?(:visualization_config)
end