caffe
小涵涵
这个作者很懒,什么都没留下…
展开
-
caffe实现自己的层
caffe实现自己的层caffe.proto.cpp.h.cu caffe.proto 首先在message LayerParameter{}中添加层名和参数名.例如: optional SliceParameter slice_param = 126; 然后再 message AllPassParameter { },指定参数名称 message SliceParameter { optional int32 axis = 3 [default = 1]; repeated uint32 sli原创 2020-07-22 17:50:25 · 234 阅读 · 0 评论 -
caffe各个层的类成员含义
caffe1blob2netlayerbaseconvulution 1blob protected: shared_ptr<SyncedMemory> data_; shared_ptr<SyncedMemory> diff_; shared_ptr<SyncedMemory> shape_data_; vector<int> shape_...原创 2020-05-20 13:47:02 · 90 阅读 · 0 评论 -
caffe-python测试代码块
#coding=utf-8 import cv2 import os caffe_root = '/disk3/python/caffe_s3fd-ssd' import sys os.chdir(caffe_root) sys.path.insert(0, 'python') import caffe import time caffe.set_device(0) caffe.set_mode_...原创 2019-12-23 19:27:13 · 351 阅读 · 0 评论