11 2014 档案
摘要:参考网页: http://deeplearning.stanford.edu/wiki/index.php/Linear_Decoders http://deeplearning.stanford.edu/wiki/index.php/Exercise:Learning_color_featur...
阅读全文
摘要:参考网页:http://deeplearning.stanford.edu/wiki/index.php/Exercise:_Implement_deep_networks_for_digit_classification实验介绍:完成手写体识别,采用MNIST手写数据库,数字从0-9,训练样本6万...
阅读全文
摘要:/*one can sell and buy at the same daygreedy algorithm: just find the increase subsequence*/class Solution {public: int maxProfit(vector &prices) {...
阅读全文
摘要:class Solution {public: int maxProfit(vector &prices) { int size = prices.size(); if( size==0 || size==1) return 0; ...
阅读全文
摘要:参考资料:http://deeplearning.stanford.edu/wiki/index.php/Self-Taught_Learninghttp://deeplearning.stanford.edu/wiki/index.php/Exercise:Self-Taught_Learning...
阅读全文
摘要:上一节介绍了softmax regression的理论知识,这一节介绍它的具体实现。具体参考http://deeplearning.stanford.edu/wiki/index.php/Exercise:Softmax_Regression实验介绍: 完成手写体识别,采用MNIST手写数...
阅读全文
摘要:softmax regression是对logistic regression 的扩展,由于logistic regression只能处理二分类问题,而实际应用中多分类问题随处可见,如手写体数字识别问题,此时的类别为10。有些人可能会想,这类问题我们也可以把它转化为二分类问题,这里就要谈到softm...
阅读全文
摘要:在使用opencv的过程中,无论使用原始的IplImage和CvMat类型,还是用最新C++版本的Mat类型,在创建和使用过程中,经常会遇到CV_8UC1、CV_8UC3、CV_32FC3等声明,我以前也经常遇到,曾经看懂了,现在又忘记了,现在把它写下来,方便以后查看,遇到同样问题的菜鸟也能尽快理解...
阅读全文