Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Examples

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

Overview

Example-based explainability that returns the nearest neighbors from the provided dataset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1Examples

Returns a new instance of GoogleCloudAiplatformV1Examples.



6789
6790
6791
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6789

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

Instance Attribute Details

#example_gcs_sourceGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1ExamplesExampleGcsSource

The Cloud Storage input instances. Corresponds to the JSON property exampleGcsSource



6769
6770
6771
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6769

def example_gcs_source
  @example_gcs_source
end

#nearest_neighbor_search_configObject

The full configuration for the generated index, the semantics are the same as metadata and should match NearestNeighborSearchConfig. Corresponds to the JSON property nearestNeighborSearchConfig

Returns:

  • (Object)


6777
6778
6779
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6777

def nearest_neighbor_search_config
  @nearest_neighbor_search_config
end

#neighbor_countFixnum

The number of neighbors to return when querying for examples. Corresponds to the JSON property neighborCount

Returns:

  • (Fixnum)


6782
6783
6784
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6782

def neighbor_count
  @neighbor_count
end

#presetsGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1Presets

Preset configuration for example-based explanations Corresponds to the JSON property presets



6787
6788
6789
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6787

def presets
  @presets
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6794
6795
6796
6797
6798
6799
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6794

def update!(**args)
  @example_gcs_source = args[:example_gcs_source] if args.key?(:example_gcs_source)
  @nearest_neighbor_search_config = args[:nearest_neighbor_search_config] if args.key?(:nearest_neighbor_search_config)
  @neighbor_count = args[:neighbor_count] if args.key?(:neighbor_count)
  @presets = args[:presets] if args.key?(:presets)
end