摘要: 重新编译protobuf 下载地址:https://github.com/google/protobuf 导入路径: 阅读全文
posted @ 2017-08-03 11:27 BlueOceans 阅读(5497) 评论(0) 推荐(0) 编辑
摘要: Linux下操作 1. 将loss值存储到lossInf.txt中 2. Python画出loss曲线 阅读全文
posted @ 2017-07-28 10:08 BlueOceans 阅读(774) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/diamonjoy_zone/article/details/70576775 参考: 1. Inception[V1]: Going Deeper with Convolutions 2. Inception[V2]: Batch Normalizatio 阅读全文
posted @ 2017-07-27 09:48 BlueOceans 阅读(20007) 评论(0) 推荐(2) 编辑
摘要: http://blog.csdn.net/czp0322/article/details/52161759 solver.prototxt 今天在做FCN实验的时候,发现solver.prototxt文件一直用的都是model里自带的,一直都对里面的参数不是很了解,所以今天认真学习了一下里面各个参数 阅读全文
posted @ 2017-07-27 08:33 BlueOceans 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 1 #! python 2 #coding:utf-8 3 4 ##!/usr/bin/python 5 # Filename : fileCp.py 6 import sys 7 import os 8 import shutil 9 10 fileList='filelist.txt' 11 targetDir='files... 阅读全文
posted @ 2017-07-26 14:44 BlueOceans 阅读(2270) 评论(0) 推荐(0) 编辑
摘要: fscanf(fp, "%s", sLineWord); 以上语句,在读取一行数据时,如何遇到该行数据有空格,那么读到空格处就停止,不再继续向下读。 若想遇到空格继续读取,读取完整的一行数据,则用如下语句: fscanf(fp, "%[^\n]%*c", sLineWord); fscanf用于读取 阅读全文
posted @ 2017-07-25 16:17 BlueOceans 阅读(3989) 评论(0) 推荐(2) 编辑
摘要: 设置Makefile.config 打开开关: USE_NCCL := 1, 并添加nccl库路径 USE_NCCL := 1 INCLUDE_DIRS += /path/nccl/build/include LIBRARY_DIRS += /path/nccl/build/lib 阅读全文
posted @ 2017-07-15 16:59 BlueOceans 阅读(2864) 评论(0) 推荐(0) 编辑
摘要: Github: https://github.com/Haiyang21/Caffe_MultiLabel_Classification Blogs 1. 采用多label的lmdb+Slice Layer的方法 http://blog.csdn.net/u013010889/article/det 阅读全文
posted @ 2017-07-15 14:44 BlueOceans 阅读(1255) 评论(0) 推荐(0) 编辑
摘要: 分类网络总结 https://github.com/handong1587/handong1587.github.io/blob/master/_posts/deep_learning/2015-10-09-dl-resources.md 阅读全文
posted @ 2017-07-04 15:04 BlueOceans 阅读(140) 评论(0) 推荐(0) 编辑
摘要: a 2017 guide to semantic segmentation with deep learning paper: http://blog.qure.ai/notes/semantic-segmentation-deep-learning-review ParseNet: Looking 阅读全文
posted @ 2017-06-11 19:15 BlueOceans 阅读(388) 评论(0) 推荐(0) 编辑