Thursday, August 30, 2012
KNN
KNN comes from very basic idea. "Look at the closer samples", the science behind this classifier how it is proven to be useful. I mean , If you just come up with an heuristic which is not proven it does not have big impact.
Sunday, August 12, 2012
Javascript Infinity loop
I don't want to forget this :
I used for loop in my recursive calls using i variable
function recursive(param)
{
//Some stuff
for (i=0;i
}
It was creating infinity loop. The problem that I realized is i is behaving like and global variable , thus creating an infinity loop.
Fix by :
for (var i=0;i</*A Value*/;i++)
Subscribe to:
Comments (Atom)
Turkce Tekerlemeler 17
Binilen at binek ise, inilen at inektir
-
Real Time Transcription: In TV channels I realize that text is a little bit coming late after the speech. So , I think they are using...
-
Run following command in js console if you want make web sites audible with a click document.getElementsByTagName("p")].map(p =...
-
It is difficult to create robot that cleans our arbitrary dirty dishes. However , if we put some digital information on dishes (special des...