摘要:
标准最大margin问题 假设data是linear seperable的 优化目标 希望 margin(w),i.e, 最小的点到直线的距离 最大 即是要得到最右的线,它对噪声的鲁棒性最好 得到的分类器很简单,线一侧为x,另一侧为o 预备知识:点到直线的距离 为了推导方便,不再将截距 bias b 阅读全文
摘要:
standard large margin problem 分割线 阅读全文
摘要:
switch用法 阅读全文
摘要:
vector预分配内存溢出导致原始的 迭代器 失效 consider what happens when you add the one additional object that causes the vector to reallocate storage and move it elsewh 阅读全文
摘要:
vector 当一个vector预分配的存储空间用完之后,为维护其连续的对象数组,它必须在另外一个地方重新分配大块新的(更大的)存储空间,并把以前已有的对象拷贝到新的存储空间中去。 测试结果 Note that the use of reserve( ) is different from usin 阅读全文