futurehau

导航

 

2016年12月9日

摘要: 前边总结了线性SVM,最终转化为一个QP问题来求解。后来又考虑到非线性SVM,如果特征特别特别多的话,直接使用QP的话求解不了,我们经过一系列的转化,把这一问题转化为训练集大小n量级的QP问题。 http://www.cnblogs.com/futurehau/p/6143178.html 在之前的 阅读全文
posted @ 2016-12-09 14:59 futurehau 阅读(986) 评论(0) 推荐(0) 编辑
 
摘要: Jump Game 贪心: 1 public boolean canJump(int[] nums) { 2 if (nums == null || nums.length == 0) { 3 return false; 4 } 5 int finalIndex = 0; 6 for (int i 阅读全文
posted @ 2016-12-09 14:22 futurehau 阅读(1008) 评论(0) 推荐(0) 编辑