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)
AI
Despite the benefits of AI we are starving for humanity.
-
It is difficult to create robot that cleans our arbitrary dirty dishes. However , if we put some digital information on dishes (special des...
-
Our parents were arranging their schedule according to sunrise and sunset. They are still consistent in their habit. However, in our generat...
-
Robot Particles Display: Current display devices can show any image for a very cheap price. But it will be very intresting if someone tr...