Interface IKnnMethod
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface IKnnMethod
Properties
| Edit this page View SourceEngine
The approximate k-NN library to use for indexing and search.
Declaration
[DataMember(Name = "engine")]
string Engine { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
The identifier for the nearest neighbor method.
Declaration
[DataMember(Name = "name")]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Parameters
The parameters used for the nearest neighbor method.
Declaration
[DataMember(Name = "parameters")]
IDictionary<string, object> Parameters { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, object> |
SpaceType
The vector space used to calculate the distance between vectors.
Declaration
[DataMember(Name = "space_type")]
string SpaceType { get; set; }
Property Value
Type | Description |
---|---|
string |