码迷,mamicode.com
首页 > 其他好文 > 详细

毕业设计(三) 4.20

时间:2016-05-13 03:08:53      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

caffe中imagenet的模型里用的图片是imagenet官网的数据,我在想如何修改这个训练数据,训练自己的图片。

在/caffe-master/data/ilsvrc12中有三个txt文件,分别列出了训练用到的图片:

训练集

技术分享

测试集

技术分享

验证集

技术分享


我估计要做十个类型的图片,所以首先要生成自己的图像文件目录。参照薛开宇caffe笔记二,使用命令如下:

在caffe-master下:             

mkdir examples/_temp

(此行是我出错的代码,单引号怎么跟人家长得不一样?因为人家输的不是单引号。。。是按键数字1左面那个点!)

find  ‘pwd‘/examples/images -type f -exec echo {} \;>examples/_temp/temp.txt

(正确代码) find `pwd`/examples/images -type f -exec echo {} \; > examples/_temp/temp.txt

sed "s/$/ 0/" examples/_temp/temp.txt > examples/_temp/file_list.txt


毕业设计(三) 4.20

标签:

原文地址:http://blog.csdn.net/vera__zhang/article/details/51198822

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!