... | @@ -5,13 +5,13 @@ An implementation of two strategies for furthest neighbor search. This can be us |
... | @@ -5,13 +5,13 @@ An implementation of two strategies for furthest neighbor search. This can be us |
|
# Available Predicates
|
|
# Available Predicates
|
|
|
|
|
|
* [initDrusillaModelNoTrain/2](/PrologMethods/Geometry/approx_kfn#initdrusillamodelnotrain2)
|
|
* [initDrusillaModelNoTrain/2](/PrologMethods/Geometry/approx_kfn#initdrusillamodelnotrain2)
|
|
* [initDrusillaModelWithTrain/5](/PrologMethods/Geometry/approx_kfn#initdrusillamodelwithtrain5)
|
|
* [initDrusillaModelWithTrain/4](/PrologMethods/Geometry/approx_kfn#initdrusillamodelwithtrain4)
|
|
* [searchDrusilla/10](/PrologMethods/Geometry/approx_kfn#searchdrusilla10)
|
|
* [searchDrusilla/7](/PrologMethods/Geometry/approx_kfn#searchdrusilla7)
|
|
* [trainDrusilla/5](/PrologMethods/Geometry/approx_kfn#traindrusilla5)
|
|
* [trainDrusilla/4](/PrologMethods/Geometry/approx_kfn#traindrusilla4)
|
|
* [initQDAFNModelNoTrain/2](/PrologMethods/Geometry/approx_kfn#initqdafnmodelnotrain2)
|
|
* [initQDAFNModelNoTrain/2](/PrologMethods/Geometry/approx_kfn#initqdafnmodelnotrain2)
|
|
* [initQDAFNModelWithTrain/5](/PrologMethods/Geometry/approx_kfn#initqdafnmodelwithtrain5)
|
|
* [initQDAFNModelWithTrain/4](/PrologMethods/Geometry/approx_kfn#initqdafnmodelwithtrain4)
|
|
* [searchQDAFN/10](/PrologMethods/Geometry/approx_kfn#searchqdafn10)
|
|
* [searchQDAFN/7](/PrologMethods/Geometry/approx_kfn#searchqdafn7)
|
|
* [trainQDAFN/5](/PrologMethods/Geometry/approx_kfn#trainqdafn5)
|
|
* [trainQDAFN/4](/PrologMethods/Geometry/approx_kfn#trainqdafn4)
|
|
|
|
|
|
---
|
|
---
|
|
|
|
|
... | @@ -37,7 +37,7 @@ initDrusillaModelNoTrain( +integer, +integer). |
... | @@ -37,7 +37,7 @@ initDrusillaModelNoTrain( +integer, +integer). |
|
|
|
|
|
---
|
|
---
|
|
|
|
|
|
## **_initDrusillaModelWithTrain/5_**
|
|
## **_initDrusillaModelWithTrain/4_**
|
|
|
|
|
|
Initiates the DrusillaSearch Model and trains it with the given reference Set.
|
|
Initiates the DrusillaSearch Model and trains it with the given reference Set.
|
|
|
|
|
... | @@ -59,7 +59,7 @@ initDrusillaModelWithTrain( +pointer(float_array), +integer, +integer, |
... | @@ -59,7 +59,7 @@ initDrusillaModelWithTrain( +pointer(float_array), +integer, +integer, |
|
|
|
|
|
---
|
|
---
|
|
|
|
|
|
## **_searchDrusilla/10_**
|
|
## **_searchDrusilla/7_**
|
|
|
|
|
|
Run Search on the given Queryset with the Drusilla Search Policy.
|
|
Run Search on the given Queryset with the Drusilla Search Policy.
|
|
|
|
|
... | @@ -82,7 +82,7 @@ searchDrusilla( +pointer(float_array), +integer, +integer, |
... | @@ -82,7 +82,7 @@ searchDrusilla( +pointer(float_array), +integer, +integer, |
|
|
|
|
|
---
|
|
---
|
|
|
|
|
|
## **_trainDrusilla/5_**
|
|
## **_trainDrusilla/4_**
|
|
|
|
|
|
Trains the DrusillaSearch Model with the given reference Set.
|
|
Trains the DrusillaSearch Model with the given reference Set.
|
|
|
|
|
... | @@ -122,7 +122,7 @@ initQDAFNModelNoTrain( +integer, +integer). |
... | @@ -122,7 +122,7 @@ initQDAFNModelNoTrain( +integer, +integer). |
|
|
|
|
|
---
|
|
---
|
|
|
|
|
|
## **_initQDAFNModelWithTrain/5_**
|
|
## **_initQDAFNModelWithTrain/4_**
|
|
|
|
|
|
Initiates the QDAFNSearch Model and trains it with the given reference Set.
|
|
Initiates the QDAFNSearch Model and trains it with the given reference Set.
|
|
|
|
|
... | @@ -144,7 +144,7 @@ initQDAFNModelWithTrain( +pointer(float_array), +integer, +integer, |
... | @@ -144,7 +144,7 @@ initQDAFNModelWithTrain( +pointer(float_array), +integer, +integer, |
|
|
|
|
|
---
|
|
---
|
|
|
|
|
|
## **_searchQDAFN/10_**
|
|
## **_searchQDAFN/7_**
|
|
|
|
|
|
Run Search on the given Queryset with the QDAFN Search Policy.
|
|
Run Search on the given Queryset with the QDAFN Search Policy.
|
|
|
|
|
... | @@ -167,7 +167,7 @@ searchQDAFN( +pointer(float_array), +integer, +integer, |
... | @@ -167,7 +167,7 @@ searchQDAFN( +pointer(float_array), +integer, +integer, |
|
|
|
|
|
---
|
|
---
|
|
|
|
|
|
## **_trainQDAFN/5_**
|
|
## **_trainQDAFN/4_**
|
|
|
|
|
|
Trains the QDAFNSearch Model with the given reference Set.
|
|
Trains the QDAFNSearch Model with the given reference Set.
|
|
|
|
|
... | | ... | |