2016年10月8日
摘要: 参考自: http://blog.sina.com.cn/s/blog_74cf26810100ypzf.html http://blog.sina.com.cn/s/blog_64ecfc2f0101ranp.html Logistic regression (逻辑回归)是当前业界比较常用的机器学 阅读全文
posted @ 2016-10-08 12:12 北海盗 阅读(240) 评论(0) 推荐(0)
摘要: 文章链接:https://zhuanlan.zhihu.com/p/20900216 1、图像可能分类是事先已知的,比如:分类集合={小猫,小狗,小花,......} 2、图像分类就是为给定的图像给它一个从分类集合中挑出一个,打上标签,表示它就是这个类。 以下为了计算的方便,图像统一用矩阵表示,这是 阅读全文
posted @ 2016-10-08 11:58 北海盗 阅读(775) 评论(0) 推荐(0)
摘要: //get.h #ifndef GET_H #define GET_H #include std::istream& get(std::istream& in); #endif //get.cpp #include "get.h" std::istream& get(std::istream& in){ int ival; while (in>>ival , !in.eof()... 阅读全文
posted @ 2016-10-08 09:56 北海盗 阅读(152) 评论(0) 推荐(0)
  2016年10月7日
摘要: 转自:http://www.zhihu.com/question/27239198/answer/89853077 机器学习可以看做是数理统计的一个应用,在数理统计中一个常见的任务就是拟合,也就是给定一些样本点,用合适的曲线揭示这些样本点随着自变量的变化关系。 深度学习同样也是为了这个目的,只不过此 阅读全文
posted @ 2016-10-07 11:51 北海盗 阅读(1770) 评论(1) 推荐(0)
摘要: //Sales_item.h#ifndef SALESITEM_H #define SALESITEM_H #include #include class Sales_item { public: std::istream &input(std::istream & in); std::ostream & output(std::ostream & out)const; double a... 阅读全文
posted @ 2016-10-07 09:33 北海盗 阅读(166) 评论(0) 推荐(0)
  2016年10月6日
摘要: 【转:http://www.csdn.net/article/2015-07-07/2825150】 在深度学习(Deep Learning)的热潮下,Caffe作为一个高效、实用的深度学习框架受到了广泛的关注。了解Caffe研发的背景、愿景、技术特色、路线图及其开发者的理念,对于我们选择合适的工具 阅读全文
posted @ 2016-10-06 12:23 北海盗 阅读(469) 评论(0) 推荐(0)
摘要: 【转:http://blog.csdn.net/buaalei/article/details/46344675】 大家好!我是贾扬清,目前在Google Brain,今天有幸受雷鸣师兄邀请来和大家聊聊Caffe。没有太多准备,所以讲的不好的地方还请大家谅解。我用的ppt基本上和我们在CVPR上要做 阅读全文
posted @ 2016-10-06 11:36 北海盗 阅读(717) 评论(0) 推荐(0)
摘要: int main(int argc, char **argv) { cout << "arguments passed to main() : " << endl; for (size_t i = 0; i < argc; i++) { cout << argv[i] << endl; } cout << endl; system("pause"); return 0; ... 阅读全文
posted @ 2016-10-06 09:33 北海盗 阅读(3039) 评论(0) 推荐(0)
  2016年10月3日
摘要: #include <iostream>#include <string>#include <vector>//#include <cctype>#include <cstring>//#include "Sales_item.h" using namespace std; //把vector中的st 阅读全文
posted @ 2016-10-03 08:47 北海盗 阅读(477) 评论(0) 推荐(0)
  2016年10月2日
摘要: 转自:http://blog.csdn.net/qiumm/article/details/5657120 1.字符指针可以指向一个字符串。 我们可以用字符串常量对字符指针进行初始化。例如,有说明语句: char *str = "This is a string."; 是对字符指针进行初始化。此时, 阅读全文
posted @ 2016-10-02 10:14 北海盗 阅读(5116) 评论(1) 推荐(0)