tf.contrib.seq2seq.LuongAttention init(num_units,memory,memory_sequence_length=None,sca...
tf.contrib.seq2seq.LuongAttention init(num_units,memory,memory_sequence_length=None,sca...
在以前的video captioning解决方法中,绝大部分都是生成短短的一句话,并不能很好的概括视频中的详细内容,论文中提出了采用分级RNN的方法,先利用sentence ...
作者提出了将3D卷+attention机制融入encoder-decoder结构中,同时考虑了局部时序信息和全局时序信息。 Encoder-Decoder框架 Encoder...
论文提出了将sequence to sequence 模型应用到video to text任务上,解决了video to text的变长问题。之前解决变长问题的方法有1.将视...
模型中分为两部分:1.proposal模块:检测视频中的proposal区域2.captioning模块:将proposal模块的结果作为输入,输出整个视频的captioni...
121.Best Time to Buy and Sell Stock 给定价格曲线,进行单次买进卖出,获取最大利润。 思路一: 不断更新买入点(局部最小值),不断更新最大利...
Given an array of n integers where n > 1, nums, return an array output such that output...
Given an array nums containing n + 1 integers where each integer is between 1 and n (in...
字典序全排列:从n个不同元素中任取m(m≤n)个元素,按照一定的顺序排列起来,叫做从n个不同元素中取出m个元素的一个排列。当m=n时所有的排列情况叫全排列。例如: 1 、2 ...
Jump Game 题目分析:找出能够到达的最远距离是否能到最后一个索引。我的想法是从第一个开始,不断更新最长到达位置,直到最长位置超过最后一个索引。 代码 时间O(n),空...
Minimum Size Subarray Sum 问题分析 找出总和大于目标值的最短子串,想到的方法是用双指针遍历,前面的指针先前走直到大于目标,此时后面的指针再向前走,直...
Given an array with n objects colored red, white or blue, sort them so that objects of ...
Search Insert Position Given a sorted array and a target value, return the index if the...
Suppose an array sorted in ascending order is rotated at some pivot unknown to you befo...
解决的问题 一般来说,提升网络性能最直接的办法就是增加网络深度和宽度,这也就意味着巨量的参数。但是,巨量参数容易产生过拟合也会大大增加计算量。所以,现在的问题是有没有一种方法...
Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear...
RCNN 过程 1.利用sleactive search提取出图片中大约2000个候选区域2.将候选区域的的大小利用伸缩变化调整为227*2273.利用CNN提取出每一个候选...
Rotate an array of n elements to the right by k steps. For example, with n = 7 and k = ...
背景 2012年,Imagenet比赛冠军。 技术点 一、使用ReLU作为CNN激活函数,成功解决了Sigmoid在网络较深时的梯度弥撒问题。二、训练时使用Dropout随机...
背景 LeNet神经网络由深度学习三巨头之一的Yan LeCun提出,他同时也是卷积神经网络 (CNN,Convolutional Neural Networks)之父。Le...