caffe学习之路
swiftfake
新手上路,多多指教
展开
-
caffe 查看caffemodel中的参数与数据
原创 2018-05-10 13:50:53 · 5580 阅读 · 0 评论 -
caffe:将mean.binaryproto文件转化为mean.npy文件
# -*- coding: utf-8 -*-"""Created on Thu May 24 16:03:14 2018@author: chrisd"""import caffeimport numpy as npmean_proto_path='×××/mean.binaryproto' #存放mean.binaryproto文件的路径mean_npy_path='××...原创 2018-06-08 15:41:31 · 478 阅读 · 0 评论 -
完整案例:caffe框架用Alexnet做二分类的全部流程
一.数据的准备与预处理 数据的准备是非常重要的,我们现在准备做的是一个二分类任务,计划选取男女图片进行训练与测试。 train:随机选取300张男性图片,300张女性图片 val:随机选取80张男性图片,80张女性图片 test:随机选取100张男性图片,100张女性图片 ps:train集和val可以有交集,但是train集和test集不要有交集 我手里找到了一批512*768的图片...原创 2018-06-08 15:43:35 · 3850 阅读 · 6 评论 -
图像分类与过滤器可视化
一.设置 首先设置Python, numpy, and matplotlib# set up Python environment: numpy for numerical routines, and matplotlib for plottingimport numpy as npimport matplotlib.pyplot as plt# display plots in ...原创 2018-06-08 15:45:54 · 944 阅读 · 0 评论 -
caffe--训练测试与生成日志
运行 trainingcd caffe./build/tools/caffe train --solver=/solver.prototxt -gpu 0 # 调用0号gputesting./build/tools/caffe test -model=train_test.prototxt -weights=.caffemodel -iterations=100 -gpu ...原创 2018-09-29 08:34:45 · 587 阅读 · 0 评论