Tagged Questions
The knn tag has no wiki summary.
7
votes
3answers
566 views
Computing sparse pairwise distance matrix in R
I have a NxM matrix and I want to compute the NxN matrix of Euclidean distances between the M points. In my problem, N is about 100,000. As I plan to use this matrix for a k-nearest neighbor ...
6
votes
3answers
151 views
How to use both binary and continuous features in the k-Nearest-Neighbor algorithm?
My feature vector has both continuous (or widely ranging) and binary components. If I simply use Euclidean distance, the continuous components will have a much greater impact:
Representing symmetric ...
4
votes
3answers
1k views
Efficient method for finding KNN of all nodes in a KD-Tree
I'm currently attempting to find K Nearest Neighbor of all nodes of a balanced KD-Tree (with K=2).
My implementation is a variation of the code from the Wikipedia article and it's decently fast to ...
3
votes
3answers
544 views
Creating a dataset from an image with Python for face recognition
I am trying to code a face-recognition program in Python (I am going to apply k-nn algorithm to classify).
First of all, I converted the images into greyscale and then I created a long column vector ...
3
votes
2answers
1k views
Is k-d tree efficient for kNN search. k nearest neighbors search
I have to implement k nearest neighbors search for 10 dimensional data in kd-tree.
But problem is that my algorithm is very fast for k=1, but as much as 2000x slower for k>1 (k=2,5,10,20,100)
Is ...
3
votes
7answers
839 views
K Nearest Neighbour Algorithm doubt
I am new to Artificial Intelligence. I understand K nearest neighbour algorithm and how to implement it. However, how do you calculate the distance or weight of things that aren't on a scale?
For ...
2
votes
1answer
43 views
How can I use a different distance measure for the k-nearest neighbor in Java/Weka?
I am using the k-nearest neighbor classifier on weka (http://weka.sourceforge.net/doc.dev/weka/classifiers/lazy/IBk.html).
I suppose the Euclidean distance is the default distance function. How could ...
2
votes
4answers
280 views
What data do I need to implement k nearest neighbor?
I currently have a reddit-clone type website. I'm trying to recommend posts based on the posts that my users have previously liked.
It seems like K nearest neighbor or k means are the best way to do ...
2
votes
1answer
581 views
Support Vector Machine / K-nearest-neighbor code samples
I am trying to code up either a SVM or a KNN program to classify text documents. I grasp the concepts of both, but I would love to see some nice code examples that specifically demonstrate how to ...
2
votes
4answers
2k views
K nearest neighbour in python
Hi would like to calculate K-nearest neighbour in python. what library should i use?
2
votes
2answers
254 views
Contour of KNN model in ggplot?
I have a KNN model which I am plotting using the contour function. This is a simple example of the kind of thing that I'm doing (based on this Purdue exam):
library(class)
library(nnet)
...
1
vote
1answer
88 views
R knn large dataset
I'm trying to use knn in R (used several packages(knnflex, class)) to predict the probability of default based on 8 variables. The dataset is about 100k lines of 8 columns, but my machine seems to be ...
1
vote
2answers
119 views
How to calculate distance when we have sparse dataset in K nearest neighbour
I am implementing K nearest neighbour algorithm for a very sparse data. I want to calculate the distance between a test instance and each sample in the training set, but I am confused.
Because most ...
1
vote
0answers
69 views
Is there any K-NN implementation that uses Johnson Lindenstrauss Lemma?
I wonder if there is a K-NN implementation uses this method. Python or Ruby will be more than great.
1
vote
2answers
619 views
K-Nearest Neighbor in Image Recognition
I am currently researching for projects or guide/tutorial for my research. I have to determine three leaf different species and is using 100 samples for each(300 just to be specific), my professor ...
1
vote
2answers
76 views
Dynamic closest elements
I have a 2D surface ( Grid ) with 50 elements at different locations.
I need to decide which are the 10 closest elements to a given point.
In addition, the given point is constantly moving and i need ...
1
vote
3answers
108 views
minimal graph on spatial points
I have a set of 3 dimensional points. I want a quick query of the k nearest neighbours of any of these points. I know that a usual way of doing this is oct-tree, however I think that with the below ...
0
votes
1answer
37 views
How to find an accuracy of a classifier
I am using the KNN classifier and I found the knnclassify does the classification for me in MATLAB.
code:
Class = knnclassify(TestVec,TrainVec, TrainLabel);
The problem I face now, knnclassify ...
0
votes
1answer
52 views
Howto Create Recommendations with a Incremental SVD Recommender System
I am testing a recommendation system that is built according to Simon Funk's algorithm.
(written by Timely Dev. http://www.timelydevelopment.com/demos/NetflixPrize.aspx)
The problem is, all ...
0
votes
1answer
116 views
what the difference among ANN, SVM and KNN in my classification question
i know the question is so big if without aiming for actual project . for my question : i just do the remote sensing image classification , i use the object-oriented method : first i segmented the ...
0
votes
0answers
116 views
how to call matlab Pattern Recognition Toolbox such as knnclassify function in VC6.0
for example , my m file is like this :
train_data=load('E:\sample_feature.txt');
train_label=load('E:\train_label.txt');
test_data=load('E:\features.txt');
...
0
votes
1answer
332 views
about K-Nearest Neighbor and OpenCV in C#
I am wondering if there is a built-in function in OpenCV that performs KNN ?
If it exists how can I deal with it .. I searched but I didn't find any useful thing
thank
0
votes
2answers
99 views
Self Organizing maps(SOM) not effective in clustering images in the color space?
I am trying to reproduce the experiments on the ai-junkie website http://www.ai-junkie.com/ann/som/som1.html to cluster/group different colors together using Self Organizing maps(SOM) on a larger ...
0
votes
1answer
102 views
k-nearest neighbour classifier but using a distribution?
I am building a classifier for some 2D data.
I have some training data for which I know the classes and have plotted these on a graph to see the clustering.
To the observer, there are obvious, ...
0
votes
2answers
1k views
Using Nearest Neighbour Algorithm for image pattern recognition
So I want to be able to recognise patterns in images (such as a number 4), I have been reading about different algorithms and I would really like to use the Nearest Neighbour algorithm, it looks ...
0
votes
3answers
393 views
Is it possible to find the KNN for a node that is *IN* the KD-tree?
Trying to create a KNN search using a KD-tree. I can form the KD-tree fine (or at least, I believe I can!). My problem is that I am searching to find the closest 2 neighbours to every point in a list ...