Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Uncaught TypeError: Cannot read property 'nearest' of undefined at O.getSinglePrediction (knn.js:91) #11

Open
freezeyang opened this issue Feb 2, 2018 · 4 comments

Comments

@freezeyang
Copy link

freezeyang commented Feb 2, 2018

when i use web version, it pops me this error.
Uncaught TypeError: Cannot read property 'nearest' of undefined at O.getSinglePrediction (knn.js:91)

@0x33467
Copy link
Member

0x33467 commented Feb 2, 2018

it seems that's a dependency problem, can you show me how did you get that error, it works well on node?

@freezeyang
Copy link
Author

cool. seems a version problem. will check it.

thx

@freezeyang
Copy link
Author

I have changed to the current version which is 2.2.0. It pops me another error when I used the example listed in the readme document.

script.js:61 Uncaught TypeError: ML.SL.KNN is not a constructor
at HTMLInputElement.train (script.js:61)

the same program works well in the previous version...

@netoolii
Copy link

netoolii commented May 15, 2018

I've solved this issue like that @freezeyang :

var dataset = [[0, 0, 0], [0, 1, 1], [1, 1, 0], [2, 2, 2], [1, 2, 2], [2, 1, 2]];
var predictions = [0, 0, 0, 1, 1, 1];
var knn = new ML.KNN.default(dataset, predictions);
knn.predict(dataset)

and works fine.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants