Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FindNeighborsResponseNearestNeighbors

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

Nearest neighbors for one query.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1FindNeighborsResponseNearestNeighbors

Returns a new instance of GoogleCloudAiplatformV1FindNeighborsResponseNearestNeighbors.



10131
10132
10133
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10131

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

Instance Attribute Details

#idString

The ID of the query datapoint. Corresponds to the JSON property id

Returns:

  • (String)


10124
10125
10126
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10124

def id
  @id
end

#neighborsArray<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FindNeighborsResponseNeighbor>

All its neighbors. Corresponds to the JSON property neighbors



10129
10130
10131
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10129

def neighbors
  @neighbors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10136
10137
10138
10139
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10136

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