
research
武小胖儿
这个作者很懒,什么都没留下…
展开
-
paper---cls实现过程记录
一、把video切分为tile1. 把video切分成以秒为单位的segmenthttps://docs.opencv.org/3.0-beta/doc/py_tutorials/py_gui/py_video_display/py_video_display.html2.把segment切分成rows*colums个tiles二、 把user的fixaction进行聚类三、使...原创 2018-11-12 17:06:39 · 321 阅读 · 0 评论 -
demo搭建--环境配置01
1. 搭建环境1.1 安装virtualboxLinux下出现问题不可怕,认真读错误提示就可以了。1)can't create transaction lock on /var/lib/rpm/.rpm.lock (Permission denied) 答: yum install kernel-devel-3.10.0-957.el7.x86_64(The last comma...原创 2018-12-25 14:31:27 · 1165 阅读 · 0 评论 -
获取模型执行过程中的中间结果
def testImage(self,image_location,image_size): mean = self.readMeanFile() image = ImageProcess(image_location,image_size,mean).getImage() fileOp = FileOperation() #1.read t...原创 2019-05-03 13:46:49 · 101 阅读 · 0 评论 -
调用caffe2中pre-trained model(squeezenet)
原文链接:https://github.com/caffe2/tutorials/blob/master/Loading_Pretrained_Models.ipynbmodel源码:https://github.com/caffe2/models注释:本文会修改原文的部分内容。#!/usr/bin/env python2from caffe2.python import works...原创 2019-04-29 12:26:15 · 508 阅读 · 0 评论 -
切分init_net
备注:原始的init加密过,不能直接使用,因此只能从源头寻找weights。幸运的是所有init_net和predict_net都采用了一种名叫proto的组织方式,所有我们学习一下proto.'''procedure1. input the binary data and use the X_pd2.py to parse the binary data2. save the stru...原创 2019-04-30 16:40:31 · 173 阅读 · 0 评论