neighbor_search.hpp
Go to the documentation of this file.
1 
13 #ifndef MLPACK_METHODS_NEIGHBOR_SEARCH_NEIGHBOR_SEARCH_HPP
14 #define MLPACK_METHODS_NEIGHBOR_SEARCH_NEIGHBOR_SEARCH_HPP
15 
16 #include <mlpack/prereqs.hpp>
17 #include <vector>
18 #include <string>
19 
23 
24 #include "neighbor_search_stat.hpp"
27 
28 namespace mlpack {
29 // Neighbor-search routines. These include all-nearest-neighbors and
30 // all-furthest-neighbors searches.
31 namespace neighbor {
32 
33 // Forward declaration.
34 template<typename SortPolicy>
36 
39 {
44 };
45 
69 template<typename SortPolicy = NearestNeighborSort,
70  typename MetricType = mlpack::metric::EuclideanDistance,
71  typename MatType = arma::mat,
72  template<typename TreeMetricType,
73  typename TreeStatType,
74  typename TreeMatType> class TreeType = tree::KDTree,
75  template<typename RuleType> class DualTreeTraversalType =
76  TreeType<MetricType,
78  MatType>::template DualTreeTraverser,
79  template<typename RuleType> class SingleTreeTraversalType =
80  TreeType<MetricType,
81  NeighborSearchStat<SortPolicy>,
82  MatType>::template SingleTreeTraverser>
84 {
85  public:
87  typedef TreeType<MetricType, NeighborSearchStat<SortPolicy>, MatType> Tree;
88 
105  NeighborSearch(MatType referenceSet,
106  const NeighborSearchMode mode = DUAL_TREE_MODE,
107  const double epsilon = 0,
108  const MetricType metric = MetricType());
109 
134  NeighborSearch(Tree referenceTree,
135  const NeighborSearchMode mode = DUAL_TREE_MODE,
136  const double epsilon = 0,
137  const MetricType metric = MetricType());
138 
149  const double epsilon = 0,
150  const MetricType metric = MetricType());
151 
158  NeighborSearch(const NeighborSearch& other);
159 
167 
173  NeighborSearch& operator=(const NeighborSearch& other);
174 
181 
186  ~NeighborSearch();
187 
196  void Train(const MatType& referenceSet);
197 
206  void Train(MatType&& referenceSet);
207 
216  void Train(const Tree& referenceTree);
217 
225  void Train(Tree&& referenceTree);
226 
244  void Search(const MatType& querySet,
245  const size_t k,
246  arma::Mat<size_t>& neighbors,
247  arma::mat& distances);
248 
269  void Search(Tree& queryTree,
270  const size_t k,
271  arma::Mat<size_t>& neighbors,
272  arma::mat& distances,
273  bool sameSet = false);
274 
289  void Search(const size_t k,
290  arma::Mat<size_t>& neighbors,
291  arma::mat& distances);
292 
308  static double EffectiveError(arma::mat& foundDistances,
309  arma::mat& realDistances);
310 
322  static double Recall(arma::Mat<size_t>& foundNeighbors,
323  arma::Mat<size_t>& realNeighbors);
324 
327  size_t BaseCases() const { return baseCases; }
328 
330  size_t Scores() const { return scores; }
331 
333  NeighborSearchMode SearchMode() const { return searchMode; }
335  NeighborSearchMode& SearchMode() { return searchMode; }
336 
338  double Epsilon() const { return epsilon; }
340  double& Epsilon() { return epsilon; }
341 
343  const MatType& ReferenceSet() const { return *referenceSet; }
344 
346  const Tree& ReferenceTree() const { return *referenceTree; }
348  Tree& ReferenceTree() { return *referenceTree; }
349 
351  template<typename Archive>
352  void serialize(Archive& ar, const unsigned int /* version */);
353 
354  private:
356  std::vector<size_t> oldFromNewReferences;
358  Tree* referenceTree;
360  const MatType* referenceSet;
361 
363  bool treeOwner;
365  bool setOwner;
366 
368  NeighborSearchMode searchMode;
370  double epsilon;
371 
373  MetricType metric;
374 
376  size_t baseCases;
378  size_t scores;
379 
382  bool treeNeedsReset;
383 
385  template<typename SortPol>
386  friend class TrainVisitor;
387 }; // class NeighborSearch
388 
389 } // namespace neighbor
390 } // namespace mlpack
391 
392 // Include implementation.
393 #include "neighbor_search_impl.hpp"
394 
395 // Include convenience typedefs.
396 #include "typedef.hpp"
397 
398 #endif
const MatType & ReferenceSet() const
Access the reference dataset.
double Epsilon() const
Access the relative error to be considered in approximate search.
size_t Scores() const
Return the number of node combination scores during the last search.
const Tree & ReferenceTree() const
Access the reference tree.
.hpp
Definition: add_to_po.hpp:21
Extra data for each node in the tree.
The core includes that mlpack expects; standard C++ includes and Armadillo.
NeighborSearch(MatType referenceSet, const NeighborSearchMode mode=DUAL_TREE_MODE, const double epsilon=0, const MetricType metric=MetricType())
Initialize the NeighborSearch object, passing a reference dataset (this is the dataset which is searc...
The NeighborSearch class is a template class for performing distance-based neighbor searches...
void Train(const MatType &referenceSet)
Set the reference set to a new reference set, and build a tree if necessary.
static double EffectiveError(arma::mat &foundDistances, arma::mat &realDistances)
Calculate the average relative error (effective error) between the distances calculated and the true ...
double & Epsilon()
Modify the relative error to be considered in approximate search.
Tree & ReferenceTree()
Modify the reference tree.
static double Recall(arma::Mat< size_t > &foundNeighbors, arma::Mat< size_t > &realNeighbors)
Calculate the recall (% of neighbors found) given the list of found neighbors and the true set of nei...
NeighborSearchMode & SearchMode()
Modify the search mode.
This class implements the necessary methods for the SortPolicy template parameter of the NeighborSear...
NeighborSearchMode SearchMode() const
Access the search mode.
NeighborSearch & operator=(const NeighborSearch &other)
Copy the given NeighborSearch object.
TreeType< MetricType, NeighborSearchStat< SortPolicy >, MatType > Tree
Convenience typedef.
TrainVisitor sets the reference set to a new reference set on the given NSType.
void Search(const MatType &querySet, const size_t k, arma::Mat< size_t > &neighbors, arma::mat &distances)
For each point in the query set, compute the nearest neighbors and store the output in the given matr...
size_t BaseCases() const
Return the total number of base case evaluations performed during the last search.
void serialize(Archive &ar, const unsigned int)
Serialize the NeighborSearch model.
BinarySpaceTree< MetricType, StatisticType, MatType, bound::HRectBound, MidpointSplit > KDTree
The standard midpoint-split kd-tree.
Definition: typedef.hpp:63
LMetric< 2, true > EuclideanDistance
The Euclidean (L2) distance.
Definition: lmetric.hpp:112
NeighborSearchMode
NeighborSearchMode represents the different neighbor search modes available.
~NeighborSearch()
Delete the NeighborSearch object.