博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LookingFastandSlow: Memory-GuidedMobileVideoObjectDetection
阅读量:4656 次
发布时间:2019-06-09

本文共 1082 字,大约阅读时间需要 3 分钟。

Google put the method to extract different feature
based on Slow Network and Fast Network

The First Colum The Second Column
innovation point1 基于存储引导的交替模型1433065-20190706141348831-496565451.png
InterIeaved Models slow network and fastnetwork
is made up by two MobilNetV2
the depth multiplier of the two models are different,
before is 1.4,and the after is 0.351433065-20190706142338017-45623402.png
innovation point2 记忆单元, Memory module
存储模型,
LSTM可以高效处理时序信息
但是卷积运算量大
ConvLSTM将CNN与LSTM结合
ConLSTM is designed by the
时序时间信息的图像
1 innovation of the ConvLSTM 增加了bottleneck Gate 和output 的跳跃连接
2 innovation of the ConvLSTM 将LSTM单元进行分组卷积
feature maps 原本是H * W * N
将其分为G group
每个LSTM处理的HWN/G 的feature maps
the step of LSTM the first step :
f(t) = sigmoid(W(f) * [h(t-1), x(t)] + b(f) )
LSTM include the activate function (sigmoid)
and the action (pointwise)
the first of the LSTM is sigmoid
The step of LSTM The second step : i(t) = sigmoid( W(i) * [ h(t-1), x(t)] + b(i) );
C~(t) = tanh( W(C)* [h(t-1), x(t)] + b(c) )
Tanh create a new 候选值vector
The step of LSTM The third step :
C(t) = f(t) * C(t-1) + i(t) * C~(t)

转载于:https://www.cnblogs.com/hugeng007/p/11145903.html

你可能感兴趣的文章
sqlite 批量插入, 重复插入(更新)
查看>>
Array对象的判定
查看>>
面试题
查看>>
链表中LinkList L与LinkList *L 借鉴
查看>>
DotNetBar教程
查看>>
IOS存储安全 MD5 (重要)
查看>>
flex布局
查看>>
十一、mysql输入安全
查看>>
Java中的异常处理(二)
查看>>
汇编语言
查看>>
1000. Letters and Words homework 12
查看>>
结对编程的利与弊
查看>>
利用mysql的dual表达到不插入重复记录
查看>>
session内置对象
查看>>
MyEclipse设置默认的目光格式
查看>>
4.2、Libgdx每个模块概述
查看>>
wpf集成unity
查看>>
shu_1548 悟空问题(大哥,主妖怪抓走的朋友!)
查看>>
工作日志2014-08-19
查看>>
配置Log4j(非常具体)
查看>>