Looks like K-nearest neighbor does pretty well.
Try the "Island inside an island" test (put a blue cluster inside an orange island). Only k-means and SVM dealt with it satisfactorily.
Visualizing popular machine learning algorithms
21–30 of 39 posts
Re: Visualizing popular machine learning algorithms
#22Sounds interesting, but I can't see the results with Firefox 38.2.1.
It's because of the browser blocking mixed content: The JS libraries are being loaded over HTTP but the JSFiddle is over HTTPS.
The version above loads the libraries over HTTPS via cdnjs.com
Re: Visualizing popular machine learning algorithms
#23Re: Visualizing popular machine learning algorithms
#24Re: Visualizing popular machine learning algorithms
#25Looks like K-nearest neighbor does pretty well.
Yes, k-nn is theoretically the one of the best ML algorithms in the sense that it will find the closest items in the training set. For classification or finding similar looking items it is great. However, it has pretty poor running times for evaluation of unseen data ( http://nlp.stanford.edu/IR-book/html/htmledition/time-comple... ). This is contrary to something like neural networks, which take a while to train, bu…
Re: Visualizing popular machine learning algorithms
#26Re: Visualizing popular machine learning algorithms
#27any visualization of these algorithms in 2 dimensions (with cubic feature expansion!) is completely misleading if you intend to work on any real problem with many dimensions. Also, for those asking for execution times, these would be horribly misleading as well.
Are you aware of reasonable high dimensional "visualizations". It cant' be accurate of course. But catpuring essential features would be nice.
E.g. here is a 4d cube: https://commons.wikimedia.org/wiki/File:8-cell.gif
Re: Visualizing popular machine learning algorithms
#28Earlier quoted context omitted.
Try the "Island inside an island" test (put a blue cluster inside an orange island). Only k-means and SVM dealt with it satisfactorily.
Shouldn't a neural net with sufficient unit do that too?
Re: Visualizing popular machine learning algorithms
#29Looks like K-nearest neighbor does pretty well.