caffe网络使用代码生成网络配置文件

编辑一个write_net.py文件进行生成,代码如下:

import sys
caffe_root = '/home/yourname/caffe/'
sys.path.insert(0,caffe_root+'python')
from caffe import layers as L
from caffe import params as P
import caffe

#有两个参数,分别是数据源和batch_size
def lenet(lmdb,batch_size):
	#数据层的设置
	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,kenel_size=5,num_output=20,weight_filterdict(type='xavier'))
	n.pool1 = L.Pooling(n.conv1,kernel_size=2,stride=2,pool=P.Pooling.MAX)
	n.conv1 = L.Convolution(n.conv1,kenel_size=5,num_output=50,weight_filterdict(type='xavier'))
	n.pool1 = L.Pooling(n.conv2,kernel_size=2,stride=2,pool=P.Pooling.MAX)
	n.ip1 = L.InnerProduct(n.conv2,num_output=500,weight_filterdict(type='xavier'))
	n.relu1 = L.ReLU(n.ip1,in_place=True)
	n.ip2 = L.InnerProduct(n.relu1,num_output=10,weight_filterdict(type='xavier'))
	n.loss = L.SoftmaxWithLoss(n.ip2,n.label)
	#让n以prototxt的形式返回
	return n.to_proto()
#分别生成两个网络模型(训练和测试)的prototxt文件
with open('lenet_auti_train.prototxt','w') as f:
	f.write(str(lenet('example/mnist/mnist_train_ldmb',64)))
with open('lenet_auto_test.prototxt','w') as f:
	f.write(str(lenet('example/mnist/mnist_test_lmdb',100)))
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值