caffe python接口训练VGG

# -*- coding: utf-8 -*-
"""
@author: root
"""

#matplotlib是python最著名的绘图库
import matplotlib.pyplot as plt
import caffe
#import cv2
from numpy import *

caffe.set_device(0)
caffe.set_mode_gpu()
solver = caffe.SGDSolver('/home/hrw/caffe/examples/VGG/VGG_solver.prototxt')
solver.net.copy_from('/home/hrw/caffe/examples/VGG/vgg_face.caffemodel')
# 等价于solver文件中的max_iter,即最大解算次数
niter = 3112800
# 每隔200次收集一次数据
display = 1000

# 每次测试进行494次解算,18612/16
test_iter = 1163
# 每7215次训练是一个循环并进行一次测试
test_interval = 25940

# 初始化
train_loss = zeros(ceil(niter * 1.0 / display))
test_loss = zeros(ceil(niter * 1.0 / test_interval))
test_acc = zeros(ceil(niter * 1.0 / test_interval))

# iteration 0,不计入
solver.step(1)

# 辅助变量
_train_loss = 0
_test_loss = 0
_accuracy = 0
# 进行解算# 辅助变量

for it in range(niter):
    # 进行一次解算
    solver.step(1)
    # 每迭代一次,训练batch_size张图片
    _train_loss += solver.net.blobs['loss'].data
    if it % display == 0:
        # 计算平均train loss
        train_loss[it / display] = _train_loss / display
        _train_loss = 0

    if it % test_interval == 0:
        for test_it in range(test_iter):
            # 进行一次测试
            solver.test_nets[0].forward()
            # 计算test loss
            _test_loss += solver.test_nets[0].blobs['loss'].data
            # 计算test accuracy
            _accuracy += solver.test_nets[0].blobs['accuracy_at_1'].data
            # 计算平均test loss
        test_loss[it / test_interval] = _test_loss / test_iter
        # 计算平均test accuracy
        test_acc[it / test_interval] = _accuracy / test_iter
        _test_loss = 0
        _accuracy = 0

        # 绘制train loss、test loss和accuracy曲线
print '\nplot the train loss and test accuracy\n'
_, ax1 = plt.subplots()
ax2 = ax1.twinx()

# train loss -> 绿色
ax1.plot(display * arange(len(train_loss)), train_loss, 'r')
# test loss -> 黄色
#ax1.plot(test_interval * arange(len(test_loss)), test_loss, 'y')
# test accuracy -> 红色
# ax2.plot(test_interval * arange(len(test_acc)), test_acc, 'r')

ax1.set_xlabel('iteration')
ax1.set_ylabel('loss')
#ax2.set_ylabel('accuracy')
plt.show()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值