K Nearest Neighbor is a classification algorithm used to classify example based on set of already classified examples.
1
vote
0answers
18 views
How does WEKA IBK (KNN) algorithm lead with non-normalized attributes?
I have a large dataset for two classes with different attributes scales (some attributes from 5 to 10, others from 0 to 100, for example). I know if I use directly a kNN algorithm that difference will ...
0
votes
2answers
29 views
How can i classify text documents with using SVM and KNN
Almost all of the examples are based on numbers. In text documents i have words instead of numbers.
So can you show me simple examples of how to use these algorithms for text documents ...
0
votes
0answers
29 views
How to use MFCC vectors for classifying a single audio file?
This is probably very silly question, but I couldn't find details anywhere.
So I have an audio recording (wav file) that is 3 seconds long. That is my sample and it needs to be classified as ...
0
votes
0answers
14 views
WEKA: there is an option to print the graphs of SMO, IBK classifiers?
In J48 classifier, there is an option to print the graph and make a view in JFrame, using j48.graph().
there is an option to get the graphs of SMO or IBk classifiers too?
or maybe in some other ...
1
vote
2answers
103 views
Pre-processing before digit recognition with KNN classifier
Right now I'm trying to create digit recognition system using OpenCV. There are many articles and examples in WEB (and even on StackOverflow). I decided to use KNN classifier because this solution is ...
0
votes
0answers
30 views
FLANN in matlab returns different distance from my own calculation
I'm using FLANN in matlab and using SIFT feature descriptor as my data. There is a function:
[result, ndists] = flann_search(index, testset, ...);
Here the index is built with kd-tree. The "user ...
0
votes
0answers
48 views
OpenCV Knearest doesn't classify correctly
I am trying to make a K nearest neighbor classifier to identify an object based on its hue color values. I have two CSV files filled with these color values of the two seperate objects each containing ...
-1
votes
1answer
43 views
Unhandled Exception
I am trying to implement a KNN algorithm out of interest via help code from a forum. The code is a follows.
#include <opencv\cv.h>
#include <opencv\ml.h>
#include ...
0
votes
2answers
112 views
Knn search for large data?
I'm interested in performing knn search on large dataset.
There are some libs: ANN and FLANN, but I'm interested in the question: how to organize the search if you have a database that does not fit ...
0
votes
0answers
79 views
Using Weka for k nearest neighbors search
Based on low level feature , I want to search k nearest neighbors of an image
I'm using weka library
This is my code
public void searchNearstNeighbors ()
{
KDTree tree = new KDTree();
...
1
vote
0answers
69 views
how to use opencv flann, especially set distance algorithms?
I'm using opencv 2.4.4 flann.
and I refer to: http://docs.opencv.org/2.4.4/modules/flann/doc/flann_fast_approximate_nearest_neighbor_search.html
to do KNN.
I have a matrix(8000*32) flann_m. There ...
-1
votes
2answers
121 views
how to measure the accuracy of knn classifier in python
I have used knn to classify my dataset. But I do not know how to measure the accuracy of the trained classifier. Does scikit have any inbuilt function to check accuracy of knn classifier?
from ...
0
votes
1answer
152 views
K-nearest neighbor in python
I have data containing a single dimension and a class label. I want to run KNN on it.
My data is something like this
feature Label
0.70436073 1
0.91564351 1
0.9931506 1
...
0
votes
0answers
171 views
How knn algorithm is implemented in OpenCV
I want to know how the Knn algorithm is implemented in OpenCV. Where I can see this code?, is it easy to understand?, could someone explain to me in pseudo-code?.
Because I have implemented the ...
1
vote
0answers
170 views
k-Nearest Neighbour Algorithm
I am implementing the k-Nearest Neighbour algorithm on my smart device in order to recognize human activities from recognition data. I am going to explain how am I going to implement it. Can you guys, ...
0
votes
2answers
53 views
How to peform dist and kNN in R for genomic data?
I have genomic data with missing values and I want to calculate the distance between the expression levels of each pair of genes by using the available values. Then i want to discover the K nearest ...
4
votes
1answer
135 views
Why is KNN is much faster than decision tree?
Once in an interview, I encountered a question from the employer. He asked me why KNN classifier is much faster than decision tree for example in letter recognition or in face recognition?
I had ...
-1
votes
1answer
174 views
How Weka draw ROC curve from KNN (IBk)?
I have read a lot about ROC curve before posting.
So, I didn't understand how Weka draw the ROC curves. I can't find the thereshold to variate to generate the points in the curve. Thanks,
2
votes
1answer
281 views
Choosing k for KNN in Matlab
I'm currently using Matlab's k nearest neighbors classifier (knnclassify) to train and test binary attributes. The default value argument for k if none provided is 1 and one can choose other values ...
1
vote
1answer
97 views
Find nearset neighbours in large set
I have large set of points in multidimensional space. And I'd like to find few neighbours (within the neighborhood) for any given point (require is to avoid scanning of all points).
I want to know if ...
0
votes
0answers
56 views
verifying / correctness of KNN
I have a data set of 306 by 4 including class which means each have 3 attributes
I have devided my dataset to training set and test set.
using function below I could achieve a classification
classM ...
0
votes
1answer
269 views
KNN classification for data sets.
I have a data set of 178 with 13 attributes. I have divided them to 2 groups (100 and 78) for training and testing.
I want to determine the k nearest neighbours for each labelled samples. If the ...
0
votes
0answers
122 views
Serializing knn model opencv in python
I have a knn-classifier with OpenCV in a python 2.7 module and works ok, but now, I want to introduce it in my web app, I want the training method only run once and every time I send a new image, I ...
0
votes
2answers
123 views
when will KD tree search for KNN not work?
I've been exploring and learning about KD Trees for KNN (K Nearest Neighbors problem)
when would the search not work? or would be worth or not improve the naive search.
are there any drawbacks of ...
1
vote
0answers
107 views
opencv flann index assignment operator
I want to use cv::flann::Index as a class member and thus to assign value to it when necessary.
However, if there is a re-assignment of Index, I get "pointer being freed was not allocated" at Index ...
1
vote
2answers
120 views
nearest neighbour in dataset Node.js
I have a Node.js application that saves data to MongoDB.
Given one document, I want to find the most similar document in the database.
My idea is to implement some sort of nearest neighbour algorithm ...
0
votes
0answers
252 views
Rapidminer-text categorization
I am using Rapidminer to do text classification on a single excel document. The document contains rows where each row is an piece of text. The columns are postId, postContent, and mainTag.
I've ...
-1
votes
1answer
197 views
Finding k-nearest neighbor for only one point (not an entire matrix) using R
Is there a package or a simple way to serach k-nearest neighbor (specially with kd tree) for one point using R?
All the packages who provide this function (example RANN or FNN...) compute the knn for ...
1
vote
0answers
120 views
Concrete processes to implement the OpenCV feature matching such as match() and radiusMatch()
Hello, I want to improve the feature matching algorithm, so I need to know the current methods of feature matching in OpenCV. I have some doubts in its implementation.
Given this method:
void ...
1
vote
0answers
49 views
How to preform 1NN with single centroid per class in SAS?
I've computer a single centroid per class using PROC fastclus in SAS,
proc fastclus data=sample.samples_train mean=knn.clusters
maxc=1 *number of clusters*
maxiter=100;
var &predictors;
by ...
0
votes
1answer
65 views
How do you handle deadlocks using Proc Discrim in SAS for KNN?
I have a proc discrim statement which runs a KNN analysis. When I set k = 1 then it assigns everything a category (as expected). But when k > 1 it leaves some observations unassigned (sets category as ...
0
votes
1answer
111 views
Find the clasification rate using different value of k
I use KNN search to classify the testing data and find the classification rate.
Below is the matlab code: for example:
load fisheriris
x = meas(:,3:4); % x =all training data
y = [5 1.45;6 2;2.75 ...
1
vote
1answer
169 views
Find the classification rate of testing data
I need to use KNN search to classify the testing data and find the classification rate.
Below is the matlab code:
for example:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
load fisheriris
x = ...
-1
votes
2answers
57 views
What is feed-forward wrapper method for feature selection?
For a school project I need to choose a dataset from UCI repository and classify the data with KNN after processing it with "feed forward wrapper" feature selection. Googling for "feed forward ...
2
votes
1answer
150 views
KNN search with signed metrics
I am looking for a C++ library that allows to efficiently find the k-nearest neighbors of a point in a point set, using the squared pseudo norm :
where my third coordinate may or may not have a ...
7
votes
1answer
333 views
How to sample large database and implement K-means and K-nn in R?
I'm a new user to R, trying to move away from SAS. I'm asking this question here as I'm feeling a bit frustrated with all the packages and sources available for R, and I cant seem to get this working ...
5
votes
1answer
624 views
KNN classification in MATLAB - confusion matrix and ROC?
I'm trying to classify a data set containing two classes using different classifiers (LDA, SVM, KNN) and would like to compare their performance. I've made ROC curves for the LDA by modifying the ...
0
votes
2answers
713 views
KNN classification with categorical data
I'm busy working on a project involving k-nearest neighbour regression. I have mixed numerical and categorical fields. The categorical values are ordinal (e.g. bank name, account type). Numerical ...
0
votes
1answer
81 views
Using supervised term weighting methods with KNN algorithm
Is it possible to use the supervised term weighting models with KNN classifier ?. I wonder how to represent the vector of test documents as long as the test documents are unlabeled and the supervised ...
0
votes
3answers
1k views
K-nearest neighbour C/C++ implementation
Where can I find an serial C/C++ implementation of the k-nearest neighbour algorithm?
Do you know of any library that has this?
I have found openCV but the implementation is already parallel.
I want ...
0
votes
0answers
373 views
KNN: training and testing
I am extracting EEG features from 5 classes (emotion expression, i.e happy, sad , disgust, surprise and neutral) with 62 electrodes each, and I'm use KNN to classify the EEG data.
However, I don't ...
3
votes
0answers
205 views
opencv knearest neighbor
I am using CVKnearest Class in opencv to classify 6 classes with 10 features as follows:
CvKNearest knn(trainData, trainClasses, Mat(), false, K );
then I use :
response = ...
0
votes
0answers
179 views
issue with k nearest neighbour regression and knn.pred
In the package knnflex there used to be a k nearest neighbour prediction function. Because that package is no longer available I am using the package FNN, to convert one all program from knnflex to ...
0
votes
1answer
194 views
A nearest neighbour when edge costs are asymmetric, some doubts
To clarify my post, I have edited it based on comments.
I was thinking how to implement a nearest neighbour search efficiently when edge costs are asymmetric. I'm thinking a range of cities something ...
0
votes
2answers
215 views
searching for k nearest points
I have a large set of features that looks like this:
id1 28273 20866 29961 27190 31790 19714 8643 14482 5384 .... upto 1000
id2 12343 45634 29961 27130 33790 14714 7633 15483 4484 ....
id3 ..... ...
0
votes
1answer
536 views
using k-NN in R with categorical values
I'm looking to perform classification on data with mostly categorical features. For that purpose, Euclidean distance (or any other numerical assuming distance) doesn't fit.
I'm looking for a kNN ...
1
vote
1answer
167 views
Figure 2.5 in Elements of Statistical Learning
I met some difficulty in calculating the Bayes decision boundary of Figure 2.5. In the package ElemStatLearn, it already calcualted the probability at each point and used contour to draw the boundary. ...
0
votes
1answer
2k views
How to use KNN in Matlab
I need to use KNN in matlab to find the closest data in training data from A.
I have data in .mat that has this kind of information (training data):
train_data = 1 232 34 21 0.542
...
1
vote
0answers
225 views
Mahout KNN in a distributed way with Map Reduce/ Hadoop [closed]
I need some help about using KNN in mahout distributedly. I believe the knn algorithm in mahout is non-distributed. Can anyone provide me some guidance how to use KNN in Mahout in a distributed day
0
votes
0answers
131 views
too many ties in knn model [closed]
I'm trying to create a knn model for a binary class problem, but anytime I try to run it I get this error:
too many ties in knn
I did some google search and seen that this is issue is already ...

