利用python接口生成prototxt文件

import numpy as np
import matplotlib.pyplot as plt
import sys,os
caffe_root = '/home/tyd/caffe/'
sys.path.insert(0,caffe_root+'python')
from caffe import layers as L
from caffe import params as P
import caffe

def lenet(lmdb,batch_size):
    #our version of LeNet: a series of linear and simple nonlinear transformations
    n = caffe.NetSpec()
    n.data,n.label = L.Data(batch_size=batch_size,backend = P.Data.LMDB,source = lmdb,transform_param=dict(scale=1./255),ntop=2)
    n.conv1 = L.Convolution(n.data,kernel_size=5,num_output = 20,weight_filler=dict(type='xavier'))
    n.pool1 = L.Pooling(n.conv1,kernel_size=2,stride=2,pool = P.Pooling.MAZ)
    n.conv2 = L.Convolution(n.pool1,kernel_size=5,num_output=50,weight_filler=dict(type='xavier'))
    n.pool2= L.Pooling(n.conv2,kernel_size=2,stride=2,pool=P.Pooling.MAX)
    n.ip1=L.InnerProduct(n.pool2,num_output=500,weight_filler=dict(type='xavier'))
    n.relu1 = L.ReLU(n.ip1,in_place=True)
    n.ip2 = L.InnerProudct(n.relu1,num_output=10,weight_filler=dict(type='xvaier'))
    n.loss = L.SoftmaxWithLoss(n.ip2,n.label)
    retrun n.to_proto()
    
 with open('lenet_auto_train.prototxt','w') as f:
    f.write(str(lenet('examples/mnist/mnist_train_lmdb',64)))
    
 with open('lenet_auto_test.prototxt','w') as f:
    f.write(str(lenet('examples/mnist/mnist_test_lmdb',100)))
    

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值