Package | Description |
---|---|
messif.objects.classification.impl |
Provides implementations for common classification tasks.
|
messif.operations |
Generic classes for data manipulatioin and querying operations.
|
messif.operations.query |
Implementation of data querying operations.
|
Constructor and Description |
---|
ApproxKNNOperationClassifier(Classifier<? super RankingQueryOperation,C> classifier,
int k,
int localSearchParam,
Approximate.LocalSearchType localSearchType,
float radiusGuaranteed,
Algorithm algorithm,
java.lang.String executedOperationParameter)
Creates a new kNN classifier.
|
Modifier and Type | Method and Description |
---|---|
Approximate.LocalSearchType |
Approximate.getLocalSearchType()
Returns the
type of the local approximation parameter used. |
static Approximate.LocalSearchType |
Approximate.LocalSearchType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Approximate.LocalSearchType[] |
Approximate.LocalSearchType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
Approximate.setLocalSearchType(Approximate.LocalSearchType localSearchType)
Setter for the type of the local search parameter.
|
Modifier and Type | Field and Description |
---|---|
protected Approximate.LocalSearchType |
ApproxKNNQueryOperation.localSearchType
Type of the local approximation parameter used.
|
protected Approximate.LocalSearchType |
ApproxRangeQueryOperation.localSearchType
Type of the local approximation parameter used.
|
Modifier and Type | Method and Description |
---|---|
Approximate.LocalSearchType |
ApproxKNNQueryOperation.getLocalSearchType() |
Approximate.LocalSearchType |
ApproxRangeQueryOperation.getLocalSearchType() |
Modifier and Type | Method and Description |
---|---|
void |
ApproxKNNQueryOperation.setLocalSearchType(Approximate.LocalSearchType localSearchType) |
void |
ApproxRangeQueryOperation.setLocalSearchType(Approximate.LocalSearchType localSearchType) |
Constructor and Description |
---|
ApproxKNNQueryOperation(LocalAbstractObject queryObject,
int k,
AnswerType answerType,
int localSearchParam,
Approximate.LocalSearchType localSearchType,
float radiusGuaranteed)
Creates a new instance of ApproxKNNQueryOperation for a given query object,
maximal number of objects to return and parameters that control the approximation.
|
ApproxKNNQueryOperation(LocalAbstractObject queryObject,
int k,
boolean storeMetaDistances,
AnswerType answerType,
int localSearchParam,
Approximate.LocalSearchType localSearchType,
float radiusGuaranteed)
Creates a new instance of ApproxKNNQueryOperation for a given query object,
maximal number of objects to return and parameters that control the approximation.
|
ApproxKNNQueryOperation(LocalAbstractObject queryObject,
int k,
boolean storeMetaDistances,
AnswerType answerType,
int localSearchParam,
Approximate.LocalSearchType localSearchType,
float radiusGuaranteed,
RankedSortedCollection answerCollection)
Creates a new instance of ApproxKNNQueryOperation for a given query object,
maximal number of objects to return and parameters that control the approximation.
|
ApproxKNNQueryOperation(LocalAbstractObject queryObject,
int k,
int localSearchParam,
Approximate.LocalSearchType localSearchType,
float radiusGuaranteed)
Creates a new instance of ApproxKNNQueryOperation for a given query object,
maximal number of objects to return and parameters that control the approximation.
|
ApproxRangeQueryOperation(LocalAbstractObject queryObject,
float r,
AnswerType answerType,
int localSearchParam,
Approximate.LocalSearchType localSearchType,
float radiusGuaranteed)
Creates a new instance of ApproxRangeQueryOperation for a given query object,
radius and parameters that control the approximation.
|
ApproxRangeQueryOperation(LocalAbstractObject queryObject,
float r,
int maxAnswerSize,
AnswerType answerType,
int localSearchParam,
Approximate.LocalSearchType localSearchType,
float radiusGuaranteed)
Creates a new instance of ApproxRangeQueryOperation for a given query object,
radius and parameters that control the approximation.
|
ApproxRangeQueryOperation(LocalAbstractObject queryObject,
float r,
int maxAnswerSize,
AnswerType answerType,
int localSearchParam,
Approximate.LocalSearchType localSearchType,
float radiusGuaranteed,
RankedSortedCollection answerCollection)
Creates a new instance of ApproxRangeQueryOperation for a given query object,
radius and parameters that control the approximation.
|
ApproxRangeQueryOperation(LocalAbstractObject queryObject,
float r,
int localSearchParam,
Approximate.LocalSearchType localSearchType,
float radiusGuaranteed)
Creates a new instance of ApproxRangeQueryOperation for a given query object,
radius and parameters that control the approximation.
|