Search code examples
wekaknn

What are the other options to use in the nearest neighbor search algorithm in weka?


What are our other options to use in the nearest neighbour search algorithm in weka rather than default: weka.core.neighboursearch.LinearNNSearch?


Solution

  • Looking at Weka's documentation page you can see that they have:

     weka.core.neighboursearch
     Classes:
     - BallTree
     - CoverTree
     - KDTree
     - LinearNNSearch
     - NearestNeighbourSearch
     - PerformanceStats
     - TreePerformanceStats
    

    Check out the documentation for further details: Package weka.core.neighboursearch