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:
Posts (Atom)
Turkce-Ingilizce Tekerleme
I scream, you scream we all scream for ice scream I run, you run we all run for ayran
-
It is difficult to create robot that cleans our arbitrary dirty dishes. However , if we put some digital information on dishes (special des...
-
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...
-
Layoffs from cloud companies Amazon, Google and Microsoft is fade of Web2. But Metaverse is failed attempt to create Web3 so far. My perspec...