2016年7月23日
摘要: leNET算是caffe学习的第一个例子了,例子来源于caffe官网:http://caffe.berkeleyvision.org/gathered/examples/mnist.html 接口部分都用python写好,所以只跑跑例子的话可以先不看cpp代码 1.根据路径,我们先看总配置文件 2. 阅读全文
posted @ 2016-07-23 14:27 Evence 阅读(1585) 评论(1) 推荐(0) 编辑
  2015年5月5日
该文被密码保护。 阅读全文
posted @ 2015-05-05 23:50 Evence 阅读(2) 评论(0) 推荐(0) 编辑
  2015年5月3日
摘要: 1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 const int N=15; 8 void change(int a[],int f,int t) 9 {10 int tmp=a[f];11 ... 阅读全文
posted @ 2015-05-03 23:12 Evence 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 5 int arr[100]; 6 int inum=0; 7 8 bool isHappy(int n) 9 {10 11 for(int k=0 ; (n!=1)&& k<5000 ; ++k)12 {1... 阅读全文
posted @ 2015-05-03 21:11 Evence 阅读(152) 评论(0) 推荐(0) 编辑
  2015年5月1日
摘要: 1 #include 2 #include 3 #include 4 #include 5 const int LEN=1024; 6 int main(int argc,char* argv[]) //一句话扣单词 7 { 8 char arr[LEN]; 9 ... 阅读全文
posted @ 2015-05-01 21:50 Evence 阅读(178) 评论(0) 推荐(0) 编辑
  2015年4月30日
摘要: 1 #include 2 #include 3 #define WAY "save.txt" 4 int main(int argc,int argv[]) 5 { 6 FILE *fp_read,*fp_write; 7 8 fp_read=fopen(WAY,"r+"... 阅读全文
posted @ 2015-04-30 21:30 Evence 阅读(635) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 const int N=10; //修改随机数据量 6 bool onOroff=1; ... 阅读全文
posted @ 2015-04-30 16:00 Evence 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 第一题:101个数中只有一个数字不同,找出这个数第二题:102个数字,有两个互不相同的数和其他数字不同,找出这两个数 1 int main(int argc,char* argv[]) 2 { 3 //101个数有一个不一样的 4 int arr[101]; 5 for(in... 阅读全文
posted @ 2015-04-30 14:54 Evence 阅读(300) 评论(0) 推荐(0) 编辑
  2015年4月29日
摘要: 1 #include 2 #include 3 const int row=8; 4 int main() 5 { 6 for(int i=row-1 ; i>=0 ; --i) 7 { 8 for(int j=i ; j>=0 ; --j) 9 ... 阅读全文
posted @ 2015-04-29 23:22 Evence 阅读(273) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-04-29 15:24 Evence 阅读(1) 评论(0) 推荐(0) 编辑