您的位置:首页 > 编程语言 > Python开发

python caffe training solve.py

2016-10-05 17:36 127 查看
from __future__ import division

import numpy as np

import sys

caffe_root = '../../'

sys.path.insert(0, caffe_root + 'python')

import caffe

# make a bilinear interpolation kernel

# credit @longjon

def upsample_filt(size):

    factor = (size + 1) // 2

    if size % 2 == 1:

        center = factor - 1

    else:

        center = factor - 0.5

    og = np.ogrid[:size, :size]

    return (1 - abs(og[0] - center) / factor) * \

           (1 - abs(og[1] - center) / factor)

# set parameters s.t. deconvolutional layers compute bilinear interpolation

# N.B. this is for deconvolution without groups

def interp_surgery(net, layers):

    for l in layers:

        m, k, h, w = net.params[l][0].data.shape

        if m != k:

            print 'input + output channels need to be the same'

            raise

        if h != w:

            print 'filters need to be square'

            raise

        filt = upsample_filt(h)

        net.params[l][0].data[range(m), range(k), :, :] = filt

# base net -- follow the editing model parameters example to make

# a fully convolutional VGG16 net.

# http://nbviewer.ipython.org/github/BVLC/caffe/blob/master/examples/net_surgery.ipynb
base_weights = caffe_root+'models/5stage-vgg.caffemodel'

# init

caffe.set_mode_gpu()

caffe.set_device(0)

solver = caffe.SGDSolver('/home/tsq/Documents/project/DeepSkeleton/examples/DeepSkeleton/solver.prototxt')

# do net surgery to set the deconvolution weights for bilinear interpolation

interp_layers = [k for k in solver.net.params.keys() if 'up' in k]

interp_surgery(solver.net, interp_layers)

# copy base weights for fine-tuning

#solver.restore('dsn-full-res-3-scales_iter_29000.solverstate')

#tsqsolver.net.copy_from(base_weights)

# solve straight through -- a better approach is to define a solving loop to

# 1. take SGD steps

# 2. score the model by the test net `solver.test_nets[0]`

# 3. repeat until satisfied

solver.step(1)

import matplotlib as plt

%matplotlib inline

plt.pyplot.imshow(solver.net.blobs['label'].data[0][0,:,:],cmap="gray")
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐