Class GoogleCloudAiplatformV1beta1IndexDatapoint
A datapoint of Index.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1beta1.Data
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class GoogleCloudAiplatformV1beta1IndexDatapoint : IDirectResponseSchema
Properties
CrowdingTag
Optional. CrowdingTag of the datapoint, the number of neighbors to return in each crowding can be configured during query.
Declaration
[JsonProperty("crowdingTag")]
public virtual GoogleCloudAiplatformV1beta1IndexDatapointCrowdingTag CrowdingTag { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1beta1IndexDatapointCrowdingTag |
DatapointId
Required. Unique identifier of the datapoint.
Declaration
[JsonProperty("datapointId")]
public virtual string DatapointId { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FeatureVector
Required. Feature embedding vector for dense index. An array of numbers with the length of [NearestNeighborSearchConfig.dimensions].
Declaration
[JsonProperty("featureVector")]
public virtual IList<float?> FeatureVector { get; set; }
Property Value
Type | Description |
---|---|
IList<float?> |
NumericRestricts
Optional. List of Restrict of the datapoint, used to perform "restricted searches" where boolean rule are used to filter the subset of the database eligible for matching. This uses numeric comparisons.
Declaration
[JsonProperty("numericRestricts")]
public virtual IList<GoogleCloudAiplatformV1beta1IndexDatapointNumericRestriction> NumericRestricts { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudAiplatformV1beta1IndexDatapointNumericRestriction> |
Restricts
Optional. List of Restrict of the datapoint, used to perform "restricted searches" where boolean rule are used to filter the subset of the database eligible for matching. This uses categorical tokens. See: https://cloud.google.com/vertex-ai/docs/matching-engine/filtering
Declaration
[JsonProperty("restricts")]
public virtual IList<GoogleCloudAiplatformV1beta1IndexDatapointRestriction> Restricts { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudAiplatformV1beta1IndexDatapointRestriction> |
SparseEmbedding
Optional. Feature embedding vector for sparse index.
Declaration
[JsonProperty("sparseEmbedding")]
public virtual GoogleCloudAiplatformV1beta1IndexDatapointSparseEmbedding SparseEmbedding { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1beta1IndexDatapointSparseEmbedding |