自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(16)
  • 资源 (5)
  • 收藏
  • 关注

原创 细粒度分类,比赛,和相关模型介绍持续更新

FGVC6 Workshop 共有十个挑战赛,每个都代表了细粒度视觉分类在某个细分领域的挑战CVPR 2019 Cassava Disease Classification 比赛2019 国内发表的一些好的领域的算法介绍https://rrl360.com/boke/351141、2017鸟类的细粒度分类,粗到细的一个过程,加入了不同的损失http://openaccess.thec...

2019-12-30 09:43:52 2091

转载 cv2直方图均衡,灰度输入,转换的效果的多种方法

https://blog.csdn.net/jingbo18/article/details/81707181input grayimport cv2import numpy as npfrom matplotlib import pyplot as pltimg = cv2.imread('13.jpg',0)equ = cv2.equalizeHist(img)res = np...

2019-12-27 10:14:48 139

原创 caffe 生成lmdb代码

1、得到 ,训练测试的txt文件,格式如下图片格式home/data_root2. aa3. bb4. cctxt格式,相对路径aa/img.jpg 0bb/3.jpg 1cc/1.jpg 22、txt,文件和图片根目录得到lmdb,显示如下sh create_imagenet.sh#!/usr/bin/env sh# Create the imagenet lmd...

2019-12-25 10:36:56 174

原创 caffe不同lr_policy参数设置方法,计算公式,超参数设置

# the definition of neural network modelnet: "t_v.prototxt"#test_initialization: false # test_iter* batchsize=testtest_iter: 355 # train batch*test_interval to test ...

2019-12-25 09:59:10 189

原创 resnet系列,caffe 1080上GPU时间

resnet18 nvcaffe 3ms ,caffe 5ms

2019-12-24 14:40:12 384

原创 拍摄技巧总结

《定格美味时光》1、逆光的拍摄,很适合拍摄液体类的物品,需要光泽类的物品,透明的容器,切开的水灵灵水果,会有光晕,对比色差,结构阴影,例如饮料,布丁,切开的西红柿...

2019-12-24 10:58:01 229

原创 Reshape and ssd Permute onnx转换caffe代码

caffe 中两个层的参数如下 layer { name: "reshape" type: "Reshape" bottom: "input" top: "output" reshape_param { ##字典里面一个字典 shape { dim: 0 # copy the dimension from below ...

2019-12-20 10:29:30 1117

原创 mxnet 常见测层以及打印,输出参数

MXNet 核心接口https://blog.csdn.net/weixin_33910385/article/details/89541763Mxnet Module APIhttps://blog.csdn.net/qfpkzheng/article/details/80401201

2019-12-16 13:15:03 515

原创 caffe常见结构的,prototxt 文件,参数,解析

1、CaffeConv - 卷积层 参数以及详细解析,实现https://www.aiuai.cn/aifarm88.html2、Eltwise层的操作有三个:product(点乘), sum(相加减) 和 max(取大值),其中sum是默认操作。https://www.cnblogs.com/kunyuanjushi/p/5937177.html...

2019-12-13 10:20:07 453

原创 axis 0 1 2和 dim 0 1 2计算过程

三维度,dim=0 相加,元素如上图,【3,2,3】 变成【2,3】三个两行三列,变成 两行三列的数据【3,2,3】维度dim =0,1,2在哪一个维度操作,维度消失【3,2,3】三维有点绕,...

2019-12-12 18:48:07 366

原创 onnx model laye correspond caffe out

onnx modelfor example conv##merge bninput: "data"input: "247"input: "249"output: "165"op_type: "Conv"attribute { name: "dilations" ints: 1 ints: 1 type: INTS}attribute { name: "gr...

2019-12-12 15:13:37 162

原创 pytorch caffe卷积反卷积计算

区别在于output_padding,pytorch反卷积详细介绍https://blog.csdn.net/qq_41368247/article/details/86626446

2019-12-10 17:20:15 361

原创 mxnet to onnx to caffe,步骤以及问题解决

三个步骤1、mxnet to onnxhttps://blog.csdn.net/lhl_blog/article/details/906726952、onnx 经过简化操作去除onnx 自己加的层https://github.com/daquexian/onnx-simplifier3、onnx to caffe,https://github.com/MTlab/onnx2caffe...

2019-12-09 17:05:46 3086 1

原创 pytorch to onnx to caffe,转两种方法,以及部分转换问题记录

1、pytorch 直接转caffe,自己还没有尝试,步骤保存pytorch参数名和权重。先把pytorch的参数名和权重存成词典,例如存到npy文件里–>.得到npy文件;合并卷积层和bn层的参数(非必须)。将卷积层和batch normalization层的权重进行融合,更新npy文件里卷积层的权重–>.得到npy文件;建立caffe的.prototxt文件。即按照pyt...

2019-12-04 16:37:53 10129 4

转载 Caffe添加自定义的层 详细过程

https://blog.csdn.net/wanggao_1990/article/details/78863669Caffe添加自定义的层

2019-12-04 12:58:39 386

转载 pytroch随机输入一个值网络得到结果shape,打印model每个层的类型,module

######### 模型定义 #########class MyModel(nn.Module): def __init__(self): # input the dim of output fea-map of Resnet: super(MyModel, self).__init__() BackBone = models.res...

2019-12-02 15:44:27 170

GAT1400全四个文档.rar

第四部分是属性接口协议

2021-12-01

FDDB,测试自己训练的模型,如何生成FDDB 文件,详细细节

针对mobinetssd,的训练模型,进行FDDB,的测试,实现细节以及,补充的不足,训练的模型,如何生成FDDB 文件,详细细节

2018-09-18

cuda8.0,下载包

cuda8.0的下载包,64位,用于ubuntu16.或者14.。。。。。。

2018-07-09

opencv3.1,cmake,ippicv包下载

opencv3.1,cmake,编译错误,由于该软件包不好下载。 下载完后替换opencv-3.1.0/3rdparty/ippicv/downloads/linux-*目录下的同名文件,重新cmake。 网上也有其他免费资源可供下载,

2018-07-09

Ubuntu16.04+显卡GTX1060+cudn8.0+opencv3.1+caffe,

花时间整理的资料,安装成功。注意,当中出现安装cudn下载版本不是,资料中提供的8,下载最新的cudn9时候,发生错误。请按照资料中提供的版本。

2018-07-09

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除