Class: Google::Apis::LanguageV2::XpsResponseExplanationMetadataInputMetadata
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV2::XpsResponseExplanationMetadataInputMetadata
- 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
-
#input_tensor_name ⇒ String
Name of the input tensor for this model.
-
#modality ⇒ String
Modality of the feature.
-
#visualization_config ⇒ Google::Apis::LanguageV2::XpsVisualization
Visualization configurations for image explanation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ XpsResponseExplanationMetadataInputMetadata
constructor
A new instance of XpsResponseExplanationMetadataInputMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_name ⇒ String
Name of the input tensor for this model. Only needed in train response.
Corresponds to the JSON property inputTensorName
2999 3000 3001 |
# File 'lib/google/apis/language_v2/classes.rb', line 2999 def input_tensor_name @input_tensor_name end |
#modality ⇒ String
Modality of the feature. Valid values are: numeric, image. Defaults to numeric.
Corresponds to the JSON property modality
3004 3005 3006 |
# File 'lib/google/apis/language_v2/classes.rb', line 3004 def modality @modality end |
#visualization_config ⇒ Google::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 |