1 | // $Id: KNN_Uniform.cc 1392 2008-07-28 19:35:30Z peter $ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) 2008 Markus Ringnér |
---|
5 | |
---|
6 | This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
7 | |
---|
8 | The yat library is free software; you can redistribute it and/or |
---|
9 | modify it under the terms of the GNU General Public License as |
---|
10 | published by the Free Software Foundation; either version 2 of the |
---|
11 | License, or (at your option) any later version. |
---|
12 | |
---|
13 | The yat library is distributed in the hope that it will be useful, |
---|
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with this program; if not, write to the Free Software |
---|
20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
21 | 02111-1307, USA. |
---|
22 | */ |
---|
23 | |
---|
24 | #include "KNN_Uniform.h" |
---|
25 | #include "Target.h" |
---|
26 | |
---|
27 | #include "yat/utility/VectorBase.h" |
---|
28 | #include "yat/utility/VectorMutable.h" |
---|
29 | |
---|
30 | #include <cmath> |
---|
31 | #include <vector> |
---|
32 | |
---|
33 | namespace theplu { |
---|
34 | namespace yat { |
---|
35 | namespace classifier { |
---|
36 | |
---|
37 | void KNN_Uniform::operator()(const utility::VectorBase& distance, |
---|
38 | const std::vector<size_t> k_sorted, |
---|
39 | const Target& target, |
---|
40 | utility::VectorMutable& prediction) const |
---|
41 | { |
---|
42 | for(size_t j=0;j<k_sorted.size();j++) |
---|
43 | if(!std::isinf(distance(k_sorted[j]))) |
---|
44 | prediction(target(k_sorted[j]))+=1.0; |
---|
45 | } |
---|
46 | |
---|
47 | }}} |
---|