浏览代码

comment about noisy labels

Erik Rodner 9 年之前
父节点
当前提交
6a88f7fb0d
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. 5 2
      FastMinKernel.cpp

+ 5 - 2
FastMinKernel.cpp

@@ -545,8 +545,11 @@ void FastMinKernel::hik_kernel_multiply(const NICE::VVector & _A,
     }
   }
 
-  //FIXME
-  //do we really want to considere noisy labels?
+  // The following code simply adds noise * alpha to the result
+  // to calculate the multiplication with the regularized kernel matrix.
+  //
+  // Do we really want to considere noisy labels?
+  // Yes, otherwise this would be not consistent with solveLin etc.
   for (uint feat = 0; feat < this->ui_n; feat++)
   {
     _beta[feat] += this->d_noise*_alpha[feat];