123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- /**
- * @file VCNearestNeighbour.cpp
- * @brief Simple Nearest Neighbour Implementation
- * @author Erik Rodner
- * @date 10/25/2007
- */
- #include <iostream>
- #include <queue>
- #include "vislearning/classifier/vclassifier/VCNearestNeighbour.h"
- using namespace OBJREC;
- using namespace std;
- using namespace NICE;
- #undef DEBUG_VCN
- VCNearestNeighbour::VCNearestNeighbour ( const Config *_conf, NICE::VectorDistance<double> *_distancefunc )
- : VecClassifier ( _conf ), distancefunc (_distancefunc)
- {
- K = _conf->gI("VCNearestNeighbour", "K", 1 );
- if ( _distancefunc == NULL )
- distancefunc = new EuclidianDistance<double>();
- }
- VCNearestNeighbour::VCNearestNeighbour ( const VCNearestNeighbour & src ) : VecClassifier()
- {
- if ( src.teachSet.size() )
- fthrow(Exception, "It is not yet possible to clone an already trained nearest neighbour classifier.");
- distancefunc = src.distancefunc;
- K = src.K;
- maxClassNo = src.maxClassNo;
- }
- VCNearestNeighbour::~VCNearestNeighbour()
- {
- }
- /** classify using simple vector */
- ClassificationResult VCNearestNeighbour::classify ( const NICE::Vector & x ) const
- {
- double mindist = std::numeric_limits<double>::max();
- int minclass = 0;
- FullVector mindists ( maxClassNo + 1 );
- mindists.set ( mindist );
- if ( teachSet.count() <= 0 ) {
- fprintf (stderr, "VCNearestNeighbour: please train this classifier before classifying\n");
- exit(-1);
- }
- priority_queue< pair<double, int> > examples;
- LOOP_ALL(teachSet)
- {
- EACH(classno,y)
- double distance = distancefunc->calculate ( x, y );
- if ( isnan(distance) )
- {
- fprintf (stderr, "VCNearestNeighbour::classify: NAN value found !!\n");
- cerr << x << endl;
- cerr << y << endl;
- }
- if ( mindists[classno] > distance )
- mindists[classno] = distance;
- if ( mindist > distance )
- {
- minclass = classno;
- mindist = distance;
- }
- if ( K > 1 )
- examples.push ( pair<double, int> ( -distance, classno ) );
- }
- if ( mindist == 0.0 )
- fprintf (stderr, "VCNearestNeighbour::classify WARNING distance is zero, reclassification?\n");
- #ifdef DEBUG_VCN
- for ( int i = 0 ; i < mindists.size() ; i++ )
- fprintf (stderr, "class %d : %f\n", i, mindists.get(i) );
- #endif
- if ( K > 1 ) {
- FullVector votes ( maxClassNo + 1 );
- votes.set(0.0);
- for ( int k = 0 ; k < K ; k++ )
- {
- const pair<double, int> & t = examples.top();
- votes[ t.second ]++;
- examples.pop();
- }
- votes.normalize();
- return ClassificationResult ( votes.maxElement(), votes );
- } else {
- for ( int i = 0 ; i < mindists.size() ; i++ )
- {
- mindists[i] = 1.0 / (mindists[i] + 1.0);
- }
- mindists.normalize();
- return ClassificationResult ( minclass, mindists );
- }
- }
- /** classify using a simple vector */
- void VCNearestNeighbour::teach ( const LabeledSetVector & _teachSet )
- {
- fprintf (stderr, "teach using all !\n");
- maxClassNo = _teachSet.getMaxClassno();
- teachSet = _teachSet;
- }
- void VCNearestNeighbour::teach ( int classno, const NICE::Vector & x )
- {
- fprintf (stderr, "teach!\n");
- for ( size_t i = 0 ; i < x.size() ; i++ )
- if ( isnan(x[i]) )
- {
- fprintf (stderr, "There is a NAN value in within this vector: x[%d] = %f\n", (int)i, x[i]);
- cerr << x << endl;
- exit(-1);
- }
-
- if ( classno > maxClassNo ) maxClassNo = classno;
- teachSet.add ( classno, x );
- }
- void VCNearestNeighbour::finishTeaching()
- {
- }
- VCNearestNeighbour *VCNearestNeighbour::clone() const
- {
- VCNearestNeighbour *myclone = new VCNearestNeighbour ( *this );
- return myclone;
- }
- void VCNearestNeighbour::clear ()
- {
- teachSet.clear();
- }
- void VCNearestNeighbour::store ( std::ostream & os, int format ) const
- {
- teachSet.store ( os, format );
- }
- void VCNearestNeighbour::restore ( std::istream & is, int format )
- {
- teachSet.restore ( is, format );
- maxClassNo = teachSet.getMaxClassno();
- }
|